File: PKG-INFO

package info (click to toggle)
python-lz4 3.1.3%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 552 kB
  • sloc: ansic: 3,088; python: 2,600; makefile: 147
file content (95 lines) | stat: -rw-r--r-- 3,955 bytes parent folder | download | duplicates (2)
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
Metadata-Version: 2.1
Name: lz4
Version: 3.1.3
Summary: LZ4 Bindings for Python
Home-page: https://github.com/python-lz4/python-lz4
Author: Jonathan Underwood
Author-email: jonathan.underwood@gmail.com
License: UNKNOWN
Description: ==========
        python-lz4
        ==========
        
        Status
        ======
        
        .. image:: https://travis-ci.org/python-lz4/python-lz4.svg?branch=master
           :target: https://travis-ci.org/python-lz4/python-lz4
           :alt: Build Status
        
        .. image:: https://ci.appveyor.com/api/projects/status/r2qvw9mlfo63lklo/branch/master?svg=true
           :target: https://ci.appveyor.com/project/jonathanunderwood/python-lz4
           :alt: Build Status Windows
        
        .. image:: https://readthedocs.org/projects/python-lz4/badge/?version=stable
           :target: https://readthedocs.org/projects/python-lz4/
           :alt: Documentation
        
        .. image:: https://codecov.io/gh/python-lz4/python-lz4/branch/codecov/graph/badge.svg
           :target: https://codecov.io/gh/python-lz4/python-lz4
           :alt: CodeCov
        
        
        Introduction
        ============
        This package provides python bindings for the `LZ4 compression library
        <https://lz4.github.io/lz4/>`_.
        
        The bindings provided in this package cover the `frame format
        <https://github.com/lz4/lz4/blob/master/doc/lz4_Frame_format.md>`_, the `block
        format <https://github.com/lz4/lz4/blob/dev/doc/lz4_Block_format.md>`_, and the
        `streaming format
        <https://github.com/lz4/lz4/blob/master/examples/streaming_api_basics.md>`_
        specifications. The frame format bindings are the recommended ones to use, as
        this guarantees interoperability with other implementations and language
        bindings.
        
        The API provided by the frame format bindings follows that of the LZMA, zlib,
        gzip and bzip2 compression libraries which are provided with the Python standard
        library. As such, these LZ4 bindings should provide a drop-in alternative to the
        compression libraries shipped with Python. The package provides context managers
        and file handler support.
        
        The bindings drop the GIL when calling in to the underlying LZ4 library, and is
        thread safe. An extensive test suite is included.
        
        Documentation
        =============
        
        .. image:: https://readthedocs.org/projects/python-lz4/badge/?version=stable
           :target: https://readthedocs.org/projects/python-lz4/
           :alt: Documentation
        
        Full documentation is included with the project. The documentation is
        generated using Sphinx. Documentation is also hosted on readthedocs.
        
        :master: http://python-lz4.readthedocs.io/en/stable/
        :development: http://python-lz4.readthedocs.io/en/latest/
        
        Homepage
        ========
        
        The `project homepage <https://www.github.com/python-lz4/python-lz4>`_ is hosted
        on Github. Please report any issues you find using the `issue tracker
        <https://github.com/python-lz4/python-lz4/issues>`_.
        
        Licensing
        =========
        Code specific to this project is covered by the `BSD 3-Clause License
        <http://opensource.org/licenses/BSD-3-Clause>`_
        
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: BSD License
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: C
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.5
Provides-Extra: tests
Provides-Extra: docs
Provides-Extra: flake8