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" }