- Download python and Tweepy
pip install tweepy
- Get credentials for Twitter developer api
- Under your import statements store your credentials within variables and then use the second block of code to authenticate your account with tweepy.
consumer_key = 'consumer key'
consumer_secret = 'consumer secrets'
access_token = 'access token'
access_token_secret = 'access token secret'
This bot is meant to:
- Follow everyone following you.
- Favorite and Retweet a Tweet based on keywords.
- Reply to a user based on a keyword.