X-Git-Url: https://jfr.im/git/z_archive/twitter.git/blobdiff_plain/30913a4ebf3cd576f90de4b5678b3795d7a1b8af..0cde02549606816a4342d52dbe58d9b9af01e594:/README diff --git a/README b/README index cc1f9f7..e63b6f1 100644 --- 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!')