Scraping Twitter users based on recent hashtag use and other criteria

RRRRRRAMPAGE

BANNED
Joined
Mar 5, 2017
Messages
139
Reaction score
122
Hey everyone, I'd like to scrape Twitter for users that meet the following criteria:
  1. specific hashtags used in the past week/month
  2. profile picture
  3. exclude if profile contains certain words
  4. number of followers/followings
  5. gender
How would I go about doing this? What tool would I use?
 
You can do this by developing a custom python and selenium tool.
 
Only thing that is going to cause you issues is the gender. Twitter doesn't provide it in the user_endpoint. You can try and split the name property, but for twitter that doesn't work great. The rest is just a simple filter on the user_details.
 
Back
Top