Metadata-Version: 2.1
Name: pytweetdeck
Version: 1.0.1
Summary: Wrapper library of TweetDeck's internal api.
Home-page: https://github.com/m4fn3/pytweetdeck
Author: mafu
Author-email: mafusukee@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

# 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)
```



