Metadata-Version: 2.1
Name: tweety-ns
Version: 1.0.9.3
Summary: An easy Twitter Scraper
Home-page: https://github.com/mahrtayyab/tweety
Author: Tayyab Kharl
Author-email: tayyabmahr@gmail.com
License: MIT
Project-URL: Bug Tracker, https://github.com/mahrtayyab/tweety/issues
Project-URL: Documentation, https://github.com/mahrtayyab/tweety
Keywords: TWITTER,TWITTER SCRAPE,SCRAPE TWEETS
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: beautifulsoup4
Requires-Dist: openpyxl
Requires-Dist: httpx
Requires-Dist: dateutils

# tweety
Reverse Engineered Twitter Frontend API.

[![Downloads](https://static.pepy.tech/personalized-badge/tweety-ns?period=total&units=international_system&left_color=orange&right_color=blue&left_text=Downloads)](https://pepy.tech/project/tweety-ns)
## Prerequisites

Before you begin, ensure you have met the following requirements:

* Internet Connection
* Python 3.6+
* httpx 
* openpyxl

## Installation: 
```bash
pip install tweety-ns
```

## Keep synced with latest fixes

##### **Pip might not be always updated , so to keep everything synced.**

```bash
pip install https://github.com/mahrtayyab/tweety/archive/main.zip --upgrade 
```

## A Quick Example:
```python
  from tweety import Twitter
  
  app = Twitter("session")
  
# assuming app is authenticated class instance
  
  all_tweets = app.get_tweets("elonmusk")
  for tweet in all_tweets:
      print(tweet)
```

> [!IMPORTANT] 
> Even Twitter Web Client has a lot of rate limits now, Abusing tweety can lead to `read_only` Twitter account.

Full Documentation and Changelogs are [here](https://mahrtayyab.github.io/tweety_docs/)
