10 lines
366 B
Python
10 lines
366 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' : 'yourssid',
|
|
'password' : 'yourpassword',
|
|
'timezone' : "America/New_York", # Check http://worldtimeapi.org/timezones
|
|
'aio_username' : 'youraiousername',
|
|
'aio_key' : 'youraiokey',
|
|
}
|