METADATA 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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: docs
  22. Provides-Extra: tests
  23. Provides-Extra: flake8
  24. Requires-Dist: future
  25. Provides-Extra: docs
  26. Requires-Dist: sphinx (>=1.6.0); extra == 'docs'
  27. Requires-Dist: sphinx-bootstrap-theme; extra == 'docs'
  28. Provides-Extra: flake8
  29. Requires-Dist: flake8; extra == 'flake8'
  30. Provides-Extra: tests
  31. Requires-Dist: pytest (!=3.3.0); extra == 'tests'
  32. Requires-Dist: psutil; extra == 'tests'
  33. Requires-Dist: pytest-cov; extra == 'tests'
  34. ==========
  35. python-lz4
  36. ==========
  37. Status
  38. ======
  39. .. image:: https://travis-ci.org/python-lz4/python-lz4.svg?branch=master
  40. :target: https://travis-ci.org/python-lz4/python-lz4
  41. :alt: Build Status
  42. .. image:: https://ci.appveyor.com/api/projects/status/r2qvw9mlfo63lklo/branch/master?svg=true
  43. :target: https://ci.appveyor.com/project/jonathanunderwood/python-lz4
  44. :alt: Build Status Windows
  45. .. image:: https://readthedocs.org/projects/python-lz4/badge/?version=stable
  46. :target: https://readthedocs.org/projects/python-lz4/
  47. :alt: Documentation
  48. .. image:: https://codecov.io/gh/python-lz4/python-lz4/branch/codecov/graph/badge.svg
  49. :target: https://codecov.io/gh/python-lz4/python-lz4
  50. :alt: CodeCov
  51. Introduction
  52. ============
  53. This package provides python bindings for the `LZ4 compression library
  54. <https://lz4.github.io/lz4/>`_.
  55. The bindings provided in this package cover the `frame format
  56. <https://github.com/lz4/lz4/blob/master/doc/lz4_Frame_format.md>`_ and the `block format
  57. <https://github.com/lz4/lz4/blob/dev/doc/lz4_Block_format.md>`_ specifications. The frame
  58. format bindings are the recommended ones to use, as this guarantees
  59. interoperability with other implementations and language bindings.
  60. The API provided by the frame format bindings follows that of the LZMA, zlib,
  61. gzip and bzip2 compression libraries which are provided with the Python standard
  62. library. As such, these LZ4 bindings should provide a drop-in alternative to the
  63. compression libraries shipped with Python. The package provides context managers
  64. and file handler support.
  65. The bindings drop the GIL when calling in to the underlying LZ4 library, and is
  66. thread safe. An extensive test suite is included.
  67. Documenation
  68. ============
  69. .. image:: https://readthedocs.org/projects/python-lz4/badge/?version=stable
  70. :target: https://readthedocs.org/projects/python-lz4/
  71. :alt: Documentation
  72. Full documentation is included with the project. The documentation is
  73. generated using Sphinx. Documentation is also hosted on readthedocs.
  74. :master: http://python-lz4.readthedocs.io/en/stable/
  75. :development: http://python-lz4.readthedocs.io/en/latest/
  76. Homepage
  77. ========
  78. The `project homepage <https://www.github.com/python-lz4/python-lz4>`_ is hosted
  79. on Github. Please report any issues you find using the `issue tracker
  80. <https://github.com/python-lz4/python-lz4/issues>`_.
  81. Licensing
  82. =========
  83. Code specific to this project is covered by the `BSD 3-Clause License
  84. <http://opensource.org/licenses/BSD-3-Clause>`_