]> jfr.im git - z_archive/twitter.git/blobdiff - README
Version 1.14.1.
[z_archive/twitter.git] / README
diff --git a/README b/README
index 8e3a5346109e5e4953df8eda4cb385f6d889abc5..18de04e1ef3e89a1cd3cb13b02825a54f501da36 100644 (file)
--- a/README
+++ b/README
@@ -78,7 +78,7 @@ The Twitter API is documented at:
 
 Examples::
 
-```python 
+```python
 from twitter import *
 
 # see "Authentication" section below for tokens and keys
@@ -91,10 +91,7 @@ t = Twitter(
 t.statuses.home_timeline()
 
 # Get a particular friend's timeline
-t.statuses.friends_timeline(id="billybob")
-
-# Also supported (but totally weird)
-t.statuses.friends_timeline.billybob()
+t.statuses.user_timeline(screen_name="billybob")
 
 # to pass in GET/POST parameters, such as `count`
 t.statuses.home_timeline(count=5)
@@ -258,7 +255,7 @@ to do this. Please see the twitter.oauth_dance module to see how this
 is done. If you are making a command-line app, you can use the
 oauth_dance() function directly.
 
-Performing the "oauth dance" gets you an ouath token and oauth secret
+Performing the "oauth dance" gets you an oauth token and oauth secret
 that authenticate the user with Twitter. You should save these for
 later so that the user doesn't have to do the oauth dance again.
 
@@ -283,7 +280,7 @@ twitter = Twitter(auth=OAuth(
     oauth_token, oauth_secret, CONSUMER_KEY, CONSUMER_SECRET))
 
 # Now work with Twitter
-twitter.statuses.update('Hello, world!')
+twitter.statuses.update(status='Hello, world!')
 ```