# tweety **Repository Path**: happyone/tweety ## Basic Information - **Project Name**: tweety - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-02-27 - **Last Updated**: 2024-02-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## 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) ## 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/)