]> jfr.im git - z_archive/twitter.git/blobdiff - README
Removed extra parantheses
[z_archive/twitter.git] / README
diff --git a/README b/README
index cc1f9f7fc36c7a5532375899382ce59325c7846d..e63b6f1e26a4a1f8dc4e6a147f15a43a8bcc8a02 100644 (file)
--- a/README
+++ b/README
@@ -77,9 +77,14 @@ The Twitter API is documented at:
 
 
 Examples::
+    
+    from twitter import *
 
+    # see "Authentication" section below for tokens and keys
     t = Twitter(
-        auth=OAuth(token, token_key, con_secret, con_secret_key)))
+                auth=OAuth(OAUTH_TOKEN, OAUTH_SECRET,
+                           CONSUMER_KEY, CONSUMER_SECRET)
+               )
 
     # Get the public timeline
     t.statuses.public_timeline()
@@ -109,6 +114,8 @@ Examples::
 
 Searching Twitter::
 
+    from twitter import *
+
     twitter_search = Twitter(domain="search.twitter.com")
 
     # Find the latest search trends
@@ -213,6 +220,8 @@ strings in the file. Not terribly exciting.
 Finally, you can use the OAuth authenticator to connect to Twitter. In
 code it all goes like this::
 
+    from twitter import *
+
     MY_TWITTER_CREDS = os.path.expanduser('~/.my_app_credentials')
     if not os.path.exists(MY_TWITTER_CREDS):
         oauth_dance("My App Name", CONSUMER_KEY, CONSUMER_SECRET,
@@ -221,7 +230,7 @@ code it all goes like this::
     oauth_token, oauth_secret = read_token_file(MY_TWITTER_CREDS)
 
     twitter = Twitter(auth=OAuth(
-        oauth_token, oauth_token_secret, CONSUMER_KEY, CONSUMER_SECRET))
+        oauth_token, oauth_secret, CONSUMER_KEY, CONSUMER_SECRET))
 
     # Now work with Twitter
     twitter.statuses.update('Hello, world!')