Example of getting the friends timeline

This commit is contained in:
Ryan McGrath 2009-06-14 19:31:24 -04:00
parent 4af7c8771f
commit b71dd218aa

View file

@ -0,0 +1,8 @@
import tango, pprint
# Authenticate using Basic (HTTP) Authentication
twitter = tango.setup(authtype="Basic", username="example", password="example")
friends_timeline = twitter.getFriendsTimeline(count="150", page="3")
for tweet in friends_timeline:
print tweet["text"]