13 lines
446 B
Python
13 lines
446 B
Python
# SPDX-FileCopyrightText: 2020 Limor Fried for Adafruit Industries
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
# 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',
|
|
}
|