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 30 31 32 33 34 35
|
<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][doc] | [📃 Changelog](./CHANGELOG.md)
</div>
---
The `pyzstd` module provides Python support for [Zstandard](http://www.zstd.net), using
an API style similar to the `bz2`, `lzma`, and `zlib` modules.
> [!WARNING]
>
> Zstandard is now natively supported in Python’s standard library via the
> [`compression.zstd` module][compression.zstd]. For older Python versions, use the
> [`backports.zstd` library][backports.zstd] as a fallback.
>
> We recommend new projects to use the standard library, and existing ones to consider
> migrating.
>
> See [`pyzstd`'s documentation][doc] for details and a migration guide.
[doc]: https://pyzstd.readthedocs.io/
[compression.zstd]: https://docs.python.org/3.14/library/compression.zstd.html
[backports.zstd]: https://github.com/Rogdham/backports.zstd
|