class documentation
class ZlibDecompressorWrapper(object):
Constructor: ZlibDecompressorWrapper(wbits, zdict)
A wrapper around zlib.decompressobj to provide additional attributes.
| Method | __init__ |
The default constructor. |
| Method | decompress |
Return a bytes object containing the decompressed version of the data. |
| Property | eof |
True if the end of the data stream has been reached. |
| Property | needs |
True if additional input is needed before more data can be decompressed. |
| Property | unused |
Data found after the end of the compressed stream. |
| Instance Variable | _buffer |
Undocumented |
| Instance Variable | _decompressor |
Undocumented |