-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsecrets.py
14 lines (13 loc) · 831 Bytes
/
secrets.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 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
# which would be not great. So, instead, keep it all in this one file and
# keep it a secret.
secrets = {
'ssid' : 'WIFI SSID NAME HERE', # Keep the two '' quotes around the name
'password' : 'WIFI PASSWORD HERE', # Keep the two '' quotes around password
'timezone' : "YOUR TIMEZONE HERE", # http://worldtimeapi.org/timezones
'aio_username' : 'YOUR USERNAME FOR ADAFRUIT AIO', #See learning guide at https://learn.adafruit.com/welcome-to-adafruit-io
'aio_key' : 'YOUR KEY FOR AIO',
'openweather_token' : 'YOUR OPENWEATHER TOKEN', # see https://openweathermap.org/api
'finnhub_token' : 'YOUR FinnHub token' #https://finnhub.io/
}