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
|
Use Cases
=========
Handling Streaming Responses
----------------------------
In addition to `receiving responses <https://twistedmatrix.com/documents/current/web/howto/client.html#receiving-responses>`_
with :meth:`IResponse.deliverBody`, treq provides a helper function
:py:func:`treq.collect` which takes a
``response`` and a single argument function which will be called with all new
data available from the response. Much like :meth:`IProtocol.dataReceived`,
:py:func:`treq.collect` knows nothing about the framing of your data and will
simply call your collector function with any data that is currently available.
Here is an example which simply a file object's write method to
:py:func:`treq.collect` to save the response body to a file.
.. literalinclude:: examples/download_file.py
:linenos:
:lines: 6-11
Full example: :download:`download_file.py <examples/download_file.py>`
URLs, URIs, and Hyperlinks
--------------------------
The *url* argument to :py:meth:`HTTPClient.request` accepts three URL representations:
- High-level: :class:`hyperlink.DecodedURL`
- Mid-level :class:`str` (``unicode`` on Python 2)
- Low-level: ASCII :class:`bytes` or :class:`hyperlink.URL`
The high-level :class:`~hyperlink.DecodedURL` form is useful when programatically generating URLs.
Here is an example that builds a URL that contains a ``&`` character, which is automatically escaped properly.
.. literalinclude:: examples/basic_url.py
:linenos:
:pyobject: main
Full example: :download:`basic_url.py <examples/basic_url.py>`
Query Parameters
----------------
:py:func:`treq.HTTPClient.request` supports a ``params`` keyword argument which will
be URL-encoded and added to the ``url`` argument in addition to any query
parameters that may already exist.
The ``params`` argument may be either a ``dict`` or a ``list`` of
``(key, value)`` tuples.
If it is a ``dict`` then the values in the dict may either be scalar values or a ``list`` or ``tuple`` thereof.
Scalar values means ``str``, ``bytes``, or anything else — even ``None`` — which will be coerced to ``str``.
Strings are UTF-8 encoded.
.. literalinclude:: examples/query_params.py
:linenos:
:lines: 7-37
Full example: :download:`query_params.py <examples/query_params.py>`
If you prefer a strictly-typed API, try :class:`hyperlink.DecodedURL`.
Use its :meth:`~hyperlink.URL.add` and :meth:`~hyperlink.URL.set` methods to add query parameters without risk of accidental type coercion.
JSON
----
:meth:`HTTPClient.request() <treq.client.HTTPClient.request>` supports a *json* keyword argument that gives a data structure to serialize as JSON (using :func:`json.dumps()`).
This also implies a ``Content-Type: application/json`` request header.
The *json* parameter is mutually-exclusive with *data*.
The :meth:`_Response.json()` method decodes a JSON response body.
It buffers the whole response and decodes it with :func:`json.loads()`.
.. literalinclude:: examples/json_post.py
:linenos:
:pyobject: main
Full example: :download:`json_post.py <examples/json_post.py>`
Auth
----
HTTP Basic authentication as specified in :rfc:`2617` is easily supported by
passing an ``auth`` keyword argument to any of the request functions.
The ``auth`` argument should be a tuple of the form ``('username', 'password')``.
.. literalinclude:: examples/basic_auth.py
:linenos:
:lines: 7-15
Full example: :download:`basic_auth.py <examples/basic_auth.py>`
Redirects
---------
treq handles redirects by default.
The following will print a 200 OK response.
.. literalinclude:: examples/redirects.py
:linenos:
:lines: 7-12
Full example: :download:`redirects.py <examples/redirects.py>`
You can easily disable redirects by simply passing `allow_redirects=False` to
any of the request methods.
.. literalinclude:: examples/disable_redirects.py
:linenos:
:lines: 7-12
Full example: :download:`disable_redirects.py <examples/disable_redirects.py>`
You can even access the complete history of treq response objects by calling
the :meth:`~treq.response._Response.history()` method on the response.
.. literalinclude:: examples/response_history.py
:linenos:
:lines: 7-15
Full example: :download:`response_history.py <examples/response_history.py>`
Cookies
-------
Cookies can be set by passing a ``dict`` or ``cookielib.CookieJar`` instance
via the ``cookies`` keyword argument. Later cookies set by the server can be
retrieved using the :py:meth:`~treq.response._Response.cookies()` method of the response.
The object returned by :py:meth:`~treq.response._Response.cookies()` supports the same key/value
access as `requests cookies <https://requests.readthedocs.io/en/latest/user/quickstart/#cookies>`_.
.. literalinclude:: examples/using_cookies.py
:linenos:
:lines: 7-20
Full example: :download:`using_cookies.py <examples/using_cookies.py>`
Customizing the Twisted Agent
-----------------------------
The main :py:mod:`treq` module has helper functions that automatically instantiate
an instance of :py:class:`treq.client.HTTPClient`. You can create an instance
of :py:class:`~treq.client.HTTPClient` directly in order to customize the
parameters used to initialize it.
Internally, the :py:class:`~treq.client.HTTPClient` wraps an instance of
:py:class:`twisted.web.client.Agent`. When you create an instance of
:py:class:`~treq.client.HTTPClient`, you must initialize it with an instance of
:py:class:`~twisted.web.client.Agent`. This allows you to customize its
behavior.
.. literalinclude:: examples/custom_agent.py
:linenos:
:lines: 6-19
Full example: :download:`custom_agent.py <examples/custom_agent.py>`
|