Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 456 Bytes

README.md

File metadata and controls

18 lines (11 loc) · 456 Bytes

pyfastlz-native

This is a native python3 implementation of the FastLZ algorithm (more info in Lempel-Ziv 77 algorithm).

Currently it only implements decompression.

Usage

import fastlz_native

comp_data = bytes(raw_data)
decompressed = fastlz_native.fastlz_decompress(comp_data)

Expected format

This implementation expects the decompressed size in bytes in the first uint32_t chunk.