File: client.rst

package info (click to toggle)
python-aiohttp 0.17.2-1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 2,368 kB
  • sloc: python: 19,899; makefile: 205
file content (540 lines) | stat: -rw-r--r-- 16,934 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
.. _aiohttp-client:

HTTP Client
===========

.. highlight:: python

.. module:: aiohttp.client

Example
-------

Because most of the *aiohttp* methods are generators, they will not work
in the interactive python interpreter like regular functions
would. For convenience, we show our examples as if they were run in
the interactive interpreter, but please remember that actually running
them requires that you wrap them in functions and run them with an
:ref:`asyncio loop<asyncio-event-loop>`. For example::

  >>> def run():
  ...   r = yield from aiohttp.get('http://python.org')
  ...   raw = yield from r.text()
  ...   print(raw)

  >>> if __name__ == '__main__':
  ...    asyncio.get_event_loop().run_until_complete(run())



Make a Request
--------------

Begin by importing the aiohttp module::

    >>> import aiohttp

Now, let's try to get a web-page. For example let's get GitHub's public
time-line ::

    >>> r = yield from aiohttp.get('https://api.github.com/events')

Now, we have a :class:`ClientResponse` object called ``r``. We can get all the
information we need from this object.
The mandatory parameter of :func:`get` coroutine is an http url.

In order to make an HTTP POST request use :func:`post` coroutine::

    >>> r = yield from aiohttp.post('http://httpbin.org/post', data=b'data')

Other http methods are available as well::

    >>> r = yield from aiohttp.put('http://httpbin.org/put', data=b'data')
    >>> r = yield from aiohttp.delete('http://httpbin.org/delete')
    >>> r = yield from aiohttp.head('http://httpbin.org/get')
    >>> r = yield from aiohttp.options('http://httpbin.org/get')
    >>> r = yield from aiohttp.patch('http://httpbin.org/patch', data=b'data')


Passing Parameters In URLs
--------------------------

You often want to send some sort of data in the URL's query string. If
you were constructing the URL by hand, this data would be given as key/value
pairs in the URL after a question mark, e.g. ``httpbin.org/get?key=val``.
Requests allows you to provide these arguments as a dictionary, using the
``params`` keyword argument. As an example, if you wanted to pass
``key1=value1`` and ``key2=value2`` to ``httpbin.org/get``, you would use the
following code::

    >>> payload = {'key1': 'value1', 'key2': 'value2'}
    >>> r = yield from aiohttp.get('http://httpbin.org/get',
    ...                            params=payload)

You can see that the URL has been correctly encoded by printing the URL::

    >>> print(r.url)
    http://httpbin.org/get?key2=value2&key1=value1

It is also possible to pass a list of 2 item tuples as parameters, in
that case you can specify multiple values for each key::

    >>> payload = [('key', 'value1'), ('key': 'value2')]
    >>> r = yield from aiohttp.get('http://httpbin.org/get',
    ...                            params=payload)
    >>> print(r.url)
    http://httpbin.org/get?key=value2&key=value1


Response Content
----------------

We can read the content of the server's response. Consider the GitHub time-line
again::

    >>> import aiohttp
    >>> r = yield from aiohttp.get('https://api.github.com/events')
    >>> yield from r.text()
    '[{"created_at":"2015-06-12T14:06:22Z","public":true,"actor":{...

aiohttp will automatically decode the content from the server. You can
specify custom encoding for the ``text()`` method::

    >>> yield from r.text(encoding='windows-1251')


Binary Response Content
-----------------------

You can also access the response body as bytes, for non-text requests::

    >>> yield from r.read()
    b'[{"created_at":"2015-06-12T14:06:22Z","public":true,"actor":{...

The ``gzip`` and ``deflate`` transfer-encodings are automatically
decoded for you.


JSON Response Content
---------------------

