daf1cfd7f654d095d6a954975230c6d21d4375da
[rainbowstream.git] / rainbowstream / config.py
1 # 'search': max search record
2 SEARCH_MAX_RECORD = 5
3 # 'home': default number of home's tweets
4 HOME_TWEET_NUM = 5
5 # 'allrt': default number of retweets
6 RETWEETS_SHOW_NUM = 5
7 # 'inbox','sent': default number of direct message
8 MESSAGES_DISPLAY = 5
9 # 'trend': max trending topics
10 TREND_MAX = 10
11 # 'switch': Filter and Ignore list ex: ['@fat','@mdo']
12 ONLY_LIST = []
13 IGNORE_LIST = []
14
15 # Autocomplete history file name
16 HISTORY_FILENAME = 'completer.hist'
17
18 USER_DOMAIN = 'userstream.twitter.com'
19 PUBLIC_DOMAIN = 'stream.twitter.com'
20 SITE_DOMAIN = 'sitestream.twitter.com'
21 DOMAIN = USER_DOMAIN
22
23 IMAGE_SHIFT = 10
24 IMAGE_MAX_HEIGHT = 40
25
26 # Color name can be 'grey', 'red', 'green', 'yellow', 'blue', 'magenta', 'cyan', or 'white'
27 SCREEN_NAME_COLOR = 'grey'