/ PyPortal_TOTP_Friend / secrets.py
secrets.py
 1  # SPDX-FileCopyrightText: 2019 Brent Rubell 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' : 'yourwifissid',
10      'password' : 'yourwifipassword',
11      'timezone' : "America/New_York", # http://worldtimeapi.org/timezones
12      # https://github.com/pyotp/pyotp example
13      'totp_keys' : [("Discord ", "JBSWY3DPEHPK3PXP"),
14                     ("Gmail", "JBSWY3DPEHPK3PZP"),
15                     ("GitHub", "JBSWY5DZEHPK3PXP"),
16                     ("Adafruit", "JBSWY6DZEHPK3PXP"),
17                     ("Outlook", "JBSWY7DZEHPK3PXP")]
18      }