9 lines
289 B
Python
9 lines
289 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' : 'CHANGE ME',
|
|
'password' : 'CHANGE ME',
|
|
'twitter_api_key': 'CHANGE ME',
|
|
'twitter_secret_key': 'CHANGE ME'
|
|
}
|