8000 GitHub - HamedAkhavan/tweety: Twitter Scraper
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

HamedAkhavan/tweety

 
 

Repository files navigation

tweety

Reverse Engineered Twitter Frontend API.

Downloads

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/CrossDarkrix/tweety/archive/refs/heads/main.zip --upgrade 

A Quick Example:

  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.

Do check FAQs

Full Documentation and Changelogs are here

About

Twitter Scraper

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%
0