pyzstd (0.16.2)
Published 2024-12-11 11:53:25 +01:00 by eofredj
Installation
pip install --index-url pyzstdAbout this package
Python bindings to Zstandard (zstd) compression library.
Pyzstd module provides classes and functions for compressing and decompressing data, using Facebook's Zstandard (or zstd as short name) algorithm.
The API style is similar to Python's bz2/lzma/zlib modules.
- Includes zstd v1.5.6 source code
- Can also dynamically link to zstd library provided by system, see this note.
- Has a CFFI implementation that can work with PyPy
- Support sub-interpreter on CPython 3.12+
ZstdFileclass has C language level performance- Supports Zstandard Seekable Format
- Has a command line interface:
python -m pyzstd --help
Requirements
Requires Python: >=3.5