Update README.rst
[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
305ce127 5# Default direct message's number
6MESSAGES_DISPLAY = 5
f5677fb1
O
7# Autocomplete history
8HISTORY_FILENAME = 'completer.hist'
c0440e50 9
c0440e50 10# Stream Domain
eb9781ed
O
11USER_DOMAIN = 'userstream.twitter.com'
12PUBLIC_DOMAIN = 'stream.twitter.com'
13SITE_DOMAIN = 'sitestream.twitter.com'
c0440e50
O
14# Actually called
15DOMAIN = USER_DOMAIN
d51b4107
O
16
17# Filter and Ignore list ex: ['@fat','@mdo']
18ONLY_LIST = []
19IGNORE_LIST = []
816e305f 20
f5677fb1 21# Image shift and size
816e305f 22IMAGE_SHIFT = 10
305ce127 23IMAGE_MAX_HEIGHT = 40