Hash :
d63e8f75
Author :
Date :
2017-08-04T10:02:56
Update API, and more (#581) Update API, and more: * remove "custom dictionary" support * c/encoder: fix #580: big-endian build * Java: reduce jar size * Java: speedup decoding * Java: add 32-bit CPU support * Java: make source code JS transpiler-ready
This directory contains the code for the Python brotli module,
bro.py tool, and roundtrip tests.
We provide a Makefile to simplify common development commands.
If you just want to install the latest release of the Python brotli
module, we recommend installing from PyPI:
$ pip install brotli
Alternatively, you may install directly from source by running the following command from this directory:
$ make install
For development, reinstalling the module with every change is time
consuming. Instead, we recommend using the setuptools
“development mode“ to make the module available while still being
able to edit the source files.
For convenience, you may run the following commands from this directory:
$ make # Deploy the module in "development mode"
$ make tests # Test the module
$ make clean # Remove all temporary files and build output
Brotli’s code follows the Google Python Style Guide. To automatically format your code, first install YAPF:
$ pip install yapf
Then, to format all files in the project, you can run:
$ make fix # Automatically format code
See the YAPF usage documentation for more information.