Merge pull request #2327 from bopace/http-header-docs

[MRG+1] Added documentation about accessing header values
This commit is contained in:
Mikhail Korobov 2016-10-20 09:05:14 +02:00 committed by GitHub
commit 871eec9827
1 changed files with 7 additions and 1 deletions

View File

@ -507,7 +507,13 @@ Response objects
.. attribute:: Response.headers
A dictionary-like object which contains the response headers.
A dictionary-like object which contains the response headers. Values can
be accessed using :meth:`get` to return the first header value with the
specified name or :meth:`getlist` to return all header values with the
specified name. For example, this call will give you all cookies in the
headers::
response.headers.getlist('Set-Cookie')
.. attribute:: Response.body