No description
Find a file
2026-03-22 09:22:58 +05:00
docs pypi release 2.1 2024-12-29 14:54:59 +05:00
src/tweety fix: correct ondemand file parsing 2026-03-18 20:39:47 +02:00
.gitattributes Initial commit 2021-09-26 12:51:19 +05:00
.gitignore Initial commit 2021-09-26 12:51:19 +05:00
pyproject.toml pypi release 2.0.7 2024-12-06 15:17:56 +05:00
README.md pypi release 2.3.1 2025-05-29 22:51:55 +05:00
requirements.txt pypi release 2.0.7 2024-12-06 15:17:56 +05:00
setup.cfg pypi release 2.4.1 2025-07-15 11:29:40 +05:00
setup.py pypi release 2.4.1 2025-07-15 11:29:40 +05:00

tweety

Reverse Engineered Twitter Frontend API.

Downloads Ask DeepWiki

Installation:

pip install tweety-ns

Keep synced with latest fixes

Pip might not be always updated , so to keep everything synced.
pip install https://github.com/mahrtayyab/tweety/archive/main.zip --upgrade 

A Quick Example:

    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

Full Documentation and Changelogs are here