Add twitter_auth_keys

This commit is contained in:
robin 2022-05-22 14:08:54 +02:00
parent 5b96955884
commit f76114cc94
1 changed files with 14 additions and 0 deletions

14
settings.py.sample Normal file
View File

@ -0,0 +1,14 @@
log_path = "./store/" # Stores toot data
data_path = "./data/" # Make sure this directory is not accessible for other users or per web
app_path = f"{data_path}.htapp.data" # Store app secret
user_path = f"{data_path}.htuser.data" # Store user secret
api_url = 'https://mastodon.grml.de' # Mastodon Server URL
bot_name = 'grmlmatobi' # Botname
account_name = 'matobi' # Mastodon-Account name
account_password = 'supersecret' # Mastodon-Account password
twitter_auth_keys = { # Twitter API
"consumer_key" : "REPLACE_THIS_WITH_YOUR_CONSUMER_KEY",
"consumer_secret" : "REPLACE_THIS_WITH_YOUR_CONSUMER_SECRET",
"access_token" : "REPLACE_THIS_WITH_YOUR_ACCESS_TOKEN",
"access_token_secret" : "REPLACE_THIS_WITH_YOUR_ACCESS_TOKEN_SECRET"
}