Metadata-Version: 2.4
Name: tweety-changchiyou
Version: 2.4.4
Summary: An easy Twitter Scraper
Author-email: changchiyou <changchiyou@gmail.com>
License: MIT AND (Apache-2.0 OR BSD-2-Clause)
Project-URL: Homepage, https://github.com/mahrtayyab/tweety
Project-URL: Documentation, https://mahrtayyab.github.io/tweety_docs/
Project-URL: Bug Tracker, https://github.com/mahrtayyab/tweety/issues
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
Classifier: Operating System :: OS Independent
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"

# tweety
Reverse Engineered Twitter Frontend API.

[![Downloads](https://static.pepy.tech/personalized-badge/tweety-changchiyou?period=total&units=international_system&left_color=orange&right_color=blue&left_text=Downloads)](https://pepy.tech/project/tweety-changchiyou) [![PyPI](https://img.shields.io/pypi/v/tweety-changchiyou)](https://pypi.org/project/tweety-changchiyou/)

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

## Keep synced with latest fixes

```bash
pip install https://github.com/changchiyou/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/changchiyou/tweety/wiki/FAQs)

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

## Fork Information

This is a fork maintained by [changchiyou](https://github.com/changchiyou). Original project by [mahrtayyab](https://github.com/mahrtayyab/tweety).
