]> jfr.im git - z_archive/twitter.git/blame - README
Merge pull request #299 from jessamynsmith/master
[z_archive/twitter.git] / README
CommitLineData
fdbae010 1Python Twitter Tools
a65893e4 2====================
fdbae010 3
bcd1bc9c 4[![Build Status](https://travis-ci.org/sixohsix/twitter.svg)](https://travis-ci.org/sixohsix/twitter) [![Coverage Status](https://coveralls.io/repos/sixohsix/twitter/badge.png?branch=master)](https://coveralls.io/r/sixohsix/twitter?branch=master)
9ae71d46 5
f1a8ed67 6The Minimalist Twitter API for Python is a Python API for Twitter,
7everyone's favorite Web 2.0 Facebook-style status updater for people
8on the go.
fdbae010 9
f1a8ed67 10Also included is a twitter command-line tool for getting your friends'
11tweets and setting your own tweet from the safety and security of your
5b8b1ead 12favorite shell and an IRC bot that can announce Twitter updates to an
f1a8ed67 13IRC channel.
fdbae010 14
5f47b302 15For more information, after installing the `twitter` package:
fdbae010 16
17 * import the `twitter` package and run help() on it
18 * run `twitter -h` for command-line tool help
a65893e4 19
51e0b8f1
MV
20
21twitter - The Command-Line Tool
22-------------------------------
a65893e4 23
30913a4e 24The command-line tool lets you do some awesome things:
a65893e4 25
30913a4e 26 * view your tweets, recent replies, and tweets in lists
a65893e4
MV
27 * view the public timeline
28 * follow and unfollow (leave) friends
29 * various output formats for tweet information
51e0b8f1 30
a65893e4
MV
31The bottom line: type `twitter`, receive tweets.
32
33
34
51e0b8f1
MV
35twitterbot - The IRC Bot
36------------------------
a65893e4
MV
37
38The IRC bot is associated with a twitter account (either your own account or an
39account you create for the bot). The bot announces all tweets from friends
40it is following. It can be made to follow or leave friends through IRC /msg
41commands.
42
5f47b302 43
5f47b302 44twitter-log
51e0b8f1 45-----------
5f47b302
MV
46
47`twitter-log` is a simple command-line tool that dumps all public
48tweets from a given user in a simple text format. It is useful to get
49a complete offsite backup of all your tweets. Run `twitter-log` and
50read the instructions.
51
30913a4e
MV
52twitter-archiver and twitter-follow
53-----------------------------------
54
55twitter-archiver will log all the tweets posted by any user since they
56started posting. twitter-follow will print a list of all of all the
57followers of a user (or all the users that user follows).
58
5f47b302 59
51e0b8f1
MV
60Programming with the Twitter api classes
61========================================
62
51e0b8f1
MV
63The Twitter and TwitterStream classes are the key to building your own
64Twitter-enabled applications.
65
66
67The Twitter class
68-----------------
69
70The minimalist yet fully featured Twitter API class.
71
72Get RESTful data by accessing members of this class. The result
73is decoded python objects (lists and dicts).
74
75The Twitter API is documented at:
76
76bb7360 77**[https://dev.twitter.com/overview/documentation](https://dev.twitter.com/overview/documentation)**
51e0b8f1 78
d4f3123e 79Examples:
bcbd4e2b 80```python
814d84f5 81from twitter import *
51e0b8f1 82
814d84f5 83t = Twitter(
bdad9dd1 84 auth=OAuth(token, token_key, con_secret, con_secret_key))
51e0b8f1 85
814d84f5
MG
86# Get your "home" timeline
87t.statuses.home_timeline()
51e0b8f1 88
814d84f5 89# Get a particular friend's timeline
aaf199d3 90t.statuses.user_timeline(screen_name="billybob")
51e0b8f1 91
ae2bf888
HN
92# to pass in GET/POST parameters, such as `count`
93t.statuses.home_timeline(count=5)
94
95# to pass in the GET/POST parameter `id` you need to use `_id`
96t.statuses.oembed(_id=1234567890)
97
814d84f5
MG
98# Update your status
99t.statuses.update(
100 status="Using @sixohsix's sweet Python Twitter Tools.")
51e0b8f1 101
814d84f5
MG
102# Send a direct message
103t.direct_messages.new(
104 user="billybob",
105 text="I think yer swell!")
d09c0dd3 106
814d84f5 107# Get the members of tamtar's list "Things That Are Rad"
fec0468d 108t.lists.members(owner_screen_name="tamtar", slug="things-that-are-rad")
a5aab114 109
814d84f5 110# An *optional* `_timeout` parameter can also be used for API
d4f3123e
MV
111# calls which take much more time than normal or twitter stops
112# responding for some reason:
113t.users.lookup(
114 screen_name=','.join(A_LIST_OF_100_SCREEN_NAMES), _timeout=1)
51e0b8f1 115
ae2bf888
HN
116# Overriding Method: GET/POST
117# you should not need to use this method as this library properly
118# detects whether GET or POST should be used, Nevertheless
119# to force a particular method, use `_method`
120t.statuses.oembed(_id=1234567890, _method='GET')
5a412b39 121
cd830ea5
R
122# Send images along with your tweets:
123# - first just read images from the web or from files the regular way:
5a412b39 124with open("example.png", "rb") as imagefile:
cd830ea5
R
125 imagedata = imagefile.read()
126# - then upload medias one by one on Twitter's dedicated server
127# and collect each one's id:
128t_up = Twitter(domain='upload.twitter.com',
129 auth=OAuth(token, token_key, con_secret, con_secret_key))
f778d83a
R
130id_img1 = t_up.media.upload(media=imagedata)["media_id_string"]
131id_img2 = t_up.media.upload(media=imagedata)["media_id_string"]
cd830ea5
R
132# - finally send your tweet with the list of media ids:
133t.statuses.update(status="PTT ★", media_ids=",".join([id_img1, id_img2]))
134
135# Or send a tweet with an image (or set a logo/banner similarily)
136# using the old deprecated method that will probably disappear some day
137params = {"media[]": imagedata, "status": "PTT ★"}
138# Or for an image encoded as base64:
139params = {"media[]": base64_image, "status": "PTT ★", "_base64": True}
5a412b39 140t.statuses.update_with_media(**params)
ae2bf888 141```
51e0b8f1 142
d4f3123e
MV
143Searching Twitter:
144```python
814d84f5
MG
145# Search for the latest tweets about #pycon
146t.search.tweets(q="#pycon")
147```
51e0b8f1 148
16c4e7d4
BB
149
150Retrying after reaching the API rate limit
151------------------------------------------
152
153Simply create the `Twitter` instance with the argument `retry=True`, then the
154HTTP error codes 429, 502, 503 and 504 will cause a retry of the last request.
73a242d6 155If retry is an integer, it defines the number of retries attempted.
16c4e7d4
BB
156
157
51e0b8f1
MV
158Using the data returned
159-----------------------
160
161Twitter API calls return decoded JSON. This is converted into
d4f3123e 162a bunch of Python lists, dicts, ints, and strings. For example:
51e0b8f1 163
814d84f5
MG
164```python
165x = twitter.statuses.home_timeline()
51e0b8f1 166
814d84f5
MG
167# The first 'tweet' in the timeline
168x[0]
51e0b8f1 169
814d84f5
MG
170# The screen name of the user who wrote the first 'tweet'
171x[0]['user']['screen_name']
172```
51e0b8f1
MV
173
174Getting raw XML data
175--------------------
176
177If you prefer to get your Twitter data in XML format, pass
d4f3123e 178format="xml" to the Twitter object when you instantiate it:
51e0b8f1 179
814d84f5
MG
180```python
181twitter = Twitter(format="xml")
182```
51e0b8f1
MV
183
184The output will not be parsed in any way. It will be a raw string
185of XML.
186
187
188The TwitterStream class
189-----------------------
190
d4f3123e
MV
191The TwitterStream object is an interface to the Twitter Stream
192API. This can be used pretty much the same as the Twitter class
193except the result of calling a method will be an iterator that
194yields objects decoded from the stream. For example::
51e0b8f1 195
814d84f5 196```python
d4f3123e 197twitter_stream = TwitterStream(auth=OAuth(...))
814d84f5 198iterator = twitter_stream.statuses.sample()
51e0b8f1 199
814d84f5 200for tweet in iterator:
d4f3123e 201 ...do something with this tweet...
814d84f5 202```
51e0b8f1 203
84e6e1e4 204Per default the ``TwitterStream`` object uses
205[public streams](https://dev.twitter.com/docs/streaming-apis/streams/public).
206If you want to use one of the other
207[streaming APIs](https://dev.twitter.com/docs/streaming-apis), specify the URL
208manually:
209
210- [Public streams](https://dev.twitter.com/docs/streaming-apis/streams/public): stream.twitter.com
211- [User streams](https://dev.twitter.com/docs/streaming-apis/streams/user): userstream.twitter.com
212- [Site streams](https://dev.twitter.com/docs/streaming-apis/streams/site): sitestream.twitter.com
213
214Note that you require the proper
215[permissions](https://dev.twitter.com/docs/application-permission-model) to
216access these streams. E.g. for direct messages your
217[application](https://dev.twitter.com/apps) needs the "Read, Write & Direct
218Messages" permission.
219
9ae71d46 220The following example demonstrates how to retrieve all new direct messages
84e6e1e4 221from the user stream:
222
223```python
224auth = OAuth(
225 consumer_key='[your consumer key]',
226 consumer_secret='[your consumer secret]',
227 token='[your token]',
228 token_secret='[your token secret]'
229)
230twitter_userstream = TwitterStream(auth=auth, domain='userstream.twitter.com')
231for msg in twitter_userstream.user():
232 if 'direct_message' in msg:
233 print msg['direct_message']['text']
234```
235
d4f3123e
MV
236The iterator will yield until the TCP connection breaks. When the
237connection breaks, the iterator yields `{'hangup': True}`, and
238raises `StopIteration` if iterated again.
239
240Similarly, if the stream does not produce heartbeats for more than
24190 seconds, the iterator yields `{'hangup': True,
242'heartbeat_timeout': True}`, and raises `StopIteration` if
243iterated again.
244
245The `timeout` parameter controls the maximum time between
246yields. If it is nonzero, then the iterator will yield either
247stream data or `{'timeout': True}` within the timeout period. This
248is useful if you want your program to do other stuff in between
249waiting for tweets.
250
251The `block` parameter sets the stream to be fully non-blocking. In
252this mode, the iterator always yields immediately. It returns
253stream data, or `None`. Note that `timeout` supercedes this
925431e9
O
254argument, so it should also be set `None` to use this mode,
255and non-blocking can potentially lead to 100% CPU usage.
d4f3123e 256
51e0b8f1
MV
257Twitter Response Objects
258------------------------
259
d4f3123e 260Response from a twitter request. Behaves like a list or a string
51e0b8f1
MV
261(depending on requested format) but it has a few other interesting
262attributes.
263
264`headers` gives you access to the response headers as an
265httplib.HTTPHeaders instance. You can do
d4f3123e 266`response.headers.get('h')` to retrieve a header.
51e0b8f1
MV
267
268Authentication
269--------------
270
271You can authenticate with Twitter in three ways: NoAuth, OAuth, or
d4f3123e 272OAuth2 (app-only). Get help() on these classes to learn how to use them.
51e0b8f1 273
d4f3123e 274OAuth and OAuth2 are probably the most useful.
51e0b8f1
MV
275
276
277Working with OAuth
278------------------
279
280Visit the Twitter developer page and create a new application:
281
5d5d68cc 282**[https://dev.twitter.com/apps/new](https://dev.twitter.com/apps/new)**
51e0b8f1
MV
283
284This will get you a CONSUMER_KEY and CONSUMER_SECRET.
285
286When users run your application they have to authenticate your app
d4f3123e 287with their Twitter account. A few HTTP calls to twitter are required
51e0b8f1
MV
288to do this. Please see the twitter.oauth_dance module to see how this
289is done. If you are making a command-line app, you can use the
290oauth_dance() function directly.
291
d4f3123e 292Performing the "oauth dance" gets you an ouath token and oauth secret
51e0b8f1
MV
293that authenticate the user with Twitter. You should save these for
294later so that the user doesn't have to do the oauth dance again.
295
296read_token_file and write_token_file are utility methods to read and
297write OAuth token and secret key values. The values are stored as
298strings in the file. Not terribly exciting.
299
300Finally, you can use the OAuth authenticator to connect to Twitter. In
d4f3123e 301code it all goes like this:
51e0b8f1 302
814d84f5
MG
303```python
304from twitter import *
51e0b8f1 305
814d84f5
MG
306MY_TWITTER_CREDS = os.path.expanduser('~/.my_app_credentials')
307if not os.path.exists(MY_TWITTER_CREDS):
308 oauth_dance("My App Name", CONSUMER_KEY, CONSUMER_SECRET,
309 MY_TWITTER_CREDS)
51e0b8f1 310
814d84f5 311oauth_token, oauth_secret = read_token_file(MY_TWITTER_CREDS)
51e0b8f1 312
814d84f5 313twitter = Twitter(auth=OAuth(
d4f3123e 314 oauth_token, oauth_token_secret, CONSUMER_KEY, CONSUMER_SECRET))
51e0b8f1 315
814d84f5 316# Now work with Twitter
04e76c4d 317twitter.statuses.update(status='Hello, world!')
814d84f5 318```
51e0b8f1 319
d4f3123e
MV
320Working with OAuth2
321-------------------
322
323Twitter only supports the application-only flow of OAuth2 for certain
324API endpoints. This OAuth2 authenticator only supports the application-only
325flow right now.
326
327To authenticate with OAuth2, visit the Twitter developer page and create a new
328application:
329
330**[https://dev.twitter.com/apps/new](https://dev.twitter.com/apps/new)**
331
332This will get you a CONSUMER_KEY and CONSUMER_SECRET.
333
334Exchange your CONSUMER_KEY and CONSUMER_SECRET for a bearer token using the
335oauth2_dance function.
336
337Finally, you can use the OAuth2 authenticator and your bearer token to connect
338to Twitter. In code it goes like this::
339
340```python
341twitter = Twitter(auth=OAuth2(bearer_token=BEARER_TOKEN))
342
343# Now work with Twitter
344twitter.search.tweets(q='keyword')
345```
51e0b8f1
MV
346
347License
348=======
349
8be9a740 350Python Twitter Tools are released under an MIT License.