There's also a built-in JSON decoder, in case you're dealing with JSON data::

    >>> import aiohttp
    >>> r = yield from aiohttp.get('https://api.github.com/events')
    >>> yield from r.json()
    [{'created_at': '2015-06-12T14:07:07Z', 'public': True, 'actor...

In case that JSON decoding fails, ``r.json()`` will raise an exception. It
is possible to specify custom encoding and decoder functions for the
``json()`` call.


Streaming Response Content
--------------------------

While methods ``read()``, ``json()`` and ``text()`` are very
convenient you should use them carefully. All these methods load the
whole response in memory.  For example if you want to download several
gigabyte sized files, these methods will load all the data in
memory. Instead you can use the ``ClientResponse.content``
attribute. It is an instance of the ``aiohttp.StreamReader``
class. The ``gzip`` and ``deflate`` transfer-encodings are
automatically decoded for you::

    >>> r = yield from aiohttp.get('https://api.github.com/events')
    >>> r.content
    <aiohttp.streams.StreamReader object at 0x...>
    >>> yield from r.content.read(10)
    '\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\x03'

In general, however, you should use a pattern like this to save what is being
streamed to a file::

    >>> with open(filename, 'wb') as fd:
    ...     while True:
    ...         chunk = yield from r.content.read(chunk_size)
    ...         if not chunk:
    ...             break
    ...         fd.write(chunk)

It is not possible to use ``read()``, ``json()`` and ``text()`` after
reading the file with ``chunk_size``.


Custom Headers
--------------

If you need to add HTTP headers to a request, pass them in a
:class:`dict` to the *headers* parameter.

For example, if you want to specify the content-type for the previous example::

    >>> import json
    >>> url = 'https://api.github.com/some/endpoint'
    >>> payload = {'some': 'data'}
    >>> headers = {'content-type': 'application/json'}

    >>> r = yield from aiohttp.post(url,
    ...                             data=json.dumps(payload),
    ...                             headers=headers)


Custom Cookies
--------------

To send your own cookies to the server, you can use the *cookies*
parameter::

    >>> url = 'http://httpbin.org/cookies'
    >>> cookies = dict(cookies_are='working')

    >>> r = yield from aiohttp.get(url, cookies=cookies)
    >>> yield from r.text()
    '{"cookies": {"cookies_are": "working"}}'


More complicated POST requests
------------------------------

Typically, you want to send some form-encoded data — much like an HTML form.
To do this, simply pass a dictionary to the *data* argument. Your
dictionary of data will automatically be form-encoded when the request is made::

    >>> payload = {'key1': 'value1', 'key2': 'value2'}
    >>> r = yield from aiohttp.post('http://httpbin.org/post',
    ...                             data=payload)
    >>> yield from r.text()
    {
      ...
      "form": {
        "key2": "value2",
        "key1": "value1"
      },
      ...
    }

If you want to send data that is not form-encoded you can do it by
passing a :class:`str` instead of a :class:`dict`. This data will be
posted directly.

For example, the GitHub API v3 accepts JSON-Encoded POST/PATCH data::

    >>> import json
    >>> url = 'https://api.github.com/some/endpoint'
    >>> payload = {'some': 'data'}

    >>> r = yield from aiohttp.post(url, data=json.dumps(payload))


POST a Multipart-Encoded File
-----------------------------

To upload Multipart-encoded files::

    >>> url = 'http://httpbin.org/post'
    >>> files = {'file': open('report.xls', 'rb')}

    >>> yield from aiohttp.post(url, data=files)

You can set the filename, content_type explicitly::

    >>> url = 'http://httpbin.org/post'
    >>> data = FormData()
    >>> data.add_field('file',
    ...                open('report.xls', 'rb'),
    ...                filename='report.xls',
    ...                content_type='application/vnd.ms-excel')

    >>> yield from aiohttp.post(url, data=data)

If you pass a file object as data parameter, aiohttp will stream it to
the server automatically. Check :class:`~aiohttp.streams.StreamReader`
for supported format information.

.. seealso:: :ref:`aiohttp-multipart`


Streaming uploads
-----------------

:mod:`aiohttp` supports multiple types of streaming uploads, which allows you to
send large files without reading them into memory.

As a simple case, simply provide a file-like object for your body::

    >>> with open('massive-body', 'rb') as f:
    ...   yield from aiohttp.post('http://some.url/streamed', data=f)


Or you can provide an :ref:`coroutine<coroutine>` that yields bytes objects::

   >>> @asyncio.coroutine
   ... def my_coroutine():
   ...    chunk = yield from read_some_data_from_somewhere()
   ...    if not chunk:
   ...       return
   ...    yield chunk

.. note::

   It is not a standard :ref:`coroutine<coroutine>` as it yields values so it
   can not be used like ``yield from my_coroutine()``.
   :mod:`aiohttp` internally handles such coroutines.

Also it is possible to use a :class:`~aiohttp.streams.StreamReader`
object. Lets say we want to upload a file from another request and
calculate the file SHA1 hash::

   >>> def feed_stream(resp, stream):
   ...    h = hashlib.sha1()
   ...
   ...    with True:
   ...       chunk = yield from resp.content.readany()
   ...       if not chunk:
   ...          break
   ...       h.update(chunk)
   ...       s.feed_data(chunk)
   ...
   ...    return h.hexdigest()

   >>> resp = aiohttp.get('http://httpbin.org/post')
   >>> stream = StreamReader()
   >>> asyncio.async(aiohttp.post('http://httpbin.org/post', data=stream))

   >>> file_hash = yield from feed_stream(resp, stream)


Because the response content attribute is a
:class:`~aiohttp.streams.StreamReader`, you can chain get and post
requests together::

   >>> r = yield from aiohttp.request('get', 'http://python.org')
   >>> yield from aiohttp.post('http://httpbin.org/post',
   ...                         data=r.content)


.. _aiohttp-client-session:

Keep-Alive, connection pooling and cookie sharing
-------------------------------------------------

To share cookies between multiple requests you can create an
:class:`~aiohttp.client.ClientSession` object::

    >>> session = aiohttp.ClientSession()
    >>> yield from session.get(
    ...     'http://httpbin.org/cookies/set/my_cookie/my_value')
    >>> r = yield from session.get('http://httpbin.org/cookies')
    >>> json = yield from r.json()
    >>> json['cookies']['my_cookie']
    'my_value'

You also can set default headers for all session requests::

    >>> session = aiohttp.ClientSession(
    ...     headers={"Authorization": "Basic bG9naW46cGFzcw=="})
    >>> r = yield from s.get("http://httpbin.org/headers")
    >>> json = yield from r.json()
    >>> json['headers']['Authorization']
    'Basic bG9naW46cGFzcw=='

By default aiohttp does not use connection pooling. In other words
multiple calls to :func:`~aiohttp.client.request` will start a new
connection to host each.  :class:`~aiohttp.client.ClientSession`
object will do connection pooling for you.


Connectors
----------

To tweak or change *transport* layer of requests you can pass a custom
**Connector** to :func:`aiohttp.request` and family. For example::

    >>> conn = aiohttp.TCPConnector()
    >>> r = yield from aiohttp.get('http://python.org', connector=conn)

:class:`ClientSession` constructor also accepts *connector* instance::

    >>> session = aiohttp.ClientSession(connector=aiohttp.TCPConnector())


Limiting connection pool size
-----------------------------

To limit amount of simultaneously opened connection to the same
endpoint (``(host, port, is_ssl)`` triple) you can pass *limit*
parameter to **connector**::

    >>> conn = aiohttp.TCPConnector(limit=30)

The example limits amount of parallel connections to `30`.


SSL control for TCP sockets
---------------------------

:class:`aiohttp.connector.TCPConnector` constructor accepts mutually
exclusive *verify_ssl* and *ssl_context* params.

By default it uses strict checks for HTTPS protocol. Certification
checks can be relaxed by passing ``verify_ssl=False``::

  >>> conn = aiohttp.TCPConnector(verify_ssl=False)
  >>> session = aiohttp.ClientSession(connector=conn)
  >>> r = yield from session.get('https://example.com')


If you need to setup custom ssl parameters (use own certification
files for example) you can create a :class:`ssl.SSLContext` instance and
pass it into the connector::

  >>> sslcontext = ssl.create_default_context(cafile='/path/to/ca-bundle.crt')
  >>> conn = aiohttp.TCPConnector(ssl_context=sslcontext)
  >>> session = aiohttp.ClientSession(connector=conn)
  >>> r = yield from session.get('https://example.com')

You may also verify certificates via MD5, SHA1, or SHA256 fingerprint::

  >>> # Attempt to connect to https://www.python.org
  >>> # with a pin to a bogus certificate:
  >>> bad_md5 = b'\xa2\x06G\xad\xaa\xf5\xd8\\J\x99^by;\x06='
  >>> conn = aiohttp.TCPConnector(fingerprint=bad_md5)
  >>> session = aiohttp.ClientSession(connector=conn)
  >>> exc = None
  >>> try:
  ...     r = yield from session.get('https://www.python.org')
  ... except FingerprintMismatch as e:
  ...     exc = e
  >>> exc is not None
  True
  >>> exc.expected == bad_md5
  True
  >>> exc.got  # www.python.org cert's actual md5
  b'\xca;I\x9cuv\x8es\x138N$?\x15\xca\xcb'

Note that this is the fingerprint of the DER-encoded certificate.
If you have the certificate in PEM format, you can convert it to
DER with e.g. ``openssl x509 -in crt.pem -inform PEM -outform DER > crt.der``.

Tip: to convert from a hexadecimal digest to a binary byte-string, you can use
:attr:`binascii.unhexlify`::

  >>> md5_hex = 'ca3b499c75768e7313384e243f15cacb'
  >>> from binascii import unhexlify
  >>> unhexlify(md5_hex)
  b'\xca;I\x9cuv\x8es\x138N$?\x15\xca\xcb'

Unix domain sockets
-------------------

If your HTTP server uses UNIX domain sockets you can use
:class:`aiohttp.connector.UnixConnector`::

  >>> conn = aiohttp.UnixConnector(path='/path/to/socket')
  >>> r = yield from aiohttp.get('http://python.org', connector=conn)


Proxy support
-------------

aiohttp supports proxy. You have to use
:class:`aiohttp.connector.ProxyConnector`::

   >>> conn = aiohttp.ProxyConnector(proxy="http://some.proxy.com")
   >>> r = yield from aiohttp.get('http://python.org',
   ...                            connector=conn)

:class:`~aiohttp.connector.ProxyConnector` also supports proxy authorization::

   >>> conn = aiohttp.ProxyConnector(
   ...   proxy="http://some.proxy.com",
   ...   proxy_auth=aiohttp.BasicAuth('user', 'pass'))
   >>> r = yield from aiohttp.get('http://python.org',
   ...                            connector=conn)

Authentication credentials can be passed in proxy URL::

   >>> conn = aiohttp.ProxyConnector(
   ...     proxy="http://user:pass@some.proxy.com")
   >>> r = yield from aiohttp.get('http://python.org',
   ...                            connector=conn)


Response Status Codes
---------------------

We can check the response status code::

   >>> r = yield from aiohttp.get('http://httpbin.org/get')
   >>> r.status
   200


Response Headers
----------------

We can view the server's response headers using a Python dictionary::

    >>> r.headers
    {'ACCESS-CONTROL-ALLOW-ORIGIN': '*',
     'CONTENT-TYPE': 'application/json',
     'DATE': 'Tue, 15 Jul 2014 16:49:51 GMT',
     'SERVER': 'gunicorn/18.0',
     'CONTENT-LENGTH': '331',
     'CONNECTION': 'keep-alive'}

The dictionary is special, though: it's made just for HTTP headers. According to
`RFC 7230 <http://tools.ietf.org/html/rfc7230#section-3.2>`_, HTTP Header names
are case-insensitive.

So, we can access the headers using any capitalization we want::

    >>> r.headers['Content-Type']
    'application/json'

    >>> r.headers.get('content-type')
    'application/json'


Response Cookies
----------------

If a response contains some Cookies, you can quickly access them::

    >>> url = 'http://example.com/some/cookie/setting/url'
    >>> r = yield from aiohttp.get(url)

    >>> r.cookies['example_cookie_name']
    'example_cookie_value'

.. note::

   Response cookies contain only values, that were in ``Set-Cookie`` headers
   of the **last** request in redirection chain. To gather cookies between all
   redirection requests you can use :ref:`aiohttp.ClientSession
   <aiohttp-client-session>` object.


Timeouts
--------

You should use :func:`asyncio.wait_for()` coroutine if you want to limit
time to wait for a response from a server::

    >>> yield from asyncio.wait_for(aiohttp.get('http://github.com'),
    ...                             0.001)
    Traceback (most recent call last)\:
      File "<stdin>", line 1, in <module>
    asyncio.TimeoutError()


.. warning::

    *timeout* is not a time limit on the entire response download;
    rather, an exception is raised if the server has not issued a
    response for *timeout* seconds (more precisely, if no bytes have been
    received on the underlying socket for *timeout* seconds).


.. disqus::