X-Git-Url: https://vcs.fsf.org/?p=rainbowstream.git;a=blobdiff_plain;f=rainbowstream%2Fconfig.py;h=ed9b348f7187764ef38ce4c8b8b9aaa2bac3307a;hp=cc655e9af40ba0c7ccc756bd2af54462897ce6d4;hb=d286f104862476fd637ee14314beb44784537805;hpb=91476ec37e468301d39182aff48936749158e976 diff --git a/rainbowstream/config.py b/rainbowstream/config.py index cc655e9..ed9b348 100644 --- a/rainbowstream/config.py +++ b/rainbowstream/config.py @@ -1,2 +1,23 @@ -CONSUMER_KEY = 'uS6hO2sV6tDKIOeVjhnFnQ' -CONSUMER_SECRET = 'MEYTOS97VvlHX7K1rwHPEqVpTSqZ71HtvoK4sVuYk' +# Max Search record +SEARCH_MAX_RECORD = 5 +# Default home tweet +HOME_TWEET_NUM = 5 +# Default direct message's number +MESSAGES_DISPLAY = 5 +# Autocomplete history +HISTORY_FILENAME = 'completer.hist' + +# Stream Domain +USER_DOMAIN = 'userstream.twitter.com' +PUBLIC_DOMAIN = 'stream.twitter.com' +SITE_DOMAIN = 'sitestream.twitter.com' +# Actually called +DOMAIN = USER_DOMAIN + +# Filter and Ignore list ex: ['@fat','@mdo'] +ONLY_LIST = [] +IGNORE_LIST = [] + +# Image shift and size +IMAGE_SHIFT = 10 +IMAGE_MAX_HEIGHT = 40