Repository URL to install this package:
|
Version:
0.7.0 ▾
|
brotlipy
/
README.rst
|
|---|
brotlipy
========
This library contains Python bindings for the reference Brotli encoder/decoder,
`available here`_. This allows Python software to use the Brotli compression
algorithm directly from Python code.
To use it simply, try this:
.. code-block:: python
import brotli
data = brotli.decompress(compressed_data)
More information can be found `in the documentation`_.
.. _available here: https://github.com/google/brotli
.. _in the documentation: https://brotlipy.readthedocs.org
License
-------
The source code of brotlipy is available under the MIT license. Brotli itself
is made available under the Version 2.0 of the Apache Software License. See the
LICENSE and libbrotli/LICENSE files for more information.
Authors
-------
brotlipy is maintained by Cory Benfield.