Skip to content

Instantly share code, notes, and snippets.

@videlais
Created March 3, 2015 00:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save videlais/10d2e4648c7429cbb55b to your computer and use it in GitHub Desktop.
Save videlais/10d2e4648c7429cbb55b to your computer and use it in GitHub Desktop.
An example of a basic Python TwitterBot using the Tweepy package
import tweepy
class TwitterAPI:
def __init__(self):
consumer_key = ""
consumer_secret = ""
auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
access_token = ""
access_token_secret = ""
auth.set_access_token(access_token, access_token_secret)
self.api = tweepy.API(auth)
def tweet(self, message):
self.api.update_status(status=message)
if __name__ == "__main__":
twitter = TwitterAPI()
twitter.tweet("I'm posting a tweet!")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment