METADATA 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. Metadata-Version: 2.1
  2. Name: lz4
  3. Version: 2.2.1
  4. Summary: LZ4 Bindings for Python
  5. Home-page: https://github.com/python-lz4/python-lz4
  6. Author: Jonathan Underwood
  7. Author-email: jonathan.underwood@gmail.com
  8. License: UNKNOWN
  9. Platform: UNKNOWN
  10. Classifier: Development Status :: 5 - Production/Stable
  11. Classifier: License :: OSI Approved :: BSD License
  12. Classifier: Intended Audience :: Developers
  13. Classifier: Programming Language :: C
  14. Classifier: Programming Language :: Python
  15. Classifier: Programming Language :: Python :: 2.7
  16. Classifier: Programming Language :: Python :: 3.4
  17. Classifier: Programming Language :: Python :: 3.5
  18. Classifier: Programming Language :: Python :: 3.6
  19. Classifier: Programming Language :: Python :: 3.7
  20. Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
  21. Provides-Extra: tests
  22. Provides-Extra: flake8
  23. Provides-Extra: docs
  24. Provides-Extra: docs
  25. Requires-Dist: sphinx (>=1.6.0); extra == 'docs'
  26. Requires-Dist: sphinx-bootstrap-theme; extra == 'docs'
  27. Provides-Extra: flake8
  28. Requires-Dist: flake8; extra == 'flake8'
  29. Provides-Extra: tests
  30. Requires-Dist: pytest (!=3.3.0); extra == 'tests'
  31. Requires-Dist: psutil; extra == 'tests'
  32. Requires-Dist: pytest-cov; extra == 'tests'
  33. ==========
  34. python-lz4
  35. ==========
  36. Status
  37. ======
  38. .. image:: https://travis-ci.org/python-lz4/python-lz4.svg?branch=master
  39. :target: https://travis-ci.org/python-lz4/python-lz4
  40. :alt: Build Status
  41. .. image:: https://ci.appveyor.com/api/projects/status/r2qvw9mlfo63lklo/branch/master?svg=true
  42. :target: https://ci.appveyor.com/project/jonathanunderwood/python-lz4
  43. :alt: Build Status Windows
  44. .. image:: https://readthedocs.org/projects/python-lz4/badge/?version=stable
  45. :target: https://readthedocs.org/projects/python-lz4/
  46. :alt: Documentation
  47. .. image:: https://codecov.io/gh/python-lz4/python-lz4/branch/codecov/graph/badge.svg
  48. :target: https://codecov.io/gh/python-lz4/python-lz4
  49. :alt: CodeCov
  50. Introduction
  51. ============
  52. This package provides python bindings for the `LZ4 compression library
  53. <https://lz4.github.io/lz4/>`_.
  54. The bindings provided in this package cover the `frame format
  55. <https://github.com/lz4/lz4/blob/master/doc/lz4_Frame_format.md>`_ and the `block format
  56. <https://github.com/lz4/lz4/blob/dev/doc/lz4_Block_format.md>`_ specifications. The frame
  57. format bindings are the recommended ones to use, as this guarantees
  58. interoperability with other implementations and language bindings.
  59. The API provided by the frame format bindings follows that of the LZMA, zlib,
  60. gzip and bzip2 compression libraries which are provided with the Python standard
  61. library. As such, these LZ4 bindings should provide a drop-in alternative to the
  62. compression libraries shipped with Python. The package provides context managers
  63. and file handler support.
  64. The bindings drop the GIL when calling in to the underlying LZ4 library, and is
  65. thread safe. An extensive test suite is included.
  66. Documenation
  67. ============
  68. .. image:: https://readthedocs.org/projects/python-lz4/badge/?version=stable
  69. :target: https://readthedocs.org/projects/python-lz4/
  70. :alt: Documentation
  71. Full documentation is included with the project. The documentation is
  72. generated using Sphinx. Documentation is also hosted on readthedocs.
  73. :master: http://python-lz4.readthedocs.io/en/stable/
  74. :development: http://python-lz4.readthedocs.io/en/latest/
  75. Homepage
  76. ========
  77. The `project homepage <https://www.github.com/python-lz4/python-lz4>`_ is hosted
  78. on Github. Please report any issues you find using the `issue tracker
  79. <https://github.com/python-lz4/python-lz4/issues>`_.
  80. Licensing
  81. =========
  82. Code specific to this project is covered by the `BSD 3-Clause License
  83. <http://opensource.org/licenses/BSD-3-Clause>`_