Skip to the content.

PyPI Version License Documentation Status Downloads

🐦 Tweety

Tweety is a Python-based tweet scraper that bypasses Twitter’s API limitations by using Selenium to collect tweets directly from the web. No API keys, no rate limits, no restrictions β€” just fast and flexible scraping.


Resource URL
🐍 PyPI tweety on PyPI
πŸ›  Repository GitHub Repo
πŸ“š Documentation Documentation

✨ Features

πŸ§ͺ You can scrape ~25 pages (~1200 tweets) reliably in one run.


πŸ“¦ Dependencies


πŸ“₯ Installation

Install the dependencies with pip:

pip install -r requirements.txt

βš™οΈ Usage

from twitter.tweety import tweets

# Scrape tweets related to "Super Deluxe"
tweety = tweets("Super Deluxe")

# Print sentiment analysis results
print("Polarity Scores : " + str(tweety.final_sentiment_scores))

πŸ“‚ Tweety Directory Structure

Directory Structure

πŸ“Š Output Example

Polarity Scores : {'positive': 0.55, 'neutral': 0.35, 'negative': 0.10}

Output Screenshot


🀝 Contributing

Contributions are welcome! For major changes, please open an issue first to discuss what you’d like to improve. Don’t forget to update or add tests as needed.


πŸ“œ License

This project is licensed under the MIT License.