Skip to content

This is a script to automate finding, following, retweeting, and liking influential people on Twitter

Notifications You must be signed in to change notification settings

yeiyeiyei/twitter-influencer-scraper

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Automate finding influential people on Twitter

This is a very simple script to automate finding, following, and retweeting/liking influential people of a topic on Twitter.

First of all go to keys.py and replace the keys with your own, find them here, it'll look a little bit like so:

# keys.py

consumer_key = "YOUR_KEY_HERE"
consumer_secret = "YOUR_SECRET_KEY_HERE"
access_token = "YOUR_TOKEN_HERE"
access_token_secret = "YOUR_SECRET_TOKEN_HERE"

Go to the config.json file and configure what you consider to be an influential person it'll look something like this by default:

// config.json
{
  "influencer": {
    "followers": 1000,
    "likes": 100,
    "retweets": 100
  }
}

Lastly run python main.py followed by the topics you are interested in e.g. blockchain like so:

python main.py blockchain
# replace blockchain with whatever topic you're interested in

About

This is a script to automate finding, following, retweeting, and liking influential people on Twitter

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%