twisted.web.resource.EncodingResourceWrapper(proxyForInterface(IResource))
class documentationtwisted.web.resource
View Source
(View In Hierarchy)
Implements interfaces: twisted.web.resource._IEncodingResource
Wrap a IResource
,
potentially applying an encoding to the response body generated.
Note that the returned children resources won't be wrapped, so you have to explicitly wrap them if you want the encoding to be applied.
Present Since | 12.3 |
Instance Variable | encoders | A list of _IRequestEncoderFactory
returning _IRequestEncoder
that may transform the data passed to Request.write . The list
must be sorted in order of priority: the first encoder factory handling the
request will prevent the others from doing the same. (type: list .) |
Method | __init__ | Undocumented |
Method | getEncoder | Browser the list of encoders looking for one applicable encoder. |
_IRequestEncoderFactory
returning _IRequestEncoder
that may transform the data passed to Request.write
. The list
must be sorted in order of priority: the first encoder factory handling the
request will prevent the others from doing the same. (type: list
.)
Browser the list of encoders looking for one applicable encoder.