uproot.ZLIB
Defined in uproot.compression on line 97.
Inheritance order: |
---|
|
- class uproot.compression.ZLIB(level)
- Parameters:
level (int, 0-9) – Compression level: 0 is uncompressed, 1 is minimally compressed, and 9 is maximally compressed.
Represents the ZLIB compression algorithm.
Uproot uses
zlib
from the Python standard library.
compress
- ZLIB.compress(data)
from_code
Inherited from uproot.compression.Compression.
- classmethod ZLIB.from_code(code)
Constructs a uproot.compression.Compression from a raw
fCompress
integer.
from_code_pair
Inherited from uproot.compression.Compression.
- classmethod ZLIB.from_code_pair(algorithm, level)
Constructs a uproot.compression.Compression from a pair of integers representing
algorithm
andlevel
.
code
Inherited from uproot.compression.Compression.
- ZLIB.code
This uproot.compression.Compression as a raw
fCompress
integer.
code_pair
Inherited from uproot.compression.Compression.
- ZLIB.code_pair
This uproot.compression.Compression as a 2-tuple of integers representing algorithm and level.
level
Inherited from uproot.compression.Compression.
- ZLIB.level
0 is uncompressed, 1 is minimally compressed, and 9 is maximally compressed.
- Type:
The compression level
decompress
Inherited from uproot.compression._DecompressZLIB.
- ZLIB.decompress(data, uncompressed_bytes=None)