pyliblzfse provides Python bindings for the LZFSE reference implementation, offering compression and decompression using Apple's LZFSE algorithm. Version 0.4.1 is the latest release. The library is in maintenance mode with sparse updates.
pip install pyliblzfseVerified import paths — ran on the pinned version, not inferred.
Compress and decompress bytes using LZFSE. Both compress and decompress expect bytes input and return bytes.
Always encode strings to bytes before calling compress, e.g., b'text' or 'text'.encode()
Consider alternatives like pyLZFSE or using ctypes bindings for newer Python.
Do not assume compression ratio for small inputs; use with large data or benchmark.
No dependency data recorded yet.