Oodle/Kraken decompressor.
| Tests | |
|---|---|
| PyPI | |
| Activity | |
| QA | |
| Other |
kraken-decompressor can be installed from PyPI.
To install with pip:
$ python -m pip install kraken-decompressorkraken-decompressor provides a single function, decompress.
def decompress(src: bytes, dst_len) -> bytes: ...The function takes two arguments, the compressed data src (as bytes),
and the size of the decompressed data dst_len (as int).
The function returns the decompressed data as bytes.