-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsecrets.py
19 lines (15 loc) · 1.16 KB
/
secrets.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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' : 'YOUR_SSID',
'password' : 'YOUR_SSID_PASS',
'aio_username': 'YOUR_AIO_USERNAME', # your adafruit IO account username
'aio_key': 'YOUR_AIO_KEY', # from your adafruit IO account
'timezone': "Etc/UTC", # http://worldtimeapi.org/timezones
'timezone_offset' : "-08:00", # Hour offset from UTC. I could calculate it, but it's much easier to just specify it here.
'google_client_id' : 'YOUR_GOOGLE_CLIENT_ID', # From Google cloud app dashbaord
'google_client_secret' : 'YOUR_GOOGLE_CLIENT_SECRET', # From Google cloud app dashbaord
'google_email' : "YOUR_GOOGLE_EMAIL", # your email used to log into your calendar/gmail
'google_access_token' : 'insert_here', # you'll get this after you use the authenticator
'google_refresh_token' : 'insert_here', # you'll get this after you use the authenticator
}