Skip to content

Instantly share code, notes, and snippets.

@elliotforbes
Created November 4, 2015 21:54
Show Gist options
  • Save elliotforbes/fcf131c874f41d0909d6 to your computer and use it in GitHub Desktop.
Save elliotforbes/fcf131c874f41d0909d6 to your computer and use it in GitHub Desktop.
from twitter import Twitter, OAuth, TwitterHTTPError
consumer_key = ''
consumer_secret = ''
access_token_key = ''
access_token_secret = ''
bot = Twitter(auth=OAuth(access_token_key, access_token_secret,
consumer_key, consumer_secret))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment