X-Git-Url: https://vcs.fsf.org/?p=rainbowstream.git;a=blobdiff_plain;f=rainbowstream%2Fconfig.py;h=12dffb29e7ea81d756fcba1fee2257e909c7a0de;hp=90e6aa10b8f7df1502211d8df7eb96f1ded5569b;hb=affcb1491f9191ff116c20348e06e3f22e9f22a8;hpb=f405a7d0c54ab0657af3bab77f6eb28a98f8921e;ds=sidebyside diff --git a/rainbowstream/config.py b/rainbowstream/config.py index 90e6aa1..12dffb2 100644 --- a/rainbowstream/config.py +++ b/rainbowstream/config.py @@ -1,4 +1,21 @@ -# This is RainbowStream App info -CONSUMER_KEY = 'Xk1DGhR1FJa4xjg7GbdogzLJw' -CONSUMER_SECRET = 'SpHtDmbSGCSm55AAlIeb2PsD3kGEzxyo1325rJgrND5abeOh2T' +# Max Search record SEARCH_MAX_RECORD = 5 +# Default home tweet +HOME_TWEET_NUM = 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 \ No newline at end of file