https://github.com/burritosoftware/rpanchat
https://github.com/burritosoftware/rpanchat
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/burritosoftware/rpanchat
- Owner: burritosoftware
- License: mit
- Created: 2020-05-01T21:20:51.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-01T20:59:02.000Z (about 6 years ago)
- Last Synced: 2025-07-04T09:48:21.468Z (about 1 year ago)
- Size: 4.88 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rpanchat
This is a tiny, unofficial python module for streaming live comments from RPAN
(Reddit Public Access Network)
*Remember to always follow the Reddit API guidelines!*
### Example of usage:
```python
from rpanchat import RPANChat
chat = RPANChat(user_agent='Test app for private use (by u/redditusername)')
stream_id = input("Stream ID: ")
chat.connect(stream_id)
for comment in chat:
print(comment.author + ': ' + comment.body)
```
###Installation:
```
pip install https://github.com/dominikrowinski/rpanchat/tarball/master
```