10 lines
350 B
Python
10 lines
350 B
Python
# 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' : b'Shibari',
|
|
'password' : b'$k7cGE$7=jY67kg#',
|
|
'timezone' : 'America/Toronto',
|
|
'aio_username' : 'dastels',
|
|
'aio_key' : '796252b4b3484ed3b00665fab73de47c7fb8ea9e',
|
|
}
|