Skip to content

Instantly share code, notes, and snippets.

@rjchee
Created October 10, 2017 22:27
Show Gist options
  • Save rjchee/57c9600dbe1e7bdc47247612fbeae5c8 to your computer and use it in GitHub Desktop.
Save rjchee/57c9600dbe1e7bdc47247612fbeae5c8 to your computer and use it in GitHub Desktop.
stressbot
from twython import Twython
API_KEY = '<Your API key here>'
API_SECRET = '<Your API secret here>'
OAUTH_TOKEN = '<Your OAuth token here>'
OAUTH_SECRET = '<Your OAuth secret here>'
twitter = Twython(API_KEY, API_SECRET, OAUTH_TOKEN, OAUTH_SECRET)
twitter.update_status(status="I'm stressed")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment