secrets.py
 1  # SPDX-FileCopyrightText: 2020 Adafruit Industries
 2  #
 3  # SPDX-License-Identifier: Unlicense
 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' : 'home_wifi_network',
10      'password' : 'wifi_password',
11      'aio_username' : 'my_adafruit_io_username',
12      'aio_key' : 'my_adafruit_io_key',
13      'timezone' : "America/New_York", # http://worldtimeapi.org/timezones
14      }