GitHunt
FL

floogulinc/tweety

Twitter Scraper

tweety

Twitter's API is annoying to work with, and has lots of limitations — luckily their frontend (JavaScript) has it's own API, which I reverse–engineered. No API rate limits. No restrictions. Extremely fast.

Downloads

Prerequisites

Before you begin, ensure you have met the following requirements:

  • Internet Connection
  • Python 3.6+
  • BeautifulSoup (Python Module)
  • Requests (Python Module)
  • openpyxl (Python Module)
  • wget (Python Module) [Optional , you need to install it manually]

Installation:

pip install tweety-ns

A Quick Example:

  from tweety.bot import Twitter
  
  app = Twitter("elonmusk")
  
  all_tweets = app.get_tweets()
  for tweet in all_tweets:
      print(tweet)

Full Documentation and Changelogs are here

Languages

Python100.0%

Contributors

Created February 9, 2023
Updated February 4, 2023
floogulinc/tweety | GitHunt