Skip to content

Atisha97/simple-twitter-bot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 

Repository files navigation

Create a Twitter Bot in Python Using Tweepy

Setup

  1. Download python and Tweepy
pip install tweepy
  1. Get credentials for Twitter developer api
  2. 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'

The basic twitter bot

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.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages