Update tutorial 1 to show example of API.new()
authorJosh Roesslein <jroesslein@gmail.com>
Fri, 14 Aug 2009 14:55:31 +0000 (09:55 -0500)
committerJosh Roesslein <jroesslein@gmail.com>
Fri, 14 Aug 2009 14:55:31 +0000 (09:55 -0500)
tutorial/t1.py

index 81cf08589c47778044bb3fd57c846412a441b4e5..a58dfd70c2e20b2ffdb54c42b71e3aa58df3d1c2 100644 (file)
@@ -78,6 +78,15 @@ so we can start playing with the Twitter API. :)
 api_via_basic = tweepy.API(basic_auth)
 api_via_oath = tweepy.API(oauth_auth)
 
+""" API.new() shortcut
+
+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
+
 """ The End
 
 That wraps up this first tutorial. You have learned how to setup