Update README.md
[rainbowstream.git] / rainbowstream / config.py
CommitLineData
c0440e50 1# Max Search record
f405a7d0 2SEARCH_MAX_RECORD = 5
c0440e50 3# Default home tweet
829cc2d8 4HOME_TWEET_NUM = 5
1f24a05a 5# Default retweets show
6RETWEETS_SHOW_NUM = 5
305ce127 7# Default direct message's number
8MESSAGES_DISPLAY = 5
4592d231 9# Max trending topics display
5b2c4faf 10TREND_MAX = 10
f5677fb1
O
11# Autocomplete history
12HISTORY_FILENAME = 'completer.hist'
c0440e50 13
c0440e50 14# Stream Domain
eb9781ed
O
15USER_DOMAIN = 'userstream.twitter.com'
16PUBLIC_DOMAIN = 'stream.twitter.com'
17SITE_DOMAIN = 'sitestream.twitter.com'
c0440e50
O
18# Actually called
19DOMAIN = USER_DOMAIN
d51b4107
O
20
21# Filter and Ignore list ex: ['@fat','@mdo']
22ONLY_LIST = []
23IGNORE_LIST = []
816e305f 24
f5677fb1 25# Image shift and size
816e305f 26IMAGE_SHIFT = 10
305ce127 27IMAGE_MAX_HEIGHT = 40