module documentation

Handlers for Content-Encoding.

See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Encoding

Class ​Brotli​Decoder Handle 'brotli' decoding.
Class ​Byte​Chunker Handles returning byte content in fixed-size chunks.
Class ​Content​Decoder Undocumented
Class ​Deflate​Decoder Handle 'deflate' decoding.
Class ​GZip​Decoder Handle 'gzip' decoding.
Class ​Identity​Decoder Handle unencoded data.
Class ​Line​Decoder Handles incrementally reading lines from text.
Class ​Multi​Decoder Handle the case where multiple encodings have been applied.
Class ​Text​Chunker Handles returning text content in fixed-size chunks.
Class ​Text​Decoder Handles incrementally decoding bytes into text
Constant SUPPORTED​_DECODERS Undocumented
SUPPORTED_DECODERS =

Undocumented

Value
{'identity': IdentityDecoder,
 'gzip': GZipDecoder,
 'deflate': DeflateDecoder,
 'br': BrotliDecoder}