9 lines
345 B
Python
9 lines
345 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' : 'my_ssid',
|
|
'password' : 'my_pass',
|
|
'timezone' : "America/New_York", # http://worldtimeapi.org/timezones
|
|
'openweather_token' : 'putYourOpenWeatherTokenHere',
|
|
}
|