1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
<div align="center" size="15px">
# pyzstd
Python bindings to Zstandard (zstd) compression library
[](https://github.com/rogdham/pyzstd/actions?query=branch:master)
[](https://pypi.org/project/pyzstd/)
[](https://github.com/Rogdham/pyzstd/blob/master/LICENSE.txt)
---
[📖 Documentation](https://pyzstd.readthedocs.io/) | [📃 Changelog](./CHANGELOG.md)
</div>
---
Pyzstd module provides classes and functions for compressing and decompressing data, using Facebook's [Zstandard](http://www.zstd.net) (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](https://pyzstd.readthedocs.io/#build-pyzstd).
- Has a CFFI implementation that can work with PyPy
- Support sub-interpreter on CPython 3.12+
- `ZstdFile` class has C language level performance
- Supports [Zstandard Seekable Format](https://github.com/facebook/zstd/blob/dev/contrib/seekable_format/zstd_seekable_compression_format.md)
- Has a command line interface: `python -m pyzstd --help`
|