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

Uploaded Source

Built Distributions

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

Uploaded PyPy Windows x86

brotlicffi-1.0.9.1-pp37-pypy37_pp73-manylinux2010_x86_64.whl (361.3 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

brotlicffi-1.0.9.1-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.1-pp36-pypy36_pp73-win32.whl (362.4 kB view details)

Uploaded PyPy Windows x86

brotlicffi-1.0.9.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl (361.3 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

brotlicffi-1.0.9.1-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.1-pp27-pypy_73-win32.whl (1.8 MB view details)

Uploaded PyPy Windows x86

brotlicffi-1.0.9.1-pp27-pypy_73-manylinux2010_x86_64.whl (361.2 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

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

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded CPython 3.5+ Windows x86-64

brotlicffi-1.0.9.1-cp35-abi3-win32.whl (364.9 kB view details)

Uploaded CPython 3.5+ Windows x86

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

Uploaded CPython 3.5+ manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5+

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

Uploaded CPython 3.5+

brotlicffi-1.0.9.1-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.1-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.1-cp27-cp27mu-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

brotlicffi-1.0.9.1-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.1-cp27-cp27m-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

brotlicffi-1.0.9.1-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.1.tar.gz.

File metadata

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

File hashes

Hashes for brotlicffi-1.0.9.1.tar.gz
Algorithm Hash digest
SHA256 f875e00212e706ec99945002eef9181ccdaada5eb20f15fe7089aa3a59e0d91b
MD5 cb28be22f67a8de8665ea9e9bb86848b
BLAKE2b-256 6a78c2cd0a4c333a8d7a394e7844094df3ce1f5851f675a0859dfdc53573e048

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.1-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/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.1-pp37-pypy37_pp73-win32.whl
Algorithm Hash digest
SHA256 bb82fef13f561e394358bf05c36bfab0eb3ae26162c3d2ec1f058161a2ff333f
MD5 25e195d811d7887ee58842d7e4bfd780
BLAKE2b-256 8eb4d9091c3c6b34186981844b51b2b65b80e34e227372cd6f6b27d71d9ddfc2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.1-pp37-pypy37_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 361.3 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/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.1-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4d8700ec2d4b8cdc221d745923825168e7d9db53bb8c8d6807a04bf21af57dd2
MD5 5b701d4c4fe01f383ff7a499a5bb7a1d
BLAKE2b-256 3bdb1ef3a33f439b26171ce0e55e8ddc4c9937b0fdb7ec52bddebdc4061c0e88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for brotlicffi-1.0.9.1-pp37-pypy37_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4af7fab4f0bafc2d4b5511f50db3bf91964c251789fdcfc9f4b68b3b8dfba7fd
MD5 6cef74fdc57bb50abb22377071112f8d
BLAKE2b-256 e2e5f2f3ba31fbcd7d443cac9da73ba110c530552ef3126ac8815eb19554ce10

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.1-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/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 028f4e5edecc622c08cb9913f85420c149578f321672159a61e704b9ab1b616a
MD5 aea6c2e1a3f075d723f32f1b272fb6c1
BLAKE2b-256 731d6c58748cd8a33d0b1235420f0bbe735d5cf7308d05d48c7fe896f7b568be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.1-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/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.1-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 2816a6e3ffeb104dcd36aee0781ee4fe4f8d1e19901506f9dabcf4a92f8302af
MD5 519ac893aecd04f152e50507334e2963
BLAKE2b-256 4072964fbe205eb4ca94518fdd134363dba6f7275e4d65c865fe8ed845615a3e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 361.3 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/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 50d756483a755ca731bdb44ec961c8b0791bb316131e0265042685f8e62a16ca
MD5 94771d7dd07512ef893304f371b8118f
BLAKE2b-256 7f5847b590df758736c0f7b21ff2de8965458d197976e65e0499cd95f8952d05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for brotlicffi-1.0.9.1-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7194f2d1caafa318946444e0629419956b6dde3f0c3d4e215cf1267be34854d6
MD5 4e54e606ab3fbe47ee8b053e49d96740
BLAKE2b-256 f5efe42a4e65f7ef31f5c669efa94e4863c1972519df4ec4f7759dfc300177e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.1-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/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d9e0c88b4581ea9671bc9b497c893ce1df7976148b6cb76b23dbab77747b12bd
MD5 6abad4b67119b4d04aae860070dac9e0
BLAKE2b-256 1533bd2d165f744c9bb3f2e5948e4595f517cd32050a08362deb6b792c0bf5a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.1-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/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.1-pp27-pypy_73-win32.whl
Algorithm Hash digest
SHA256 34ad81d2ec676f967e38fa0e67e8166ab85d8aed576d2deb9836df5004bebbdb
MD5 c2de4ed430162f39cc6b53bac0bc14ce
BLAKE2b-256 0a27f0cb2c71e6bc6648747349237b8999d3c8492970e58c9a3ecfd6c8d151b0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.1-pp27-pypy_73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 361.2 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/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.1-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ad9620fb8dc675bc862b3516ca7b00ce75b5e0850894bc1a1c79c07b7c7690a1
MD5 6a4cbe9c37fac97fe21cdf49ec0296d1
BLAKE2b-256 7e7aeb881748d2db9b80c6717a9e1a0dde349de1ee859108fd8cda00a4e216dc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for brotlicffi-1.0.9.1-pp27-pypy_73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cd3c0491fdc656d4b3a9fc74c13980c7f22455fab7709a228e7afeb4e3391806
MD5 b50eb865e62de086afdb2ac8c39c5167
BLAKE2b-256 091db64d883546bfd916b93d6a82b9c2ac63594544677e320e7a949803aa176a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for brotlicffi-1.0.9.1-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 127889134ac146c89c9c0f81049df1328d892a383b3fa448bd4a14048195f2ab
MD5 71f13066b3340476f7a012e066c8068f
BLAKE2b-256 b49bc0bc7437ee0287271fefe79701b8501e936b0df062ea5d20a8551abe9368

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.1-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/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.1-cp35-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 640c9c55473a2181e5ddb2e2ffe1800496847a23cde49198d6a9056559b5bf9e
MD5 5c47ffb7d3c85334cdff65510ca3833d
BLAKE2b-256 e9da9f20df4aab25b5b7091a1634fdacb70fd1d29ea7ebbd32c06b7f0c1a8c5d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.1-cp35-abi3-win32.whl
  • Upload date:
  • Size: 364.9 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/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.1-cp35-abi3-win32.whl
Algorithm Hash digest
SHA256 7f35a2855f345d5c0e7cdc54f5f345c56d32796931b74107945e1deaf9c2231f
MD5 c45c70c95e12d236d0879857ea75b9dc
BLAKE2b-256 fe287b2194618000389f946d5bb436d8d660eb59eb4a32e9e8572d58f20aae78

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.1-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/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.1-cp35-abi3-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ecf35c8e1e097eb880cbbbb0d7dcfe50fdc8b0f24e31c85852ee64efb9f56e85
MD5 410efb51fcebe0c90405f525edcb67ff
BLAKE2b-256 e2ea1b9da36abd5d090dbe7451654e05c128c1406b3115af5b73c3dcf322e011

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.1-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/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.1-cp35-abi3-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3a99f2119bcfc467a95e042b6b8b2a5dbf66e75efe58c8e8ee39926f88f3b6bc
MD5 37b0d13edfe16083cb37b0d5b09e4f49
BLAKE2b-256 745897544c8e25560be557dbd415416d190776de1ccbc6b3db5602d6d2520233

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.1-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/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.1-cp35-abi3-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f9200538814c382e645fe17566c9113ede1fe76aac6c5aefcf2c81c21b61fa38
MD5 36ed698add6ea54f262a00a1f4467a64
BLAKE2b-256 1cf933ebefa617b5a3bf8bd68325ba0f86f60aad7f3f6e4b1a04ca944b720e37

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.1-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/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.1-cp35-abi3-manylinux1_i686.whl
Algorithm Hash digest
SHA256 caf90fa25811c8601633dbf979d7924220a345239b0b150a82e61c76521a38ff
MD5 63db3af30d49ca61ced1ffd58204da39
BLAKE2b-256 5d6066a3a949e9bcca8b0e3ab0843a8dbf30f980a566a2fc6ed3de30f4b787d1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for brotlicffi-1.0.9.1-cp35-abi3-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 68b2a2032efbf97e28edc2064b73ddcc1c8744f61d0d7045f51ca0c8018f8572
MD5 c99c3b542cf08065ab3bed26a0751a2e
BLAKE2b-256 ba3451ea8ed739812fb150ffafe253e6174d4c94fd552a971adfeb553b508c91

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.1-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/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a4a46ebc9fcb497316f200bd651868d0e528c0d198c54a789950b3e5b4a65a94
MD5 5fb264a0d2fd8744aaed60a43d88c1ed
BLAKE2b-256 2dcfcc3f66a26b04cb7a997e67f15d0c6f29327a8741d920871250975fc0da7c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.1-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/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 31009ea94e75fa28982e1957ef2363eabb841a2a6495995e2d0dbc0ec56dbce3
MD5 83274e64b71650a5f361c002350db347
BLAKE2b-256 9e51be63ea9ac96d1233d5fd49c5ff562eed14b01529c4ed7aa0d2f73049381e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.1-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/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 dd81f749fdf910076b360b550ef798479d5ba4d7fc22746e6ce89c2c1a3c4099
MD5 f9591b31ca9a2528fe88481724506f0c
BLAKE2b-256 0519aea4a86dff21ebda20f82c508be949fb4d9617b6c84fd4f96bb6ed4fc4b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.1-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/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1d5d19c8c4c291d7b5e5115c04586117863e6647ddc221cd5094709fa1dcc95c
MD5 2f485f5949d4a8b797854034d31debd8
BLAKE2b-256 93af150c993643ba7b35022fbaeb862419e8734ea065add53ce5c36beb2d92d5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.1-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/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5e00773fff91e6d2f520b0d7233e63c023fea877f47509e05ffe4032a03f57ef
MD5 d32408b60e51104c4fdbe859c4eab928
BLAKE2b-256 70981bb95a5d7649a066eb488b7b9b595161b16302d7fe1b36b2826c198c4590

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.1-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/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 15268192b254253005ba144a7c2f408c1f3f5e2d2d98455d1a197f4d8f07d949
MD5 c32a5610a51c9c83bf3606927b822f38
BLAKE2b-256 e7453db97d58082868ce73c1c1750172987c2734597e70bf990d1cf4edf89ddf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.1-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/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d19bdde34363f96b74ca8dc459ff95864b8aa6bb284f31923ef3dcd4330a4332
MD5 de403d6d14d0087eec2c02a0ffad300c
BLAKE2b-256 55e265a9c6030e144f169e8c9433e2892802208cdebc1e4178b3071bc8c9f512

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.1-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/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c187eb07a880c1acaf2105e9513ec9d0ab6029f33fcccfbfbce61543fe839abc
MD5 25670fcdb16055a01ccd4c1f937b52c8
BLAKE2b-256 31bf8a093477ec98e7e1b4021b48b9a1eeef878d93221fa19cf05277ca3fd250

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brotlicffi-1.0.9.1-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/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for brotlicffi-1.0.9.1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 37e0e33241f0cd747ec348f139c4b48981c641eae05ba0e3d68ed21083a6e46c
MD5 f0486fdb130b9f1d10894e0185834209
BLAKE2b-256 1044036ee82a74d591b42908b21be9c02469b12f67b261af0d8409ddde13f272

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