Hash :
afb12727
Author :
Date :
2016-10-25T04:19:29
Python: Publicly expose the Compressor object in the Python API (#456) Progress on #191
This directory contains the code for the Python brotli module,
bro.py tool, and roundtrip tests.
To build the module, execute the following from the root project directory:
$ python setup.py build_ext
To test the module, execute the following from the root project directory:
$ python setup.py test
Brotli’s code follows the Google Python Style Guide. To automatically format your code, install YAPF:
$ pip install yapf
Then, either format a single file:
$ yapf --in-place FILE
Or, format all files in a directory:
$ yapf --in-place --recursive DIR
See the YAPF usage documentation for more information.