Skip to content
/ tweep Public
forked from twintproject/twint

An advanced Twitter scraping tool written in Python that doesn't use Twitter's API, evading most API limitations.

License

Notifications You must be signed in to change notification settings

MasimovR/tweep

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

77 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

tweep

Build Status Python 3.5|3.6 GitHub license

Tweep is an advanced Twitter scraping tool written in Python that allows for scraping Tweets from Twitter profiles without using Twitter's API.

Tweep utilizes Twitter's search operators to let you scrape Tweets from specific users, scrape Tweets relating to certain topics, hashtags & trends, or sort out sensitive information from Tweets like e-mail and phone numbers. I find this very useful, and you can get really creative with it too.

tl;dr Benefits

Some of the benefits of using Tweep vs Twitter API:

  • Can fetch almost all Tweets (Twitter API limits to last 3200 Tweets only)
  • Fast initial setup
  • Can be used anonymously and without sign up
  • No rate limitations

Requirements

  • Python 3.5/3.6
  • pip3 install -r requirements.txt

Usage

  • -u The user's Tweets you want to scrape.
  • -s Search for Tweets containing this word or phrase.
  • -g Retrieve tweets by geolocation. Format of the argument is lat,lon,range(km or mi) . ex : 48.01009,36.09876,0.5km
  • -o Save output to a file.
  • --year Filter Tweets before the specified year.
  • --fruit Display Tweets with "low-hanging-fruit".
  • --tweets Display Tweets only.
  • --verified Display Tweets only from verified users (Use with -s).
  • --users Display users only (Use with -s).
  • --csv Write as a .csv file.
  • --hashtags Extract hashtags.
  • --userid Search from Twitter user's ID.
  • --limit Number of Tweets to pull (Increments of 20).
  • --count Display number Tweets scraped at the end of session.
  • --stats Show number of replies, retweets, and likes.

Low-Hanging Fruit

The --fruit feature will display Tweets that might contain sensitive info such as:

  • Profiles from leaked databases (Myspace or LastFM)
  • Email addresses
  • Phone numbers
  • Keybase.io profiles

Basic Examples and Combos.

A few simple examples to help you understand the basics:

  • python3 tweep.py -u username - Scrape all the Tweets from user's timeline.
  • python3 tweep.py -u username -s pineapple - Scrape all Tweets from the user's timeline containing pineapple.
  • python3 tweep.py -s pineapple - Collect every Tweet containing pineapple from everyone's Tweets.
  • python3 tweep.py -u username --year 2014 - Collect Tweets that were tweeted before 2014.
  • python3 tweep.py -u username --since 2015-12-20 - Collect Tweets that were tweeted since 2015-12-20.
  • python3 tweep.py -u username -o file.txt - Scrape Tweets and save to file.txt.
  • python3 tweep.py -u username -o file.csv --csv - Scrape Tweets and save as a csv file.
  • python3 tweep.py -u username --fruit - Show Tweets with low-hanging fruit.
  • python3 tweep.py -s "Donald Trump" --verified --users - List verified users that Tweet about Donald Trump.
  • python3 tweep.py -g 48.880048,2.385939,1km -o file.csv --csv - Scrape Tweets from a radius of 1km around a place in Paris and export them to a csv file.
  • python3 tweep.py -s hello -g " -38.416097,-63.616671999999994,100km" -o file.csv --csv - Same for a radius of 100km around Buenos Aires and export them to a csv file. Quote your argument and add a space after the first quote, to correctly parse the minus sign of lat and lon as a character and not an option.

Example String

955511208597184512 2018-01-22 18:43:19 GMT <now> pineapples are the best fruit

Screenshot

Changelog

2/21/18

  • Added new features:
    • --userid feature allowing a user to search Tweets from a Twitter user's user-id.
    • --limit feature allowing a user to specify how many Tweets get scraped (Incriments of 20).
    • --count feature to display the total number of Tweets collected at the end of a Tweep session.
    • --stats feature to display the number of replies, retweets, and likes.
    • -g feature to scrape tweets in a radius of a gps location.
  • Fixed:
    • Error handling - Moved to a seperate function and better organized.

1/21/18

  • Added:
    • Python3 update and rewriten using asyncio. Fetching Tweets should be a lot more faster naturally.
    • Output can be saved.
    • Replies are now visible in the scrapes.
  • Removed:
    • Pics feature, I'll re-add this on a later date.

Contact

Shout me out on Twitter: @now

About

An advanced Twitter scraping tool written in Python that doesn't use Twitter's API, evading most API limitations.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%