https://github.com/m4fn3/pytweetdeck
Wrapper library of TweetDeck's internal api.
https://github.com/m4fn3/pytweetdeck
tweetdeck twitter twitter-api twitter-streaming-api
Last synced: 20 days ago
JSON representation
Wrapper library of TweetDeck's internal api.
- Host: GitHub
- URL: https://github.com/m4fn3/pytweetdeck
- Owner: m4fn3
- License: mit
- Created: 2022-10-13T06:46:24.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-12-01T14:21:57.000Z (over 3 years ago)
- Last Synced: 2025-10-27T11:50:33.408Z (8 months ago)
- Topics: tweetdeck, twitter, twitter-api, twitter-streaming-api
- Language: Python
- Homepage: https://pypi.org/project/pytweetdeck/
- Size: 10.7 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pytweetdeck
Wrapper library of TweetDeck's internal api.
You can handle twitter functions without consumer key/secret since pytweetdeck uses an internal api which is used in TweetDeck.
## Install
```
pip install pytweetdeck
```
or directly from GitHub
```
pip install git+https://github.com/m4fn3/pytweetdeck.git
```
## Quick Example
Check examples directory to find more.
```python
import pytweetdeck
# login
client = pytweetdeck.Client(name_or_email="USERNAME", password="PASSWORD")
# tweet text
client.send_tweet("Hello from pytweetdeck!")
# stream timeline tweet
for tweet in client.stream_timeline():
print(tweet)
```