Skip to content

Instantly share code, notes, and snippets.

@Verurteilt
Created June 27, 2013 01:32
Show Gist options
  • Save Verurteilt/5873298 to your computer and use it in GitHub Desktop.
Save Verurteilt/5873298 to your computer and use it in GitHub Desktop.
Tweepy user timeline
import tweepy, tweepy.api
key="tukey"
sec = "tuconsumersecret"
tok= "tutoken"
toks = "tutokensecreto"
auth = tweepy.OAuthHandler(key, sec)
auth.set_access_token(tok, toks)
api = tweepy.API(auth)
pub = api.home_timeline()[:3]
for i in pub:
print i.text
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment