Update README.md
[rainbowstream.git] / rainbowstream / config.py
1 # Max Search record
2 SEARCH_MAX_RECORD = 5
3 # Default home tweet
4 HOME_TWEET_NUM = 5
5 # Autocomplete history
6 HISTORY_FILENAME = 'completer.hist'
7
8 # Stream Domain
9 USER_DOMAIN = 'userstream.twitter.com'
10 PUBLIC_DOMAIN = 'stream.twitter.com'
11 SITE_DOMAIN = 'sitestream.twitter.com'
12 # Actually called
13 DOMAIN = USER_DOMAIN
14
15 # Filter and Ignore list ex: ['@fat','@mdo']
16 ONLY_LIST = []
17 IGNORE_LIST = []
18
19 # Image shift and size
20 IMAGE_SHIFT = 10
21 IMAGE_MAX_HEIGHT = 40