Metadata-Version: 2.4
Name: tweety-ns
Version: 2.4
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: Programming Language :: Python :: 3
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: beautifulsoup4[lxml]~=4.12
Requires-Dist: openpyxl
Requires-Dist: httpx[http2]
Requires-Dist: dateutils
Requires-Dist: anticaptchaofficial
Requires-Dist: capsolver
Requires-Dist: 2captcha-python
Requires-Dist: python-magic
Requires-Dist: python-magic-bin; platform_system == "Windows"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: requires-dist
Dynamic: summary

# 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) [![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/mahrtayyab/tweety)

## 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 TwitterAsync
    import asyncio
    
    async def main():
    
        app = TwitterAsync("session")  
        all_tweets = await app.get_tweets("elonmusk")
        for tweet in all_tweets:
            print(tweet)

    asyncio.run(main())
```

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

Do check [FAQs](https://github.com/mahrtayyab/tweety/wiki/FAQs)

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