fix bug of show image
[rainbowstream.git] / README.md
... / ...
CommitLineData
1## Rainbow Stream
2
3[![Download](http://img.shields.io/pypi/dm/rainbowstream.svg?style=flat)](https://pypi.python.org/pypi/rainbowstream)
4[![Version](http://img.shields.io/pypi/v/rainbowstream.svg?style=flat)](https://pypi.python.org/pypi/rainbowstream)
5
6Terminal-based Twitter Client.
7Realtime tweetstream, compose, search , favorite ... and much more fun directly from terminal.
8
9This package is built on top of [Python Twitter Tool](http://mike.verdone.ca/twitter/) and [Twitter API](https://dev.twitter.com/docs/api/1.1).
10
11## Showcase
12Screencast:
13https://www.youtube.com/watch?v=tykCvPMJq8s
14<br>
15
16Screenshot: (Click to see)
17![rainbowstream](https://raw.githubusercontent.com/DTVD/rainbowstream/master/screenshot/RainbowStreamAll.png)
18
19## Install
20#### The quick way
21You will need Python and pip (2.7.x or 3.x).
22```bash
23sudo pip install rainbowstream
24# Python 3 users: sudo pip3 install rainbowstream
25```
26
27#### The recommended way
28Use [virtualenv](http://docs.python-guide.org/en/latest/dev/virtualenvs/)
29```bash
30virtualenv venv
31# Python 3 users : use -p to specify your Python 3 localtion as below
32# virtualenv -p /usr/bin/python3 venv
33source venv/bin/activate
34pip install rainbowstream
35```
36
37
38## Usage
39
40Just type
41```bash
42rainbowstream
43```
44and see your stream.
45
46I shipped a feature which can display **tweet's images directly on terminal**.
47You can try it with:
48```bash
49rainbowstream -iot # Or rainbowstream --image-on-term
50```
51
52In the first time you will be asked for authorization of Rainbow Stream app at Twitter.
53Just click the "Authorize access" button and paste PIN number to the terminal, the rainbow will start.
54
55## Interactive mode
56
57While your personal stream is continued, you are also ready to tweet, search, reply, retweet... directly from console.
58Simply type "h" and hit the Enter key to see the help.
59
60Input is in interactive mode. It means that you can use arrow key to move up and down history, tab-autocomplete or 2 tab to view available suggestion. Input history from previous run is available as well.
61
62## Available commands
63
64Available commands are listed in [ReadTheDocs documents](http://rainbowstream.readthedocs.org/en/latest/) .
65
66## Theme customization
67Rainbow Stream is shipped with some default themes.
68You can either change theme by `theme` command or create your favorite one.
69
70Theme's screenshot:
71* Monokai
72![Monokai](./screenshot/themes/Monokai.png)
73* Solarized
74![Solarized](./screenshot/themes/Solarized.png)
75* Tomorrow Night
76![Solarized](./screenshot/themes/TomorrowNight.png)
77* Larapaste
78![Solarized](./screenshot/themes/larapaste.png)
79
80For detaile information, see [theme usage and customization](https://github.com/DTVD/rainbowstream/blob/master/theme.md)
81
82## Bug and feature requests
83Found a bug or a feature request ?
84Please [create an issue](https://github.com/DTVD/rainbowstream/issues/new)
85or contact me at [@dtvd88](https://twitter.com/dtvd88)
86
87## Development
88If you want to build a runnable version yourself, follow these simple steps
89* [Create your own Twitter Application](https://apps.twitter.com/app/new)
90* Get your Twitter application's API key and secret
91* Fork this repo
92* Create a file `consumer.py` in [`rainbowstream`](https://github.com/DTVD/rainbowstream/tree/master/rainbowstream) folder with following content
93```python
94# Consumer information
95CONSUMER_KEY = 'APIKey' # Your Twitter application's API key
96CONSUMER_SECRET = 'APISecret' # Your Twitter application's API secret
97```
98* Use pip to install in local
99```bash
100# cd to directory which contains setup.py
101virtualenv venv # Python3 users: use -p to specify python3
102source venv/bin/activate
103pip install -e .
104pip list | grep rainbowstream # confirm installed version
105rainbowstream # local version of rainbowstream
106```
107
108## Contributing
109I appreciate any help and support. Feel free to
110[fork](https://github.com/DTVD/rainbowstream/fork)
111and
112[create a pull request](https://github.com/DTVD/rainbowstream/compare/).
113You will be listed as contributor.
114
115## License
116Rainbow Stream are released under an MIT License. See LICENSE.txt for details