class Response(object_ref):
Known subclasses: scrapy.http.response.text.TextResponse
Undocumented
Method | __init__ |
Undocumented |
Method | __str__ |
Undocumented |
Method | _get_body |
Undocumented |
Method | _get_url |
Undocumented |
Method | _set_body |
Undocumented |
Method | _set_url |
Undocumented |
Method | copy |
Return a copy of this Response |
Method | css |
Shortcut method implemented only by responses whose content is text (subclasses of TextResponse). |
Method | follow |
No summary |
Method | follow_all |
New in version 2.0.
|
Method | replace |
Create a new Response with the same attributes except for those given new values. |
Method | urljoin |
Join this Response's url with a possible relative url to form an absolute interpretation of the latter. |
Method | xpath |
Shortcut method implemented only by responses whose content is text (subclasses of TextResponse). |
Class Variable | body |
Undocumented |
Class Variable | url |
Undocumented |
Instance Variable | _body |
Undocumented |
Instance Variable | _url |
Undocumented |
Instance Variable | certificate |
Undocumented |
Instance Variable | flags |
Undocumented |
Instance Variable | headers |
Undocumented |
Instance Variable | ip_address |
Undocumented |
Instance Variable | protocol |
Undocumented |
Instance Variable | request |
Undocumented |
Instance Variable | status |
Undocumented |
Property | cb_kwargs |
Undocumented |
Property | meta |
Undocumented |
Property | text |
For subclasses of TextResponse, this will return the body as str |
Inherited from object_ref
:
Method | __new__ |
Undocumented |
Class Variable | __slots__ |
Undocumented |
scrapy.http.response.text.TextResponse
Undocumented
scrapy.http.response.text.TextResponse
scrapy.http.response.text.TextResponse
Return a ~.Request
instance to follow a link url.
It accepts the same arguments as Request.__init__ method,
but url can be a relative URL or a scrapy.link.Link object,
not only an absolute URL.
~.TextResponse
provides a ~.TextResponse.follow
method which supports selectors in addition to absolute/relative URLs
and Link objects.
scrapy.http.response.text.TextResponse
Return an iterable of ~.Request
instances to follow all links
in urls. It accepts the same arguments as Request.__init__ method,
but elements of urls can be relative URLs or ~scrapy.link.Link
objects,
not only absolute URLs.
~.TextResponse
provides a ~.TextResponse.follow_all
method which supports selectors in addition to absolute/relative URLs
and Link objects.
scrapy.http.response.text.TextResponse
scrapy.http.response.text.TextResponse
scrapy.http.response.text.TextResponse
scrapy.http.response.text.TextResponse