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