Adafruit_Learning_System_Gu.../CircuitPython_WeatherCloud/secrets.py
2020-02-27 13:23:49 -05:00

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',
}