From 7f6e861691f6fbc4989f407eaf17f2c684132d6b Mon Sep 17 00:00:00 2001 From: Allan Farinas Date: Thu, 14 Aug 2014 00:33:06 -0700 Subject: [PATCH] First commit --- local_settings.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 local_settings.py diff --git a/local_settings.py b/local_settings.py new file mode 100644 index 0000000..318503d --- /dev/null +++ b/local_settings.py @@ -0,0 +1,17 @@ +''' +Local Settings for a heroku_ebooks account. #fill in the name of the account you're tweeting from here. +''' + +#configuration +MY_CONSUMER_KEY = 'Your Twitter API Consumer Key' +MY_CONSUMER_SECRET = 'Your Consumer Secret Key' +MY_ACCESS_TOKEN_KEY = 'Your Twitter API Access Token Key' +MY_ACCESS_TOKEN_SECRET = 'Your Access Token Secret' + +SOURCE_ACCOUNTS = [""] #A list of comma-separated, quote-enclosed Twitter handles of account that you'll generate tweets based on. It should look like ["account1", "account2"]. If you want just one account, no comma needed. +ODDS = 8 #How often do you want this to run? 1/8 times? +ORDER = 2 #how closely do you want this to hew to sensical? 1 is low and 3 is high. +DEBUG = True #Set this to False to start Tweeting live +STATIC_TEST = False #Set this to True if you want to test Markov generation from a static file instead of the API. +TEST_SOURCE = ".txt" #The name of a text file of a string-ified list for testing. To avoid unnecessarily hitting Twitter API. +TWEET_ACCOUNT = "" #The name of the account you're tweeting to.