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