mirror of https://github.com/scrapy/scrapy.git
Added documentation about accessing header values
This commit is contained in:
parent
7e20725eb7
commit
bfe28ae707
|
|
@ -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 from the :class:`headers` object by 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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue