Metadata-Version: 2.1
Name: pyzstd
Version: 0.12.5
Summary: Python bindings for Zstandard (zstd) compression algorithm, the interface is similar to Python's bz2/lzma module.
Home-page: https://github.com/animalize/pyzstd
Author: Ma Lin
Author-email: malincns@163.com
License: The 3-Clause BSD License
Keywords: zstandard zstd compression decompression compress decompress
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Topic :: System :: Archiving :: Compression
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.3
Description-Content-Type: text/x-rst

Introduction
------------

``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 interface is similar to Python's bz2/lzma module.

Includes zstd v1.4.5 source code.


Links
-----------

Documentation: https://pyzstd.readthedocs.io/en/latest/

GitHub: https://github.com/animalize/pyzstd


Release note
------------
**0.12.5  (Oct 12, 2020)**

No longer use `Argument Clinic <https://docs.python.org/3/howto/clinic.html>`_, now supports Python 3.3+.

**0.12.4  (Oct 7, 2020)**

It seems the API is stable.

**0.2.4  (Sep 2, 2020)**

The first version upload to PyPI.

Includes zstd v1.4.5 source code.

