Skip to main content

Python CFFI bindings to the Brotli library

Project description

BrotliCFFI

Version Downloads CI Status

This library contains Python CFFI bindings for the reference Brotli encoder/decoder, available here. This allows Python software to use the Brotli compression algorithm directly from Python code.

Install from PyPI:

$ python -m pip install brotlicffi

To use it simply, try this:

import brotlicffi
data = brotlicffi.decompress(compressed_data)

More information can be found in the documentation.

Using BrotliCFFI in Projects

The API is 100% compatible with the Brotli Python C bindings. We recommend installing the C bindings on CPython and the CFFI bindings everywhere else (PyPy, etc)

Essentially you use requirements like this:

install_requires=[
    "brotli; platform_python_implementation == 'CPython'",
    "brotlicffi; platform_python_implementation != 'CPython'"
]

and then import the correct Brotli library like so:

try:
    import brotlicffi as brotli
except ImportError:
    import brotli

We provide an example project that shows how to use both libraries together to support Brotli with multiple Python implementations.

License

The source code of BrotliCFFI 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

BrotliCFFI/brotlipy was authored by Cory Benfield and is currently maintained by Seth Michael Larson.

Changelog

1.0.9.2 (2021-04-06)

  • Added manylinux_aarch64 wheels

1.0.9.1 (2021-01-27)

  • Avoid byte/string comparison warning in error message construction

1.0.9.0 (2021-01-20)

  • Updated to v1.0.9 of the Brotli library

  • Library version now follows Brotli version

  • Removed the dictionary parameter from compress and Compressor

  • NOTE: Python 2.7 wheels for Windows likely won’t work until google/brotli#848 is resolved

0.8.0 (2020-11-30)

  • Renamed the package on PyPI to brotlicffi, all further updates will be published to the new package. Using the brotlipy is deprecated.

  • Changed the importable namespace from brotli to brotlicffi to no longer conflict with the Brotli PyPI package.

  • Added process() method to Compressor and Decompressor.

  • Added is_finished() method to Decompressor.

0.7.0 (2017-05-30)

  • Update to v0.6.0 of the Brotli library.

0.6.0 (2016-09-08)

  • Resolved a bug where decompress() would return an empty bytestring instead of erroring if the provided bytestring was small enough.

  • Added the finish() method to the streaming decompressor.

0.5.1 (2016-08-17)

  • Update to v0.5.2 of the Brotli library.

  • Add new exception type (Error).

  • Add compatibility with C++ brotli library by aliasing Error to error.

  • Extra error checking of input parameters to the compressor.

0.5.0 (2016-08-16)

  • Update to v0.5.0 of the Brotli library.

  • Extend one-shot compression API to include all control parameters.

  • Added streaming/incremental compression API.

  • Added flags to control compression mode.

0.4.0 (2016-08-01)

Update to v0.4.0 of the Brotli library.

0.3.0 (2016-05-11)

Update to v0.3.0 of the Brotli library.

0.2.0 (2015-10-05)

Fix broken brotli.compress support on Windows.

0.1.3 (2015-10-05)

  • Added basic for brotli.compress through a C wrapper included in this library.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

