Update README.md
[rainbowstream.git] / README.rst
CommitLineData
3108149e 1Rainbow Stream\r
2--------------\r
3\r
c96321cc 4.. image:: http://img.shields.io/pypi/dm/rainbowstream.svg?style=flat\r
861a4681 5 :target: https://pypi.python.org/pypi/rainbowstream\r
b5f92888 6\r
c96321cc 7.. image:: http://img.shields.io/pypi/v/rainbowstream.svg?style=flat\r
861a4681 8 :target: https://pypi.python.org/pypi/rainbowstream\r
c96321cc 9\r
3108149e 10Terminal-based Twitter Client. Realtime tweetstream, compose, search ,\r
11favorite … and much more fun directly from terminal.\r
12\r
13This package build on the top of `Python Twitter Tool`_ and `Twitter\r
14Streaming API`_ and inspired by `EarthQuake`_\r
15\r
16Screenshot\r
17----------\r
18\r
e7e289b4 19.. figure:: https://raw.githubusercontent.com/DTVD/rainbowstream/master/screenshot/RainbowStream.png\r
3108149e 20 :alt: v0.0.1\r
21\r
e7e289b4
O
22.. figure:: https://raw.githubusercontent.com/DTVD/rainbowstream/master/screenshot/RainbowStreamIOT.png\r
23 :alt: v0.0.3\r
3108149e 24\r
25Install\r
26-------\r
27\r
28You will need Python 2.7+ and pip.\r
29\r
30.. code:: bash\r
31\r
32 pip install rainbowstream\r
33\r
34Usage\r
35-----\r
36\r
37The stream\r
38^^^^^^^^^^\r
39\r
40Just type\r
41\r
42.. code:: bash\r
43\r
44 rainbow\r
45\r
46and see your stream.\r
47\r
c1fa7c94
O
48I shipped a feature which can display **tweet's images directly on terminal**.\r
49You can try it with:\r
4373c17c
O
50\r
51.. code:: bash\r
52\r
c1fa7c94 53 rainbow -iot # Or rainbow --image-on-term\r
4373c17c 54\r
3108149e 55In the first time you will be asked for authorization of Rainbow Stream\r
56app at Twitter. Just click the “Authorize access” button and paste PIN\r
57number to the terminal, the rainbow will start.\r
58\r
59The interactive mode\r
60^^^^^^^^^^^^^^^^^^^^\r
61\r
62While your personal stream is continued, you are also ready to tweet,\r
63search, reply, retweet… directly from console. Simply type “h” and hit\r
f5677fb1 64the Enter key to see the help.\r
3108149e 65\r
66Input is in interactive mode. It means that you can use arrow key to\r
67move up and down history, tab-autocomplete or 2 tab to view available\r
f5677fb1 68suggestion. Input history from previous run is available as well.\r
3108149e 69\r
70Here is full list of supported command\r
71\r
eccdc3c0 72**Stream Command**\r
3108149e 73\r
74- ``switch public #AKB48`` will switch current stream to public stream and track keyword ``AKB48``\r
75\r
76- ``switch public #AKB48 -f`` will do exactly as above but will ask you\r
77 to provide 2 list:\r
78\r
79 ``Only nicks`` decide what nicks will be include only.\r
80\r
81 ``Ignore nicks`` decide what nicks will be exclude.\r
82\r
83- ``switch public #AKB48 -d`` will apply filter to *ONLY\_LIST* and\r
84 *IGNORE\_LIST*. You can setup 2 list above at ``config.py``\r
85\r
86- ``switch mine`` will switch current stream to personal stream. ``-f``\r
87 and ``-d`` will work as well.\r
88\r
89**Action Command**\r
90\r
91- ``home`` will show your timeline. ``home 10`` will print exactly 10\r
e2b81717 92 tweets.\r
3108149e 93\r
94- ``view @mdo`` will show @mdo ’s timeline. ``view @dmo 9`` will print\r
e2b81717
O
95 exactly 9 tweets.\r
96\r
97- ``mentions`` will show mentions timeline. ``mentions 7`` will show\r
98 7 mention tweets.\r
3108149e 99\r
100- ``t the rainbow is god's promise to noah`` will tweet exactly *‘the\r
101 rainbow is god’s promise to noah’*\r
102\r
103- ``rt 12`` will retweet the tweet with *[id=12]*. You can see id of\r
104 each tweet beside the time.\r
105\r
106- ``fav 12`` will favorite the tweet with *[id=12]*.\r
107\r
108- ``rep 12 Really`` will reply *‘Really’* to the tweet with *[id=12]*.\r
109\r
110- ``del 12`` will delete tweet with *[id=12]*.\r
111\r
112- ``ufav 12`` will unfavorite tweet with *[id=12]*.\r
113\r
114- ``s #noah`` will search the word *‘noah’*. Result will come back\r
115 with highlight.\r
116\r
f5677fb1 117- ``show image 12`` will show the image in tweet with *[id=12]* in your OS's image viewer.\r
3108149e 118\r
b5f92888 119- ``ls fl`` will list all your followers (people who are following you).\r
b8cc314c 120\r
121- ``ls fr`` will list all your friends (people who you are following).\r
122\r
e2b81717
O
123- ``inbox`` will show inbox messages. ``inbox 7`` will show newest\r
124 7 message.\r
125\r
126- ``sent`` will show sent messages. ``sent 7`` will show newest\r
127 7 message.\r
128\r
129- ``trash 5`` will remove message with *[message_id=5]*.\r
130\r
131- ``whois @dtvd88`` will show profile of @dtvd88.\r
132\r
f5677fb1
O
133- ``fl @dtvd88`` will follow @dtvd88.\r
134\r
135- ``ufl @dtvd88`` will unfollow @dtvd88.\r
3108149e 136\r
137- ``h`` will show the help.\r
138\r
139- ``c`` will clear the screen.\r
140\r
141- ``q`` will quit.\r
142\r
143For example see the screenshot above.\r
144\r
145Bug Report\r
146----------\r
147\r
1db6c021 148Please `create an issue`_ or contact me at `@dtvd88`_\r
3108149e 149\r
150License\r
151-------\r
152\r
153Rainbow Stream are released under an MIT License. See LICENSE.txt for\r
154details\r
155\r
156\r
157.. _Python Twitter Tool: http://mike.verdone.ca/twitter/\r
158.. _Twitter Streaming API: https://dev.twitter.com/docs/api/streaming\r
159.. _EarthQuake: https://github.com/jugyo/earthquake\r
160.. _create an issue: https://github.com/DTVD/rainbowstream/issues/new\r
1db6c021 161.. _@dtvd88: https://twitter.com/dtvd88\r