Metadata-Version: 2.1
Name: TwiGram
Version: 1.0.2
Summary: Simple python package for download tweet from Twitter
Author: Matin Baloochestani (Matin-B)
Author-email: MatiinBaloochestani@Gmail.com
Keywords: python,twitter
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
License-File: LICENSE


# TwiGram
Simple python package for download tweet from Twitter

## Install package
```console
pip install TwiGram
```

## Examples of How To Use 

Get tweet info

```python
from twigram import download

# Get tweet information from Twitter
download("https://twitter.com/i/status/1481722124855169028")
```


Get tweet info (show video size)

```python
from twigram import download

# Get tweet information from Twitter
download("https://twitter.com/i/status/1481722124855169028", show_size=True)
```
