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.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.0.tar.gz (439.8 kB view details)

Uploaded Source

Built Distributions

brotlicffi-1.0.9.0-pp37-pypy37_pp73-win32.whl (362.4 kB view details)

Uploaded PyPy Windows x86

brotlicffi-1.0.9.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl (360.7 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

brotlicffi-1.0.9.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (377.6 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

brotlicffi-1.0.9.0-pp36-pypy36_pp73-win32.whl (362.4 kB view details)

Uploaded PyPy Windows x86

brotlicffi-1.0.9.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl (360.7 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

brotlicffi-1.0.9.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (377.6 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded PyPy Windows x86

brotlicffi-1.0.9.0-pp27-pypy_73-manylinux2010_x86_64.whl (360.7 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

brotlicffi-1.0.9.0-pp27-pypy_73-macosx_10_9_x86_64.whl (377.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

brotlicffi-1.0.9.0-cp35-abi3-win_amd64.whl (397.8 kB view details)

Uploaded CPython 3.5+ Windows x86-64

brotlicffi-1.0.9.0-cp35-abi3-win32.whl (364.8 kB view details)

Uploaded CPython 3.5+ Windows x86

brotlicffi-1.0.9.0-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.0-cp35-abi3-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.5+ manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5+

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

Uploaded CPython 3.5+

brotlicffi-1.0.9.0-cp35-abi3-macosx_10_9_x86_64.whl (427.1 kB view details)

Uploaded CPython 3.5+ macOS 10.9+ x86-64

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

Uploaded CPython 2.7mu manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.0.tar.gz
  • Upload date:
  • Size: 439.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.0.tar.gz
Algorithm Hash digest
SHA256 76105da26ddcf0160f66659a3827b312cf957767b1c2bb22fe7c5b794bfcb72b
MD5 ad57eb6e4a6f8bbad99691b7a06de8f0
BLAKE2b-256 fe15f9a715fe8f98af03efe132a688ab81a2a0a7b4711ed8e5d58420c87f93d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.0-pp37-pypy37_pp73-win32.whl
  • Upload date:
  • Size: 362.4 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.0-pp37-pypy37_pp73-win32.whl
Algorithm Hash digest
SHA256 c5ed51431071b579f690c3d53bdf776725accaba4285a6d44ced0c18dba709a9
MD5 48aabec80ac26d277b38df5f3a11d904
BLAKE2b-256 46ea34e1d88c7eedfc3a14f3c039304d03eadb2d4ade825401c84cec96a65b48

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 360.7 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fa753fb98fa84601b0f9896f1d23742ac41d08b10495471e0069a64056eed49f
MD5 5994dc54ea0fbe20b78a28838f783aea
BLAKE2b-256 d1122de2e75e477906bb1581127785baced0c7ae98e092799877c39561842370

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for brotlicffi-1.0.9.0-pp37-pypy37_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5c43216f7b36b80decdb18050ff7b3897310bdcfc47f1a086e8749d7818e7ef0
MD5 7781f3df41bdc3fa21d3e182450cca57
BLAKE2b-256 282acb2fa906ee6973be5d3338b48840eab4047b2f5573d76b67e4eecb548e61

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.0-pp37-pypy37_pp73-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a862b29e38486b2697282cda6d4847a9a63e07ae91712c2ebbfc0413c559a1e7
MD5 241dd1d4c93c83ee09278483cb74e24d
BLAKE2b-256 39790854da69ee8af4629da08a60b81a3ae6a1aa998a0765442675d18956681d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.0-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 362.4 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.0-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 7c6f3f48bdea393289d6faad18ef9c561bcda76b9ac7be5bbe191e285ebde559
MD5 aa127e5f9b16761757318f56cd07160a
BLAKE2b-256 5a8e915ae6f2019a9bbc7d51d021f3e0149bee7479a9c144c142104ee179819b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 360.7 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4abe594845d886a03056645db3d2aad14036ff81e1785aa17ecd91c47411876e
MD5 65bbac23b49a8a2d7858324fd0caae0d
BLAKE2b-256 0656401a64cfc3e0843e467dc032bb086e50ceea16215cf7600db6e7ca273489

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for brotlicffi-1.0.9.0-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a7f8a05408b381a02c2442dc20b94d2fb0f681cd4fa18f3324399f35b49846eb
MD5 08618a7c52c17b34d48c3b4c88d8c33b
BLAKE2b-256 7a5a020298c1974a7e99b12c1ab869f0176cc66fcc3881c46c0423a9bb1895c0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.0-pp36-pypy36_pp73-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a3bbebedd9e62eaf229bf24b1861d4c38d5898a6e0192b1f310fba229acea778
MD5 c253574e080ed58ba2cd755d3405d24e
BLAKE2b-256 68419a7e9fd2a6d873f93d0076ee869e7d7747d925c523040148406b6ac25687

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.0-pp27-pypy_73-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.0-pp27-pypy_73-win32.whl
Algorithm Hash digest
SHA256 c174f777c7d98c484ecc43577b571dcc1b1bbd303d43beaf073f2a4d74c36b59
MD5 496161c3c816e9b380a0115ab5fa29f6
BLAKE2b-256 c2318078d70404937321f51c003e68f0c9ab89dfe3bf96670ac7addccead971b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.0-pp27-pypy_73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 360.7 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.0-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8628a52fffe4a85afb297ac3b4d10a7ee7160b372ad2d5ac8a214aebe3166c59
MD5 4e8a0c9342d3303afabbce5e41905523
BLAKE2b-256 77d6150ccf3207841cae886f9257a5b1d459d7e44edeaf02355891275c385c76

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.0-pp27-pypy_73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 360.7 kB
  • Tags: PyPy
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.0-pp27-pypy_73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0cfdf00a5d002f7f296f42b2bc5c2dd41293e7455133ffafd58e390845d01a57
MD5 4c0bf4d0c726bdfdfb05287cec6e5cb5
BLAKE2b-256 b64cb60997b2dfd27496210b18572ce4f83ee191a5d7326e164c819dabca1244

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.0-pp27-pypy_73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 377.5 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.0-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 35bdb54fc20849e7db501aba30e887b1424f0817903504bca2bf10ffe3365ab8
MD5 f67ff7cffa5d151d3acfd2ff2c78e98c
BLAKE2b-256 350fb1a61295d55e351ee6fbbcc56d100fa2ab4a4ffccf01eb71530646a164c8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.0-cp35-abi3-win_amd64.whl
  • Upload date:
  • Size: 397.8 kB
  • Tags: CPython 3.5+, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.0-cp35-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 bee7fe640426ad86d88c57925af9e8e33b467768613910c3b3442c5c4d0d928d
MD5 062301c6d126c43d877d02b686e72ed4
BLAKE2b-256 847156442c443b8cfdc681e385869ab3715abac34259b077b32f45821301075f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.0-cp35-abi3-win32.whl
  • Upload date:
  • Size: 364.8 kB
  • Tags: CPython 3.5+, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.0-cp35-abi3-win32.whl
Algorithm Hash digest
SHA256 d98fde92e437f056c38e5c0e0ff144576163f9e466919a594320b84947d5f346
MD5 2152a077daf22b91a26d1de7ba126bf7
BLAKE2b-256 f9aef0d3fd62dc825d8545390ebca53eed15d753f9c16b5b82f09cbd56620c50

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.0-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.0-cp35-abi3-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d7878c92087a0a5049e3feec1f2ae0cd0b6a1042ebd52a3435f023783696b587
MD5 28e68a5e80e59a9b42ffe93dee24a1ce
BLAKE2b-256 9543b54cba57865d7d1070ac40aad25b38a0937d775757479d1e9a36d4a67a8f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.0-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.0-cp35-abi3-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 463b2b556b55037875930de0ac530e35afd19e139787304704855777e1d6af43
MD5 8bfb8f4d22112cdc041cb052e168b1cb
BLAKE2b-256 5c967f4039faaa80cfbacf3b22ba2b0e13ad4baf2ed526e0d54d0585ea20e9a1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.0-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.0-cp35-abi3-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6d78821cadcb4b07f994769317b91e58204222dc9b730c6268326cba279274de
MD5 5ad8a4ae3137a365b55b04ceb619867e
BLAKE2b-256 0c574a1184dface8eff4fba78563e1d2a8db050cc63e0df2603a43d8e3256a30

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.0-cp35-abi3-manylinux1_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.5+
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.0-cp35-abi3-manylinux1_i686.whl
Algorithm Hash digest
SHA256 82ea7db1a06eefa4471ed287a83b8ed7e44d3c29d742c73339d5b696c2621c4e
MD5 06375b000a3ce17f6b63c5d4352ffd6e
BLAKE2b-256 9f333133ba413ab01dcade7ace7c2b5a7e724bf7d262f95bf6023d8ead0bd1bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.0-cp35-abi3-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 427.1 kB
  • Tags: CPython 3.5+, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.0-cp35-abi3-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 78bb69ccccf4573cb9475bdcd4e726e600fe1c6023ede21391723140b1245ffc
MD5 36368554fba14d65e56b483ab321592c
BLAKE2b-256 d5bcae1ed6e2706b6ed66fe6103826693523cdf64b1b4c7854b911d01e7ef958

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.0-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3c84c7e2545e3bf19db65f3394d9dee2b86c4e7d443ae423e3b9a03d0880d9e6
MD5 e33235301a924c812f5e54b268e13298
BLAKE2b-256 363d0e593f7e0d272a323557718ae964c795e5dffccecfe61a9bf69d568bc3c7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.0-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 93e7a5d38b334a5d755138dba5c58a7f017f059fa4e1c568a31835ca73dd3140
MD5 c2f473e30b571ff132425ba36033ecfe
BLAKE2b-256 06905ecd4026b15b5e23dc8d8c892b8ff4a9f3cbb609ac9e715b7f4e05701a30

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.0-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1a9031b736e6f4f77594060adb1f5547537839f524582f02c98add01c2d1079e
MD5 97330cbc46f5c07d48540c61fab10625
BLAKE2b-256 2d8a965cfaca7bd2d7130f7d79855c5b6351d9e219cb5333b51679a40633774a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.0-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f5425dd5b18f2c880aebf32ce4081d2417873f85945e5ad96ff4fbfeb4e890eb
MD5 a30faf94c405d12d6cbb153b95fc0a77
BLAKE2b-256 16e842dd6905c1946f2c439b13b381be1e844d87801b3c02f2f07a6673940d6f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.0-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d04b8f6f304434449563d3523884defa5134130107a5d9a2a2b52d971a473be0
MD5 082c27ac8a09d1257d3fa80e20d7eca3
BLAKE2b-256 f3d4e5f8b3a52925659baede568ba4e66d4ecfcd4ae1e912ec19fb1e2bbb5af9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.0-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 167e757be03942db3bed7f57a494dc09904d71a894b23ac5cfe0f455f0190035
MD5 4bcd42d0606d3ecacf314ea6ef00e909
BLAKE2b-256 cc51eed40cfd3495f7f52980eb17c3d044e8c3b00fb51bff49e7e2300bf5e958

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.0-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 221789b23fcfdd71104a777abe075fcafbd9a5c40a4b106ab339f7e2d5555634
MD5 b90d9d8e69a29c6c6be05edde735df3c
BLAKE2b-256 22bf42e76f24cefd1fa981af95b2902b1abd960ad43dcf1e5dc994d73b8ab0c4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.0-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 10c47185482c41e9633bce8be375248b4f6d95d2b6be7290b5a6071c7a45989b
MD5 0985d740dcbe5de3eefbf280b82a21ab
BLAKE2b-256 846288c2b4cd4240ae915f305fad7bc47a4eb6791a44d3c04062ce9a6c73a9d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.0-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9c711e4058c39bf86cbddb07f71d6bf226efde191b391ecf2a962eaedeaf04cb
MD5 b15fdb46dc7fe7a3c3e48995535ac2b9
BLAKE2b-256 700667e1f08343eb528c6c88805fb68767628c6c1ead25439b796d11ed56549b

See more details on using hashes here.

Supported by

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