An open API service indexing awesome lists of open source software.

https://github.com/mahrtayyab/tweety

Twitter Scraper
https://github.com/mahrtayyab/tweety

python tweets twitter twitter-api twitter-bot

Last synced: 18 days ago
JSON representation

Twitter Scraper

Awesome Lists containing this project

README

          

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