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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
Metadata-Version: 2.4
Name: pyzstd
Version: 0.19.1
Summary: Support for Zstandard (zstd) compression
Project-URL: Homepage, https://github.com/Rogdham/pyzstd
Project-URL: Documentation, https://pyzstd.readthedocs.io/
Project-URL: Source, https://github.com/Rogdham/pyzstd
Author-email: Ma Lin <malincns@163.com>, Rogdham <contact@rogdham.net>
Maintainer-email: Rogdham <contact@rogdham.net>
License-Expression: BSD-3-Clause
License-File: LICENSE
Keywords: compress,decompress,file,seek,seekable,tar,zst,zstandard,zstd
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: System :: Archiving :: Compression
Requires-Python: >=3.10
Requires-Dist: backports-zstd>=1.0.0; python_version < '3.14'
Requires-Dist: typing-extensions>=4.13.2; python_version < '3.13'
Description-Content-Type: text/markdown
<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.
>
> `pyzstd` internally uses `compression.zstd` since version 0.19.0.
>
> 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
|