4 .. image:: http://img.shields.io/pypi/dm/rainbowstream.svg?style=flat
\r
5 :target: https://pypi.python.org/pypi/rainbowstream
\r
7 .. image:: http://img.shields.io/pypi/v/rainbowstream.svg?style=flat
\r
8 :target: https://pypi.python.org/pypi/rainbowstream
\r
10 Terminal-based Twitter Client. Realtime tweetstream, compose, search ,
\r
11 favorite … and much more fun directly from terminal.
\r
13 This package is built on the top of `Python Twitter Tool`_ and `Twitter API`_,
\r
14 can run on Python 2.7.x and 3.4.x .
\r
19 Screencast: https://www.youtube.com/watch?v=tykCvPMJq8s
\r
21 Screenshot: (click to see)
\r
23 .. figure:: https://raw.githubusercontent.com/DTVD/rainbowstream/master/screenshot/RainbowStreamAll.png
\r
32 You will need Python and pip (2.7.x or 3.x).
\r
36 sudo pip install rainbowstream
\r
37 # Python 3 users: sudo pip3 install rainbowstream
\r
48 # Python 3 users : use -p to specify your Python 3 localtion as below
\r
49 # virtualenv -p /usr/bin/python3 venv
\r
50 source venv/bin/activate
\r
51 pip install rainbowstream
\r
66 and see your stream.
\r
68 I shipped a feature which can display **tweet's images directly on terminal**.
\r
69 You can try it with:
\r
73 rainbowstream -iot # Or rainbowstream --image-on-term
\r
75 In the first time you will be asked for authorization of Rainbow Stream
\r
76 app at Twitter. Just click the “Authorize access” button and paste PIN
\r
77 number to the terminal, the rainbow will start.
\r
79 The interactive mode
\r
80 --------------------
\r
82 While your personal stream is continued, you are also ready to tweet,
\r
83 search, reply, retweet… directly from console. Simply type “h” and hit
\r
84 the Enter key to see the help.
\r
86 Input is in interactive mode. It means that you can use arrow key to
\r
87 move up and down history, tab-autocomplete or 2 tab to view available
\r
88 suggestion. Input history from previous run is available as well.
\r
90 Available commands are listed in `Read The Docs`_.
\r
93 ------------------------
\r
95 Rainbow Stream is shipped with some default themes.
\r
96 You can either change theme by ``theme`` command or create your favorite one.
\r
102 .. figure:: https://raw.githubusercontent.com/DTVD/rainbowstream/master/screenshot/themes/Monokai.png
\r
107 .. figure:: https://raw.githubusercontent.com/DTVD/rainbowstream/master/screenshot/themes/Solarized.png
\r
112 .. figure:: https://raw.githubusercontent.com/DTVD/rainbowstream/master/screenshot/themes/TomorrowNight.png
\r
113 :alt: tomorrownight
\r
117 .. figure:: https://raw.githubusercontent.com/DTVD/rainbowstream/master/screenshot/themes/larapaste.png
\r
121 For detaile information, see `theme usage and customization`_.
\r
123 Bug and feature requests
\r
124 ------------------------
\r
126 Found a bug or a feature request ?
\r
127 Please `create an issue`_ or contact me at `@dtvd88`_
\r
132 If you want to build a runnable version yourself, follow these simple
\r
135 - `Create your own Twitter Application`_
\r
136 - Get your Twitter application’s API key and secret
\r
137 - Fork github's repo
\r
138 - Create a file ``consumer.py`` in `rainbowstream`_ folder with
\r
143 # Consumer information
\r
144 CONSUMER_KEY = 'APIKey' # Your Twitter application's API key
\r
145 CONSUMER_SECRET = 'APISecret' # Your Twitter application's API secret
\r
147 - Use pip to install in local
\r
151 # cd to directory which contains setup.py
\r
152 virtualenv venv # Python3 users: use -p to specify python3
\r
153 source venv/bin/activate
\r
155 pip list | grep rainbowstream # confirm installed version
\r
156 rainbowstream # local version of rainbowstream
\r
161 I appreciate any help and support. Feel free to `fork`_ and `create a pull request`_.
\r
162 You will be listed as contributor.
\r
167 Rainbow Stream are released under an MIT License. See LICENSE.txt for
\r
171 .. _Python Twitter Tool: http://mike.verdone.ca/twitter/
\r
172 .. _Twitter API: https://dev.twitter.com/docs/api/1.1
\r
173 .. _create an issue: https://github.com/DTVD/rainbowstream/issues/new
\r
174 .. _@dtvd88: https://twitter.com/dtvd88
\r
175 .. _fork: https://github.com/DTVD/rainbowstream/fork
\r
176 .. _create a pull request: https://github.com/DTVD/rainbowstream/compare/
\r
177 .. _Read The Docs: http://rainbowstream.readthedocs.org/en/latest/
\r
178 .. _config guide: https://github.com/DTVD/rainbowstream/blob/master/theme.md
\r
179 .. _theme usage and customization: https://github.com/DTVD/rainbowstream/blob/master/theme.md
\r
180 .. _Create your own Twitter Application: https://apps.twitter.com/app/new
\r
181 .. _rainbowstream: https://github.com/DTVD/rainbowstream/tree/master/rainbowstream
\r
182 .. _virtualenv: http://docs.python-guide.org/en/latest/dev/virtualenvs/
\r