/ PyPortal_Smart_Switch / secrets.py
secrets.py
1 # SPDX-FileCopyrightText: 2019 Kattni Rembor 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' : 'CHANGE ME', 10 'password' : 'CHANGE ME', 11 # leave blank or use timezone from # http://worldtimeapi.org/timezones 12 'timezone' : '', 13 'aio_username' : 'CHANGE ME', 14 'aio_key' : 'CHANGE ME', 15 }