METADATA 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. Metadata-Version: 2.1
  2. Name: zstandard
  3. Version: 0.22.0
  4. Summary: Zstandard bindings for Python
  5. Home-page: https://github.com/indygreg/python-zstandard
  6. Author: Gregory Szorc
  7. Author-email: gregory.szorc@gmail.com
  8. License: BSD
  9. Keywords: zstandard,zstd,compression
  10. Classifier: Development Status :: 5 - Production/Stable
  11. Classifier: Intended Audience :: Developers
  12. Classifier: License :: OSI Approved :: BSD License
  13. Classifier: Programming Language :: C
  14. Classifier: Programming Language :: Python :: 3.8
  15. Classifier: Programming Language :: Python :: 3.9
  16. Classifier: Programming Language :: Python :: 3.10
  17. Classifier: Programming Language :: Python :: 3.11
  18. Classifier: Programming Language :: Python :: 3.12
  19. Requires-Python: >=3.8
  20. License-File: LICENSE
  21. Requires-Dist: cffi >=1.11 ; platform_python_implementation == "PyPy"
  22. Provides-Extra: cffi
  23. Requires-Dist: cffi >=1.11 ; extra == 'cffi'
  24. ================
  25. python-zstandard
  26. ================
  27. | |ci-test| |ci-wheel| |ci-typing| |ci-sdist| |ci-anaconda| |ci-sphinx|
  28. This project provides Python bindings for interfacing with the
  29. `Zstandard <http://www.zstd.net>`_ compression library. A C extension
  30. and CFFI interface are provided.
  31. The primary goal of the project is to provide a rich interface to the
  32. underlying C API through a Pythonic interface while not sacrificing
  33. performance. This means exposing most of the features and flexibility
  34. of the C API while not sacrificing usability or safety that Python provides.
  35. The canonical home for this project is
  36. https://github.com/indygreg/python-zstandard.
  37. For usage documentation, see https://python-zstandard.readthedocs.org/.
  38. .. |ci-test| image:: https://github.com/indygreg/python-zstandard/workflows/.github/workflows/test.yml/badge.svg
  39. :target: https://github.com/indygreg/python-zstandard/blob/main/.github/workflows/test.yml
  40. .. |ci-wheel| image:: https://github.com/indygreg/python-zstandard/workflows/.github/workflows/wheel.yml/badge.svg
  41. :target: https://github.com/indygreg/python-zstandard/blob/main/.github/workflows/wheel.yml
  42. .. |ci-typing| image:: https://github.com/indygreg/python-zstandard/workflows/.github/workflows/typing.yml/badge.svg
  43. :target: https://github.com/indygreg/python-zstandard/blob/main/.github/workflows/typing.yml
  44. .. |ci-sdist| image:: https://github.com/indygreg/python-zstandard/workflows/.github/workflows/sdist.yml/badge.svg
  45. :target: https://github.com/indygreg/python-zstandard/blob/main/.github/workflows/sdist.yml
  46. .. |ci-anaconda| image:: https://github.com/indygreg/python-zstandard/workflows/.github/workflows/anaconda.yml/badge.svg
  47. :target: https://github.com/indygreg/python-zstandard/blob/main/.github/workflows/anaconda.yml
  48. .. |ci-sphinx| image:: https://github.com/indygreg/python-zstandard/workflows/.github/workflows/sphinx.yml/badge.svg
  49. :target: https://github.com/indygreg/python-zstandard/blob/main/.github/workflows/sphinx.yml