brotlicffi-1.0.9.2.tar.gz (440.1 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

brotlicffi-1.0.9.2-pp37-pypy37_pp73-win32.whl (362.0 kB view details)

Uploaded PyPyWindows x86

brotlicffi-1.0.9.2-pp37-pypy37_pp73-manylinux2010_x86_64.whl (360.9 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

brotlicffi-1.0.9.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (377.7 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

brotlicffi-1.0.9.2-pp36-pypy36_pp73-win32.whl (362.0 kB view details)

Uploaded PyPyWindows x86

brotlicffi-1.0.9.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl (360.9 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

brotlicffi-1.0.9.2-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (377.7 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

brotlicffi-1.0.9.2-pp27-pypy_73-win32.whl (1.8 MB view details)

Uploaded PyPyWindows x86

brotlicffi-1.0.9.2-pp27-pypy_73-manylinux2010_x86_64.whl (360.9 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

brotlicffi-1.0.9.2-pp27-pypy_73-macosx_10_9_x86_64.whl (377.6 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

brotlicffi-1.0.9.2-cp35-abi3-win_amd64.whl (397.7 kB view details)

Uploaded CPython 3.5+Windows x86-64

brotlicffi-1.0.9.2-cp35-abi3-win32.whl (364.6 kB view details)

Uploaded CPython 3.5+Windows x86

brotlicffi-1.0.9.2-cp35-abi3-manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.5+

brotlicffi-1.0.9.2-cp35-abi3-manylinux2010_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.5+manylinux: glibc 2.12+ x86-64

brotlicffi-1.0.9.2-cp35-abi3-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.5+manylinux: glibc 2.12+ i686

brotlicffi-1.0.9.2-cp35-abi3-manylinux1_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.5+

brotlicffi-1.0.9.2-cp35-abi3-manylinux1_i686.whl (2.6 MB view details)

Uploaded CPython 3.5+

brotlicffi-1.0.9.2-cp35-abi3-macosx_10_9_x86_64.whl (427.2 kB view details)

Uploaded CPython 3.5+macOS 10.9+ x86-64

brotlicffi-1.0.9.2-cp27-cp27mu-manylinux2010_x86_64.whl (2.7 MB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

brotlicffi-1.0.9.2-cp27-cp27mu-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

brotlicffi-1.0.9.2-cp27-cp27mu-manylinux1_x86_64.whl (2.7 MB view details)

Uploaded CPython 2.7mu

brotlicffi-1.0.9.2-cp27-cp27mu-manylinux1_i686.whl (2.6 MB view details)

Uploaded CPython 2.7mu

brotlicffi-1.0.9.2-cp27-cp27m-manylinux2010_x86_64.whl (2.7 MB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

brotlicffi-1.0.9.2-cp27-cp27m-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

brotlicffi-1.0.9.2-cp27-cp27m-manylinux1_x86_64.whl (2.7 MB view details)

Uploaded CPython 2.7m

brotlicffi-1.0.9.2-cp27-cp27m-manylinux1_i686.whl (2.6 MB view details)

Uploaded CPython 2.7m

brotlicffi-1.0.9.2-cp27-cp27m-macosx_10_9_x86_64.whl (427.1 kB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

Details for the file brotlicffi-1.0.9.2.tar.gz.

File metadata

  • Download URL: brotlicffi-1.0.9.2.tar.gz
  • Upload date:
  • Size: 440.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for brotlicffi-1.0.9.2.tar.gz
Algorithm Hash digest
SHA256 0c248a68129d8fc6a217767406c731e498c3e19a7be05ea0a90c3c86637b7d96
MD5 9f5c35d3f8ce5ddceefacb309936f2ab
BLAKE2b-256 d3d86acbb65e350213ad6bd96180593fad0a269a3baa845c67fed21adee3959d

See more details on using hashes here.

File details

Details for the file brotlicffi-1.0.9.2-pp37-pypy37_pp73-win32.whl.

File metadata

  • Download URL: brotlicffi-1.0.9.2-pp37-pypy37_pp73-win32.whl
  • Upload date:
  • Size: 362.0 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for brotlicffi-1.0.9.2-pp37-pypy37_pp73-win32.whl
Algorithm Hash digest
SHA256 7e72978f4090a161885b114f87b784f538dcb77dafc6602592c1cf39ae8d243d
MD5 20d4f9ccbf0f7f4207b94704cc8d6b8b
BLAKE2b-256 70e45c835cdcf4633f06e9a515fb77a7514805d24a0f7c245a8b200a6a82694c

See more details on using hashes here.

File details

Details for the file brotlicffi-1.0.9.2-pp37-pypy37_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: brotlicffi-1.0.9.2-pp37-pypy37_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 360.9 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for brotlicffi-1.0.9.2-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9030cd5099252d16bfa4e22659c84a89c102e94f8e81d30764788b72e2d7cfb7
MD5 a7de1e44ead9cd43b24db53d3c2d7ff3
BLAKE2b-256 844b1111ba03295d7651ad5c017daa8b95625d984fe8f4d4d23541e11e6f4b51

See more details on using hashes here.

File details

Details for the file brotlicffi-1.0.9.2-pp37-pypy37_pp73-manylinux1_x86_64.whl.

File metadata

  • Download URL: brotlicffi-1.0.9.2-pp37-pypy37_pp73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 360.9 kB
  • Tags: PyPy
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for brotlicffi-1.0.9.2-pp37-pypy37_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 df78aa47741122b0d5463f1208b7bb18bc9706dee5152d9f56e0ead4865015cd
MD5 8cb1376fa7c19333db5d436d220d942f
BLAKE2b-256 c4aa10644b57d4434ddf1b21e8ca0712e23a48a9f7170521a6be7511c48d1210

See more details on using hashes here.

File details

Details for the file brotlicffi-1.0.9.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: brotlicffi-1.0.9.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 377.7 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for brotlicffi-1.0.9.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ba4a00263af40e875ec3d6c7f623cbf8c795b55705da18c64ec36b6bf0848bc5
MD5 7c2ba6b1d7bc739b6c78e745f8d0dfb6
BLAKE2b-256 294fdf827b27829e74dc83b99415c695fa343b0a0d147b28c5888995355a6a1c

See more details on using hashes here.

File details

Details for the file brotlicffi-1.0.9.2-pp36-pypy36_pp73-win32.whl.

File metadata

  • Download URL: brotlicffi-1.0.9.2-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 362.0 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for brotlicffi-1.0.9.2-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 916b790f967a18a595e61f218c252f83718ac91f24157d622cf0fa710cd26ab7
MD5 7ae07b6e344c82e5bfe083fb403799a8
BLAKE2b-256 cc179418f28b83c85c0108d8b1822359c22ab09f1ec54d3280d742e56645148c

See more details on using hashes here.

File details

Details for the file brotlicffi-1.0.9.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: brotlicffi-1.0.9.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 360.9 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for brotlicffi-1.0.9.2-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a73099858ee343e8801710a08be8d194f47715ff21e98d92a19ac461058f52d1
MD5 bdf80358440148dc8650e4a2ae5cde20
BLAKE2b-256 45259feb3fba2482b1252ade29889eaae31250e3b38ec8d5a343fad0964b9c60

See more details on using hashes here.

File details

Details for the file brotlicffi-1.0.9.2-pp36-pypy36_pp73-manylinux1_x86_64.whl.

File metadata

  • Download URL: brotlicffi-1.0.9.2-pp36-pypy36_pp73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 360.9 kB
  • Tags: PyPy
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for brotlicffi-1.0.9.2-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 408c810c599786fb806556ff17e844a903884e6370ca400bcec7fa286149f39c
MD5 ea757239bc0e4587392c60bf10bb50b4
BLAKE2b-256 72d3e9bb75eb7fc0fc8d8ad1977015a0f2176a38114fd6a113e588e5f20f49d9

See more details on using hashes here.

File details

Details for the file brotlicffi-1.0.9.2-pp36-pypy36_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: brotlicffi-1.0.9.2-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 377.7 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for brotlicffi-1.0.9.2-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a6208d82c3172eeeb3be83ed4efd5831552c7cd47576468e50fcf0fb23fcf97f
MD5 2b1e5fe42581ab6723f8e7cc6637d57b
BLAKE2b-256 3270364732f7021afbd6d4c393161c9a73b739d2c901f56e2d2791dbaf77cf6c

See more details on using hashes here.

File details

Details for the file brotlicffi-1.0.9.2-pp27-pypy_73-win32.whl.

File metadata

  • Download URL: brotlicffi-1.0.9.2-pp27-pypy_73-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for brotlicffi-1.0.9.2-pp27-pypy_73-win32.whl
Algorithm Hash digest
SHA256 feb942814285bdc5e97efc77a04e48283c17dfab9ea082d79c0a7b9e53ef1eab
MD5 fadd21c6f37c2687122304a2d16dd43f
BLAKE2b-256 115e81e26c5c881c73bce2a5fdffda900338d53c7c6d254766270d6534765b27

See more details on using hashes here.

File details

Details for the file brotlicffi-1.0.9.2-pp27-pypy_73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: brotlicffi-1.0.9.2-pp27-pypy_73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 360.9 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for brotlicffi-1.0.9.2-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1e27c43ef72a278f9739b12b2df80ee72048cd4cbe498f8bbe08aaaa67a5d5c8
MD5 c4e39187c1164051d7bab88164a48b83
BLAKE2b-256 b2a026d95a37f493655bfaaaff518d0513699cd6cfaac0bb9e5b48ca58308bb2

See more details on using hashes here.

File details

Details for the file brotlicffi-1.0.9.2-pp27-pypy_73-manylinux1_x86_64.whl.

File metadata

  • Download URL: brotlicffi-1.0.9.2-pp27-pypy_73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 360.9 kB
  • Tags: PyPy
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for brotlicffi-1.0.9.2-pp27-pypy_73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 75a46bc5ed2753e1648cc211dcb2c1ac66116038766822dc104023f67ff4dfd8
MD5 36c4306170f24c127187d9415f8440bb
BLAKE2b-256 70e0509189200df9e79a4ebcf13814a6219f561a7ebe281291de8033fa5f735b

See more details on using hashes here.

File details

Details for the file brotlicffi-1.0.9.2-pp27-pypy_73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: brotlicffi-1.0.9.2-pp27-pypy_73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 377.6 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for brotlicffi-1.0.9.2-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8e7221d8a084d32d15c7b58e0ce0573972375c5038423dbe83f217cfe512e680
MD5 2ecdbff793b3e27ae1a25a28e0b1d562
BLAKE2b-256 9796524fffb34b1ffd6d83f1333a4b455c4177c4477724c714265c5fe26a1d89

See more details on using hashes here.

File details

Details for the file brotlicffi-1.0.9.2-cp35-abi3-win_amd64.whl.

File metadata

  • Download URL: brotlicffi-1.0.9.2-cp35-abi3-win_amd64.whl
  • Upload date:
  • Size: 397.7 kB
  • Tags: CPython 3.5+, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for brotlicffi-1.0.9.2-cp35-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 2be4fb8a7cb482f226af686cd06d2a2cab164ccdf99e460f8e3a5ec9a5337da2
MD5 0ad47ab4f6bd891e7eb97023534f2d59
BLAKE2b-256 a2e30a3286fc737e64e0705f7a51e739cfb68fb4523dc17b0f4036602fddf071

See more details on using hashes here.

File details

Details for the file brotlicffi-1.0.9.2-cp35-abi3-win32.whl.

File metadata

  • Download URL: brotlicffi-1.0.9.2-cp35-abi3-win32.whl
  • Upload date:
  • Size: 364.6 kB
  • Tags: CPython 3.5+, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for brotlicffi-1.0.9.2-cp35-abi3-win32.whl
Algorithm Hash digest
SHA256 551305703d12a2dd1ae43d3dde35dee20b1cb49b5796279d4d34e2c6aec6be4d
MD5 03a7fcbca6cc6c60dd55a3621ac488a6
BLAKE2b-256 95720d6dad69bd9f05d44b52aa156ca843b7acc94be89f4eb9755330fbf067c9

See more details on using hashes here.

File details

Details for the file brotlicffi-1.0.9.2-cp35-abi3-manylinux2014_aarch64.whl.

File metadata

  • Download URL: brotlicffi-1.0.9.2-cp35-abi3-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.5+
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for brotlicffi-1.0.9.2-cp35-abi3-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 15e0db52c56056be6310fc116b3d7c6f34185594e261f23790b2fb6489998363
MD5 f43ee8c889b10405eb8ba2ae86a03b90
BLAKE2b-256 4d62129cbd5d987c0b44ab4c3bbdaf228e2c6317dba624a8f5eebff893f60f2d

See more details on using hashes here.

File details

Details for the file brotlicffi-1.0.9.2-cp35-abi3-manylinux2010_x86_64.whl.

File metadata

  • Download URL: brotlicffi-1.0.9.2-cp35-abi3-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.5+, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for brotlicffi-1.0.9.2-cp35-abi3-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 71061f8bc86335b652e442260c4367b782a92c6e295cf5a10eff84c7d19d8cf5
MD5 e02e0466ea9adde2c0e9ef9f157ce68f
BLAKE2b-256 8796e8c96e64086a7e19837b892f8c43835e3112c8c8d0aa1f9e646edea08c76

See more details on using hashes here.

File details

Details for the file brotlicffi-1.0.9.2-cp35-abi3-manylinux2010_i686.whl.

File metadata

  • Download URL: brotlicffi-1.0.9.2-cp35-abi3-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.5+, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for brotlicffi-1.0.9.2-cp35-abi3-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 21cd400d24b344c218d8e32b394849e31b7c15784667575dbda9f65c46a64b0a
MD5 2673e33a805fc640c974621e479b97ba
BLAKE2b-256 0a2e55e935269a3156348961f54cc3400a73ccfd6288c41310b0a1f8f0a97136

See more details on using hashes here.

File details

Details for the file brotlicffi-1.0.9.2-cp35-abi3-manylinux1_x86_64.whl.

File metadata

  • Download URL: brotlicffi-1.0.9.2-cp35-abi3-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.5+
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for brotlicffi-1.0.9.2-cp35-abi3-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 52c1c12dad6eb1d44213a0a76acf5f18f64653bd801300bef5e2f983405bdde5
MD5 fa9bf378e8b112f7bd1e0b0e322a416f
BLAKE2b-256 137848ce758f522911f69b9883e172eae2b57df2afb496d3dd1a41fc61567cb4

See more details on using hashes here.

File details

Details for the file brotlicffi-1.0.9.2-cp35-abi3-manylinux1_i686.whl.

File metadata

  • Download URL: brotlicffi-1.0.9.2-cp35-abi3-manylinux1_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.5+
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for brotlicffi-1.0.9.2-cp35-abi3-manylinux1_i686.whl
Algorithm Hash digest
SHA256 4454c3baedc277fd6e65f983e3eb8e77f4bc15060f69370a0201746e2edeca81
MD5 50220dde8bad58a295374c0542d19213
BLAKE2b-256 02b656a0e8a2d0ed4d6f48a9bd894efc1f55c1f16d2df9bd99178a13efa261d7

See more details on using hashes here.

File details

Details for the file brotlicffi-1.0.9.2-cp35-abi3-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: brotlicffi-1.0.9.2-cp35-abi3-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 427.2 kB
  • Tags: CPython 3.5+, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for brotlicffi-1.0.9.2-cp35-abi3-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 586f0ea3c2eed455d5f2330b9ab4a591514c8de0ee53d445645efcfbf053c69f
MD5 76ce852465713a382df76c07f72dcf0e
BLAKE2b-256 6630d879c442b00103a8ef0992867efdb6cfbf6f406dea7684cfc055a66030df

See more details on using hashes here.

File details

Details for the file brotlicffi-1.0.9.2-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: brotlicffi-1.0.9.2-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for brotlicffi-1.0.9.2-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9e70f3e20f317d70912b10dbec48b29114d3dbd0e9d88475cb328e6c086f0546
MD5 6178c180c4ae0a6f1647d7d98a180742
BLAKE2b-256 8801130599ed80ecd5d0bb2cb8abc123a769318b3ee98d37ae65ebcf3a2dce17

See more details on using hashes here.

File details

Details for the file brotlicffi-1.0.9.2-cp27-cp27mu-manylinux2010_i686.whl.

File metadata

  • Download URL: brotlicffi-1.0.9.2-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for brotlicffi-1.0.9.2-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 94d2810efc5723f1447b332223b197466190518a3eeca93b9f357efb5b22c6dc
MD5 3eb386a9875d43983cf356349ff618a1
BLAKE2b-256 a0222144db8b864432eb9d081464b6f1e0832161655d01d6cfe1042e233dd9c0

See more details on using hashes here.

File details

Details for the file brotlicffi-1.0.9.2-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: brotlicffi-1.0.9.2-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for brotlicffi-1.0.9.2-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 16a0c9392a1059e2e62839fbd037d2e7e03c8ae5da65e9746f582464f7fab1bb
MD5 49024ab07ac8f09bd42fbdc16a4d7a46
BLAKE2b-256 0ea3ca83d4d1eeb27a6f94b273a74330f7ef45664e90f00b638c0961cf11de6d

See more details on using hashes here.

File details

Details for the file brotlicffi-1.0.9.2-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: brotlicffi-1.0.9.2-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for brotlicffi-1.0.9.2-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7bb913d5bf3b4ce2ec59872711dc9faaff5f320c3c3827cada2d8a7b793a7753
MD5 bc5cddbf4530dda9aa198a71502d47ab
BLAKE2b-256 00ea844d9bba708ede0cfd6a0fdf68cecc7ffd4a18a3de6f33b5044cccc6ad1a

See more details on using hashes here.

File details

Details for the file brotlicffi-1.0.9.2-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: brotlicffi-1.0.9.2-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for brotlicffi-1.0.9.2-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9078432af4785f35ab3840587eed7fb131e3fc77eb2a739282b649b343c584dd
MD5 9a7fdc37b4f76c5ecce8bcfeef62e52c
BLAKE2b-256 78f7f9309dcf2bd3e8e12bf3afdc866e48aab927e78dd4ede98b14118df54493

See more details on using hashes here.

File details

Details for the file brotlicffi-1.0.9.2-cp27-cp27m-manylinux2010_i686.whl.

File metadata

  • Download URL: brotlicffi-1.0.9.2-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for brotlicffi-1.0.9.2-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 af8a1b7bcfccf9c41a3c8654994d6a81821fdfe4caddcfe5045bfda936546ca3
MD5 1a3fe7880d07d3d61259323f83696fcb
BLAKE2b-256 92565a0f0f8e1bd56dbaf5c88dd5434fa96bf7da6af5a59e84b0e57b22d7ec9c

See more details on using hashes here.

File details

Details for the file brotlicffi-1.0.9.2-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: brotlicffi-1.0.9.2-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for brotlicffi-1.0.9.2-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 137c4635edcdf593de5ce9d0daa596bf499591b16b8fca5fd72a490deb54b2ee
MD5 1004730ff027ee4ee3921666971c4e30
BLAKE2b-256 8805b20603976a6725b7a870d9c4356220885007d21403067bca3aa4c7caced4

See more details on using hashes here.

File details

Details for the file brotlicffi-1.0.9.2-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: brotlicffi-1.0.9.2-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for brotlicffi-1.0.9.2-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2e4629f7690ded66c8818715c6d4dd6a7ff6a4f10fad6186fe99850f781ce210
MD5 c02f7b2be29ac70eed0a8fff3c499a27
BLAKE2b-256 67fefce6748665d3638f8e7b0786bc3f1c89f3faae2177d2d2403f4ef2283ece

See more details on using hashes here.

File details

Details for the file brotlicffi-1.0.9.2-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: brotlicffi-1.0.9.2-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 427.1 kB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for brotlicffi-1.0.9.2-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 408ec4359f9763280d5c4e0ad29c51d1240b25fdd18719067e972163b4125b98
MD5 e6aed515e41617a67b1bf42ed3d68853
BLAKE2b-256 46e8f28f12aa9bedb93b5e2dde60a527fb18d7d57473d2dc0bfb2191afa3d044

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page