Fixes to tutorial 1.
authorJosh Roesslein <jroesslein@gmail.com>
Tue, 25 Aug 2009 21:43:20 +0000 (16:43 -0500)
committerJosh Roesslein <jroesslein@gmail.com>
Tue, 25 Aug 2009 21:43:20 +0000 (16:43 -0500)
CHANGES
ROADMAP
tutorial/t1.py

diff --git a/CHANGES b/CHANGES
index 23c3f6b9dd102f45940ab6cb6f4ed4341f2e7f99..9acb582056634a3490e11ad5dc3a242ba13a76c0 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -16,3 +16,4 @@ during upgrade will be listed here.
 + Fixes
     + User.following is now set to False instead of None
       when user is not followed.
+    + python 2.5 import syntax error fixed
diff --git a/ROADMAP b/ROADMAP
index d6aec9003c4e44ebe6c2f48aed961770073c129e..456589d779f20f515d3524d7910bd2fb2dbc18c0 100644 (file)
--- a/ROADMAP
+++ b/ROADMAP
@@ -13,3 +13,4 @@ Future...
 + rate limit governor
 + command line client example
 + retweet api [DONE BUT NEEDS TESTING]
++ async requests
index a58dfd70c2e20b2ffdb54c42b71e3aa58df3d1c2..f392f1aa67fa31ac9071fca9568c82045ec55d0a 100644 (file)
@@ -83,9 +83,9 @@ api_via_oath = tweepy.API(oauth_auth)
 To make creating API instances a bit more easy you way use the
 static method API.new() to create new instances. Here is an example:
 """
-new_basic_api = tweepy.API.new(auth='basic', username, password)
-new_oauth_api = tweepy.API.new(auth='oauth', consumer_key, consumer_secret)
-new_oauth.api.auth_handler  # here's how to access the auth handler to do the oauth flow
+new_basic_api = tweepy.API.new('basic', username, password)
+new_oauth_api = tweepy.API.new('oauth', consumer_key, consumer_secret)
+new_oauth_api.auth_handler  # here's how to access the auth handler to do the oauth flow
 
 """ The End