/ IoT_Party_Parrot / secrets.py
secrets.py
1 # SPDX-FileCopyrightText: 2020 Liz Clark for Adafruit Industries 2 # 3 # SPDX-License-Identifier: MIT 4 5 # This file is where you keep secret settings, passwords, and tokens! 6 # If you put them in the code you risk committing that info or sharing it 7 8 secrets = { 9 'ssid' : 'insert your network name here', 10 'password' : 'insert your network password here', 11 'timezone' : "America/New_York", # http://worldtimeapi.org/timezones 12 'twitter_api_key' : 'insert your twitter api key here', 13 'twitter_secret_key' : 'insert your twitter secret key here', 14 'bearer_token' : 'insert your bearer token here' 15 }