Python bindings and tools for LZ4 compression, providing LZ4Frame compression/decompression utilities. Current version 1.3.1.2, released 2019-10-30. Last uploaded 2020-10-20. Low release cadence, effectively in maintenance mode.
pip install lz4toolsNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Basic compression and decompression using package-level functions and the LZ4Frame class. Ensure you have the data as bytes.
Use 'from lz4tools import LZ4Frame' instead of 'from lz4.frame import LZ4Frame'.
For new projects, prefer 'pip install lz4' and use 'from lz4.frame import LZ4Frame'.
Encode strings to bytes before compression: data.encode('utf-8').No dependency data recorded yet.