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