Some tutorial fixes.
authorJosh Roesslein <jroesslein@gmail.com>
Sun, 9 Aug 2009 20:51:36 +0000 (15:51 -0500)
committerJosh Roesslein <jroesslein@gmail.com>
Sun, 9 Aug 2009 20:51:36 +0000 (15:51 -0500)
tutorial/t1.py
tutorial/t2.py

index 93aa1674aaa143a055b03ce73bafaf18281f3fcc..951c777ee9e3f175654b1d61ef23b94cfb1eed98 100644 (file)
@@ -51,14 +51,14 @@ oauth_auth.get_access_token(verifier)
 Okay we are all set then with OAuth. If you want to store the access
 token for later use, here's how...
 """
-access_token_to_store = oauth_auth.access_token
-print 'Access token: %s' % access_token_to_store
+access_token_store = oauth_auth.access_token
+print 'Access token: %s' % access_token_store
 
 """
 And to re-create the OAuthHandler with that access token later on...
 """
 oauth_auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
-oauth_auth.access_token = access_token_from_storage
+oauth_auth.access_token = access_token_store
 
 """
 Now let's plugin our newly created auth handler into an API instance
index 208b6fa832f5b4f51aae9fe8292563faf0bc332a..ddc33228ff5894ac99edc2102de8a2120d2ccff3 100644 (file)
@@ -48,6 +48,7 @@ Let's query the authenticated user's friends timeline
 and print it to the console...
 """
 friends_timeline = auth_api.friends_timeline()
+print 'Friends timeline...'
 for status in friends_timeline:
   print status.text
   print 'from: %s' % status.user.screen_name