Scrape the Twitter Frontend API without authentication.
Project description
Twitter Scraper
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.
You can use this library to get the text of any user’s Tweets trivially.
Very useful for making markov chains.
Usage
>>> from twitter_scraper import get_tweets
>>> for tweet in get_tweets('kennethreitz', pages=1):
>>> print(tweet)
P.S. your API is a user interface
s3monkey just hit 100 github stars! Thanks, y’all!
I’m not sure what this /dev/fd/5 business is, but it’s driving me up the wall.
…
It appears you can ask for up to 25 pages of tweets reliably (~486 tweets).
Markov Example
First, install markovify:
$ pipenv install markovify
>>> import markovify
>>> tweets = '\n'.join([t for t in get_tweets('kennethreitz', pages=25)])
>>> text_model = markovify.Text(tweets)
>>> print(text_model.make_short_sentence(140))
Wtf you can’t use APFS on a prototype for “django-heroku”, which does a lot out of me.
Installation
$ pipenv install twitter-scraper
Only Python 3.6+ is supported.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
twitter-scraper-0.2.0.tar.gz
(3.6 kB
view hashes)
Built Distribution
Close
Hashes for twitter_scraper-0.2.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3460e0e20a4829a92599a29009af8cecd60e38cf3bffdba9f46ae5b3b8bd318f |
|
MD5 | 13769ef4e4a86a137f45be6ed23ddd77 |
|
BLAKE2b-256 | c3e938b96c1c942897c3d831fdfef5f41f90f6d02b601a6fed53ff634358f387 |