Part of twisted.web.iweb View Source View In Hierarchy
Known implementations: twisted.web._newclient.Response
Present Since | 11.1 |
Attribute | version | A three-tuple describing the protocol and protocol version of the
response. The first element is of type str , the second and
third are of type int . For example, ('HTTP', 1,
1) . |
Attribute | code | The HTTP status code of this response, as a int . |
Attribute | phrase | The HTTP reason phrase of this response, as a str . |
Attribute | headers | The HTTP response Headers of
this response. |
Attribute | length | The int number of bytes expected to be in the body of this
response or UNKNOWN_LENGTH if the server did not indicate how
many bytes to expect. For HEAD responses, this will be 0; if the
response includes a Content-Length header, it will be available in
headers . |
Method | deliverBody | Register an IProtocol provider to receive the response
body. |
str
, the second and
third are of type int
. For example, ('HTTP', 1,
1)
.int
number of bytes expected to be in the body of this
response or UNKNOWN_LENGTH
if the server did not indicate how
many bytes to expect. For HEAD responses, this will be 0; if the
response includes a Content-Length header, it will be available in
headers
.Register an IProtocol
provider to receive the response
body.
The protocol will be connected to a transport which provides IPushProducer
.
The protocol's connectionLost
method will be called with:
reasons
attribute of the exception may provide
more specific indications as to why.