10 lines
309 B
Python
10 lines
309 B
Python
# This file is where you keep secret settings, passwords, and tokens!
|
|
# If you put them in the code you risk committing that info or sharing it
|
|
|
|
secrets = {
|
|
"ssid": b"My_SSID",
|
|
"password": b"My_WIFI_Password",
|
|
"timezone": "Area/City",
|
|
"aio_username": "my_username",
|
|
"aio_key": "my_key",
|
|
}
|