Reorganizing into a more package based structure, setting an initial (not working) setup.py file - this will be expanded soon

This commit is contained in:
Ryan McGrath 2009-07-28 03:13:48 -04:00
parent 4fed1e241f
commit d7d170cc3b
16 changed files with 1357 additions and 0 deletions

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"]