Skip to main content

Zopfli module for python

Project description

Build Status

PYZOPFLI

cPython bindings for zopfli.

It requires Python 3.8 or greater.

USAGE

pyzopfli is a straight forward wrapper around zopfli’s ZlibCompress method.

from zopfli.zlib import compress
from zlib import decompress
s = 'Hello World'
print decompress(compress(s))

pyzopfli also wraps GzipCompress, but the API point does not try to mimic the gzip module.

from zopfli.gzip import compress
from StringIO import StringIO
from gzip import GzipFile
print GzipFile(fileobj=StringIO(compress("Hello World!"))).read()

Both zopfli.zlib.compress and zopfli.gzip.compress support the following keyword arguments. All values should be integers; boolean parmaters are treated as expected, 0 and >0 as false and true.

  • verbose dumps zopfli debugging data to stderr

  • numiterations Maximum amount of times to rerun forward and backward pass to optimize LZ77 compression cost. Good values: 10, 15 for small files, 5 for files over several MB in size or it will be too slow.

  • blocksplitting If true, splits the data in multiple deflate blocks with optimal choice for the block boundaries. Block splitting gives better compression. Default: true (1).

  • blocksplittinglast If true, chooses the optimal block split points only after doing the iterative LZ77 compression. If false, chooses the block split points first, then does iterative LZ77 on each individual block. Depending on the file, either first or last gives the best compression. Default: false (0).

  • blocksplittingmax Maximum amount of blocks to split into (0 for unlimited, but this can give extreme results that hurt compression on some files). Default value: 15.

TODO

  • Stop reading the entire file into memory and support streaming

  • Monkey patch zlib and gzip so code with an overly tight binding can be easily modified to use zopfli.

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

zopfli-0.2.3.post1.tar.gz (175.6 kB view details)

Uploaded Source

Built Distributions

zopfli-0.2.3.post1-pp310-pypy310_pp73-win_amd64.whl (99.4 kB view details)

Uploaded PyPy Windows x86-64

zopfli-0.2.3.post1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (126.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

zopfli-0.2.3.post1-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (130.1 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ i686 manylinux: glibc 2.17+ i686

zopfli-0.2.3.post1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (155.9 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

zopfli-0.2.3.post1-pp39-pypy39_pp73-win_amd64.whl (99.4 kB view details)

Uploaded PyPy Windows x86-64

zopfli-0.2.3.post1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (126.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

zopfli-0.2.3.post1-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (130.1 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ i686 manylinux: glibc 2.17+ i686

zopfli-0.2.3.post1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (155.9 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

zopfli-0.2.3.post1-pp38-pypy38_pp73-win_amd64.whl (99.4 kB view details)

Uploaded PyPy Windows x86-64

zopfli-0.2.3.post1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (150.8 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

zopfli-0.2.3.post1-cp313-cp313-win_amd64.whl (99.4 kB view details)

Uploaded CPython 3.13 Windows x86-64

zopfli-0.2.3.post1-cp313-cp313-win32.whl (82.7 kB view details)

Uploaded CPython 3.13 Windows x86

zopfli-0.2.3.post1-cp313-cp313-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

zopfli-0.2.3.post1-cp313-cp313-musllinux_1_2_i686.whl (1.9 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

zopfli-0.2.3.post1-cp313-cp313-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

zopfli-0.2.3.post1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (851.1 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

zopfli-0.2.3.post1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (826.6 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

zopfli-0.2.3.post1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (823.7 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.12+ i686 manylinux: glibc 2.17+ i686

zopfli-0.2.3.post1-cp313-cp313-macosx_10_13_x86_64.whl (163.0 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

zopfli-0.2.3.post1-cp313-cp313-macosx_10_13_universal2.whl (295.5 kB view details)

Uploaded CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64)

zopfli-0.2.3.post1-cp312-cp312-win_amd64.whl (99.4 kB view details)

Uploaded CPython 3.12 Windows x86-64

zopfli-0.2.3.post1-cp312-cp312-win32.whl (82.7 kB view details)

Uploaded CPython 3.12 Windows x86

zopfli-0.2.3.post1-cp312-cp312-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

zopfli-0.2.3.post1-cp312-cp312-musllinux_1_2_i686.whl (1.9 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

zopfli-0.2.3.post1-cp312-cp312-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

zopfli-0.2.3.post1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (851.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

zopfli-0.2.3.post1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (826.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

zopfli-0.2.3.post1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (823.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.12+ i686 manylinux: glibc 2.17+ i686

zopfli-0.2.3.post1-cp312-cp312-macosx_10_13_x86_64.whl (163.0 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

zopfli-0.2.3.post1-cp312-cp312-macosx_10_13_universal2.whl (295.5 kB view details)

Uploaded CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64)

zopfli-0.2.3.post1-cp311-cp311-win_amd64.whl (99.3 kB view details)

Uploaded CPython 3.11 Windows x86-64

zopfli-0.2.3.post1-cp311-cp311-win32.whl (82.6 kB view details)

Uploaded CPython 3.11 Windows x86

zopfli-0.2.3.post1-cp311-cp311-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

zopfli-0.2.3.post1-cp311-cp311-musllinux_1_2_i686.whl (1.9 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

zopfli-0.2.3.post1-cp311-cp311-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

zopfli-0.2.3.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (850.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

zopfli-0.2.3.post1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (826.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

zopfli-0.2.3.post1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (823.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.12+ i686 manylinux: glibc 2.17+ i686

zopfli-0.2.3.post1-cp311-cp311-macosx_10_9_x86_64.whl (163.9 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

zopfli-0.2.3.post1-cp311-cp311-macosx_10_9_universal2.whl (296.3 kB view details)

Uploaded CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)

zopfli-0.2.3.post1-cp310-cp310-win_amd64.whl (99.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

zopfli-0.2.3.post1-cp310-cp310-win32.whl (82.6 kB view details)

Uploaded CPython 3.10 Windows x86

zopfli-0.2.3.post1-cp310-cp310-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

zopfli-0.2.3.post1-cp310-cp310-musllinux_1_2_i686.whl (1.9 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

zopfli-0.2.3.post1-cp310-cp310-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

zopfli-0.2.3.post1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (825.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

zopfli-0.2.3.post1-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (849.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ x86-64

zopfli-0.2.3.post1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (790.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ i686

zopfli-0.2.3.post1-cp310-cp310-macosx_10_9_x86_64.whl (163.9 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

zopfli-0.2.3.post1-cp310-cp310-macosx_10_9_universal2.whl (296.3 kB view details)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)

zopfli-0.2.3.post1-cp39-cp39-win_amd64.whl (99.3 kB view details)

Uploaded CPython 3.9 Windows x86-64

zopfli-0.2.3.post1-cp39-cp39-win32.whl (82.6 kB view details)

Uploaded CPython 3.9 Windows x86

zopfli-0.2.3.post1-cp39-cp39-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

zopfli-0.2.3.post1-cp39-cp39-musllinux_1_2_i686.whl (1.9 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

zopfli-0.2.3.post1-cp39-cp39-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

zopfli-0.2.3.post1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (825.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

zopfli-0.2.3.post1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (704.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ x86-64

zopfli-0.2.3.post1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (654.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

zopfli-0.2.3.post1-cp39-cp39-macosx_10_9_x86_64.whl (163.9 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

zopfli-0.2.3.post1-cp39-cp39-macosx_10_9_universal2.whl (296.3 kB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

zopfli-0.2.3.post1-cp38-cp38-win_amd64.whl (99.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

zopfli-0.2.3.post1-cp38-cp38-win32.whl (82.6 kB view details)

Uploaded CPython 3.8 Windows x86

zopfli-0.2.3.post1-cp38-cp38-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

zopfli-0.2.3.post1-cp38-cp38-musllinux_1_2_i686.whl (1.9 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

zopfli-0.2.3.post1-cp38-cp38-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

zopfli-0.2.3.post1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (825.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

zopfli-0.2.3.post1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (704.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ x86-64

zopfli-0.2.3.post1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (655.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

zopfli-0.2.3.post1-cp38-cp38-macosx_10_9_x86_64.whl (163.9 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

zopfli-0.2.3.post1-cp38-cp38-macosx_10_9_universal2.whl (296.4 kB view details)

Uploaded CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file zopfli-0.2.3.post1.tar.gz.

File metadata

  • Download URL: zopfli-0.2.3.post1.tar.gz
  • Upload date:
  • Size: 175.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.20

File hashes

Hashes for zopfli-0.2.3.post1.tar.gz
Algorithm Hash digest
SHA256 96484dc0f48be1c5d7ae9f38ed1ce41e3675fd506b27c11a6607f14b49101e99
MD5 2c42e8d5918059b84a42c0d53c5a6852
BLAKE2b-256 5e7ca8f6696e694709e2abcbccd27d05ef761e9b6efae217e11d977471555b62

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 3654bfc927bc478b1c3f3ff5056ed7b20a1a37fa108ca503256d0a699c03bbb1
MD5 e422c68cce78eb821df55aac5f6515cb
BLAKE2b-256 7e6a2c1ae9972f2745c074938d6a610e71ed47c36f911220d592f1e403822084

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89899641d4de97dbad8e0cde690040d078b6aea04066dacaab98e0b5a23573f2
MD5 4ae6a0d5cf2382072cbd3fbbfbf5858d
BLAKE2b-256 a37d1e8c36825798269a9271ac4477b592622fddc2948772fd2fcaceb54a7178

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 48dba9251060289101343110ab47c0756f66f809bb4d1ddbb6d5c7e7752115c5
MD5 a3620fcde0d12351c701b1613c044ab0
BLAKE2b-256 61db9502c4256f126ccf0fc4686f1f59f2696cdaec079d7d57231bf120422ba6

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4c1226a7e2c7105ac31503a9bb97454743f55d88164d6d46bc138051b77f609b
MD5 8fda28ba57c3b7f92095ffcf7d134d93
BLAKE2b-256 da9262942d9b44b3d56e2d223924b759e2c2219f925da15a8acb103061e362ea

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 34a99592f3d9eb6f737616b5bd74b48a589fdb3cb59a01a50d636ea81d6af272
MD5 d9159e465bc4f9148a31ac9cce239038
BLAKE2b-256 c393b06e0b4a13c5e78d9cc3a7627b4133f72daf2dfa81b6d74f444220b01c62

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8fbe5bcf10d01aab3513550f284c09fef32f342b36f56bfae2120a9c4d12c130
MD5 fadb63ecfda7df2c77615bb31377ebff
BLAKE2b-256 f00ddf0fe119da7ac80a42ff8e9bb94701f5d7bb21067c38b20ee52d48e46d41

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 91a2327a4d7e77471fa4fbb26991c6de4a738c6fc6a33e09bb25f56a870a4b7b
MD5 18ccc6486899cd85cf0a5c7194216b71
BLAKE2b-256 737e324c6232a425c514785bd5df6976c5a906c295d1cd854072e3204d4fbaec

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1f990634fd5c5c8ced8edddd8bd45fab565123b4194d6841e01811292650acae
MD5 afe8769d09c90f67e1b000be0d5e3391
BLAKE2b-256 6a185cb5ef140def15a833861139b72d9f1afb888132e6b09cb2f40c88935843

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1d8cc06605519e82b16df090e17cb3990d1158861b2872c3117f1168777b81e4
MD5 b9ac9e0ba843d30cf77e423a3f00ea6c
BLAKE2b-256 1e87d0dae45684b9aa9914671326e28030aaa33e5b01de847187b27cb61301a1

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c4278d1873ce6e803e5d4f8d702fd3026bd67fca744aa98881324d1157ddf748
MD5 3bc14494d3d45c29d0835dfc3a711934
BLAKE2b-256 b75ff8a5451ee32054a1c54c47ff3e052bcf4f5d66808df9854931935ae8b56f

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a86eb88e06bd87e1fff31dac878965c26b0c26db59ddcf78bb0379a954b120de
MD5 70b142a0b8f691d82d4bd31479e38e7c
BLAKE2b-256 2fc649b27570923956d52d37363e8f5df3a31a61bd7719bb8718527a9df3ae5f

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 71390dbd3fbf6ebea9a5d85ffed8c26ee1453ee09248e9b88486e30e0397b775
MD5 a9fed2edd8a235f2b127ca9b80315aa7
BLAKE2b-256 cd352525f90c972d8aafc39784a8c00244eeee8e8221b26cbc576748ee9dc1cd

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2768c877f76c8a0e7519b1c86c93757f3c01492ddde55751e9988afb7eff64e1
MD5 31a87192ca41d87b9e34e1a71132b8b6
BLAKE2b-256 baa5817ac1ecc888723e91dc172e8c6eeab9f48a1e52285803b965084e11bbd5

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0aa5f90d6298bda02a95bc8dc8c3c19004d5a4e44bda00b67ca7431d857b4b54
MD5 7f6f1fdf4e7b1a70f274ba649bf50ace
BLAKE2b-256 d04ee542c508d20c3dfbef1b90fcf726f824f505e725747f777b0b7b7d1deb95

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b78008a69300d929ca2efeffec951b64a312e9a811e265ea4a907ab546d79fa6
MD5 eb711aceb873e6f6c7e82398eacdff9c
BLAKE2b-256 220071ad39277bbb88f9fd20fb786bd3ff2ea4025c53b31652a0da796fb546cd

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a53b18797cdef27e019db595d66c4b077325afe2fd62145953275f53d84ce40c
MD5 3b09da722d9969f406f6192da53dba1d
BLAKE2b-256 413146670fc0c7805d42bc89702440fa9b73491d68abbc39e28d687180755178

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6617fb10f9e4393b331941861d73afb119cd847e88e4974bdbe8068ceef3f73f
MD5 60d81d6755d2f296d17fc64355c77477
BLAKE2b-256 9e9189f07c8ea3c9bc64099b3461627b07a8384302235ee0f357eaa86f98f509

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5aad740b4d4fcbaaae4887823925166ffd062db3b248b3f432198fc287381d1a
MD5 5224485e47c5b89f3bdbf7661c44745e
BLAKE2b-256 3c5581d419739c2aab35e19b58bce5498dcb58e6446e5eb69f2d3c748b1c9151

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a1cf720896d2ce998bc8e051d4b4ce0d8bec007aab6243102e8e1d22a0b2fb3f
MD5 3958fb70b8764223c4f75a9dbcb330d8
BLAKE2b-256 0883b2564369fb98797a617fe2796097b1d719a4937234375757ad2a3febc04b

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 ecb7572df5372abce8073df078207d9d1749f20b8b136089916a4a0868d56051
MD5 43f10c5c8b4985bf6740de8b8136585a
BLAKE2b-256 2b240e552e2efce9a20625b56e9609d1e33c2966be33fc008681121ec267daec

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4e50ffac74842c1c1018b9b73875a0d0a877c066ab06bf7cccbaa84af97e754f
MD5 83f8f657a378b0b91e9e0c8ae1ff1b16
BLAKE2b-256 29e6c98912fd3a589d8a7316c408fd91519f72c237805c4400b753e3942fda0b

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7be5cc6732eb7b4df17305d8a7b293223f934a31783a874a01164703bc1be6cd
MD5 05e7771f6e83e0bab2399034b6be369b
BLAKE2b-256 ad89c869ac844351e285a6165e2da79b715b0619a122e3160d183805adf8ab45

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cd2c002f160502608dcc822ed2441a0f4509c52e86fcfd1a09e937278ed1ca14
MD5 c2a8b35a78089296a8eb578646a64047
BLAKE2b-256 747b94b920c33cc64255f59e3cfc77c829b5c6e60805d189baeada728854a342

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bfa1eb759e07d8b7aa7a310a2bc535e127ee70addf90dc8d4b946b593c3e51a8
MD5 85fb3f267868dcdb01e34ae79ae30bdc
BLAKE2b-256 390344f8f39950354d330fa798e4bab1ac8e38ec787d3fde25d5b9c7770065a2

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c1e0ed5d84ffa2d677cc9582fc01e61dab2e7ef8b8996e055f0a76167b1b94df
MD5 46e7beaed90e134093b0868af3abffb1
BLAKE2b-256 e1db1ef5353ab06f9f2fb0c25ed0cddf1418fe275cc2ee548bc4a29340c44fe1

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9ba214f4f45bec195ee8559651154d3ac2932470b9d91c5715fc29c013349f8c
MD5 d61f4fbc1291fd57b06f4c21bf8d7710
BLAKE2b-256 ed4d7f6820af119c4fec6efaf007bffee7bc9052f695853a711a951be7afd26b

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8d5ab297d660b75c159190ce6d73035502310e40fd35170aed7d1a1aea7ddd65
MD5 4c8a1c17dacce4d4dca28a3fe65bef44
BLAKE2b-256 ab8a3ab8a616d4655acf5cf63c40ca84e434289d7d95518a1a42d28b4a7228f8

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cac2b37ab21c2b36a10b685b1893ebd6b0f83ae26004838ac817680881576567
MD5 56ec9d10afb9492bf4cf18f9f88b1788
BLAKE2b-256 65570378eeeb5e3e1e83b1b0958616b2bf954f102ba5b0755b9747dafbd8cb72

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5fcfc0dc2761e4fcc15ad5d273b4d58c2e8e059d3214a7390d4d3c8e2aee644e
MD5 f71fad85c4ad5cdf2d751c1e012dbf26
BLAKE2b-256 93f024dd708f00ae0a925bc5c9edae858641c80f6a81a516810dc4d21688a930

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 3f0197b6aa6eb3086ae9e66d6dd86c4d502b6c68b0ec490496348ae8c05ecaef
MD5 c16a5012b1b38c3dd7a30536244f25e8
BLAKE2b-256 3fceb6441cc01881d06e0b5883f32c44e7cc9772e0d04e3e59277f59f80b9a19

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 81c341d9bb87a6dbbb0d45d6e272aca80c7c97b4b210f9b6e233bf8b87242f29
MD5 71df1a4030a8926a39c676b19ef41f21
BLAKE2b-256 e6cc07119cba00db12d7ef0472637b7d71a95f2c8e9a20ed460d759acd274887

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 75a26a2307b10745a83b660c404416e984ee6fca515ec7f0765f69af3ce08072
MD5 2851230226c89432ce47c6ad6b399299
BLAKE2b-256 9500042c0cdba957343d7a83e572fc5ffe62de03d57c43075c8cf920b8b542e6

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3a89277ed5f8c0fb2d0b46d669aa0633123aa7381f1f6118c12f15e0fb48f8ca
MD5 91d70634b6d452cbee1cd221a817c95d
BLAKE2b-256 87ad697521dac8b46f0e0d081a3da153687d7583f3a2cd5466af1ddb9928394f

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 716cdbfc57bfd3d3e31a58e6246e8190e6849b7dbb7c4ce39ef8bbf0edb8f6d5
MD5 02af7dedcf4c4c37277f3b3023f3bffb
BLAKE2b-256 92246a6018125e1cc6ee5880a0ae60456fdc8a2da43f2f14b487cf49439a3448

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 60db20f06c3d4c5934b16cfa62a2cc5c3f0686bffe0071ed7804d3c31ab1a04e
MD5 fc84418dea0089495895a6b24aa3f790
BLAKE2b-256 33f8f52ec5c713f3325c852f19af7c8e3f98109ddcd1ce400dc39005072a2fea

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e63d558847166543c2c9789e6f985400a520b7eacc4b99181668b2c3aeadd352
MD5 3b0c7f1c4bebb815fb02b639873dc10b
BLAKE2b-256 2f8b5ab8c4c6db2564a0c3369e584090c101ffad4f9d0a39396e0d3e80c98413

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 37d011e92f7b9622742c905fdbed9920a1d0361df84142807ea2a528419dea7f
MD5 c514fab236dc10a9856732225ffc79ce
BLAKE2b-256 5748217c7bd720553d9e68b96926c02820e8b6184ef6dbac937823abad85b154

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a82fc2dbebe6eb908b9c665e71496f8525c1bc4d2e3a7a7722ef2b128b6227c8
MD5 ce42881a6b5d3469de69930b235c8f18
BLAKE2b-256 39b714529a7ae608cedddb2f791cbc13a392a246e2e6d9c9b4b8bcda707d08d8

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 615a8ac9dda265e9cc38b2a76c3142e4a9f30fea4a79c85f670850783bc6feb4
MD5 86c9446b730c500f8365cdc18ef26b4d
BLAKE2b-256 f8dadf0f87a489d223f184d69e9e88c80c1314be43b2361acffefdc09659e00d

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 518f1f4ed35dd69ce06b552f84e6d081f07c552b4c661c5312d950a0b764a58a
MD5 726ad7f90fef6bf01a1bdb0c58c2cab1
BLAKE2b-256 926dc8224a8fc77c1dff6caaa2dc63794a40ea284c82ac20030fb2521092dca6

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0cc20b02a9531559945324c38302fd4ba763311632d0ec8a1a0aa9c10ea363e6
MD5 ff94bc148d59b70b80e13af28fcba8ff
BLAKE2b-256 2cf56b750c8326c00c46e486c180efb0f2d23cd0e43ecf8e0c9947586dda664a

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f815fcc2b2a457977724bad97fb4854022980f51ce7b136925e336b530545ae1
MD5 897e6e62684a83c339a988e3cce36f5c
BLAKE2b-256 a9c2f1ddc57f8458fae8c54df9acd079fbd3a7ebaa12d839576719262a942cba

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7cce242b5df12b2b172489daf19c32e5577dd2fac659eb4b17f6a6efb446fd5c
MD5 e2e83fe6786887e0a988de4d74845e8b
BLAKE2b-256 88d5dd458a9053129bc6cf6cd2554c595020f463ba7438f32313b70a697850f2

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cbe6df25807227519debd1a57ab236f5f6bad441500e85b13903e51f93a43214
MD5 c71042afb63cef8a3e9681a8a5e23d61
BLAKE2b-256 571504d1b212e8932acfb0ec3a513f13bfdc5cfb874ba2c23ee0771dffb1063d

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 39e576f93576c5c223b41d9c780bbb91fd6db4babf3223d2a4fe7bf568e2b5a8
MD5 7f1c1b34ca61467a91cdf8db6852610a
BLAKE2b-256 f05ceb1cb5a4e3c7becb5576944e225f3df05198c6d3ad20e4c762eb505c59b8

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6c2d2bc8129707e34c51f9352c4636ca313b52350bbb7e04637c46c1818a2a70
MD5 af8ed45b52e516cb29f06de7396165e5
BLAKE2b-256 e7a674f03eb4c0243bc418634ebdceb4715a28db8ab281c89cde1b7d2c243c13

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f7d69c1a7168ad0e9cb864e8663acb232986a0c9c9cb9801f56bf6214f53a54d
MD5 3c1abe858514e7284d03f6207a6a9de1
BLAKE2b-256 74b5720b8a6a0a103caee1c10deb52139ba25aa0b37263cd423521bc6c416ce2

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9f4a7ec2770e6af05f5a02733fd3900f30a9cd58e5d6d3727e14c5bcd6e7d587
MD5 956f790ba389dd4b3c9f062aee68119d
BLAKE2b-256 79b602dcb076ceb3120dc7a7e1cb197add5189c265ef9424b595430f19583dad

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 aa588b21044f8a74e423d8c8a4c7fc9988501878aacced793467010039c50734
MD5 35242fc54098e2fd01c41d096636261e
BLAKE2b-256 96a9b9bcac622a66ecfef22e2c735feefd3b9f31b8a45ca2ef8c1438604d2157

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e0137dd64a493ba6a4be37405cfd6febe650a98cc1e9dca8f6b8c63b1db11b41
MD5 5ddc2501f8ec64cc9c40bb995998d51c
BLAKE2b-256 955b7f21751e0da525a78a0269600c1d45dee565f9f0a9f875e1374b00778a82

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b3df42f52502438ee973042cc551877d24619fa1cd38ef7b7e9ac74200daca8b
MD5 94d15633cd4f67da82f1f5c7c5cca79b
BLAKE2b-256 bdc2fa6c4498d16c09e4700e0e92865b4d42ec66c089ea57d92757ad0ebfc556

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp39-cp39-win32.whl.

File metadata

  • Download URL: zopfli-0.2.3.post1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 82.6 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.20

File hashes

Hashes for zopfli-0.2.3.post1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 9a6aec38a989bad7ddd1ef53f1265699e49e294d08231b5313d61293f3cd6237
MD5 469055e40ad561ad838834b9c8ddfbf7
BLAKE2b-256 08a6e30077630b027e9ee84a765447f03c8b5c323a88da567fed0882e9fe4f09

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fc39f5c27f962ec8660d8d20c24762431131b5d8c672b44b0a54cf2b5bcde9b9
MD5 d4f02e12212738054dd879acdf7d8295
BLAKE2b-256 40b104262314c2c9a1f39f74b8a9d4ba4e31496041ce67e930e39fd5d1fbf798

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2345e713260a350bea0b01a816a469ea356bc2d63d009a0d777691ecbbcf7493
MD5 a6e6ce5b05e43adede2890ee2213b4fb
BLAKE2b-256 dac1fd0ebe0766854610f6d45679745af0220a33b4c478aa1333d48b060a108c

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bbe429fc50686bb2a2608a30843e36fbaa123462a5284f136c7d9e0145220bfd
MD5 ce632a1eaf0e72fbc6afcede590fee1e
BLAKE2b-256 a3b448a44ab8a9e80a9c17527397852a6e1f5cc7f1a7d8dcc9d40d6912874ce3

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a241a68581d34d67b40c425cce3d1fd211c092f99d9250947824ccba9f491949
MD5 8cfa54677bebd2e26ac03fc463b0be41
BLAKE2b-256 e861dff95be9ebbf5bdd963774f8e5117f957274a8d8e081c58028fb7d624400

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4915a41375bdee4db749ecd07d985a0486eb688a6619f713b7bf6fbfd145e960
MD5 f1b3e9ce075efff7f617813f54afbc85
BLAKE2b-256 b9e111ed92cf3043a2e89b4a0ffcdcf67084da0f84e7b3c927a862a1e2510546

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3657e416ffb8f31d9d3424af12122bb251befae109f2e271d87d825c92fc5b7b
MD5 18163f23da6b9e19a204723d7e96ad5b
BLAKE2b-256 91dbe3057bfdb21855e4db2821c39f67aaedcb39e8bf5c490985009acbaf3d5a

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f12000a6accdd4bf0a3fa6eaa1b1c7a7bc80af0a2edf3f89d770d3dcce1d0e22
MD5 cdedda04a2078e55dcdf5540407fc10a
BLAKE2b-256 2d9175e0b2a701a6fe816a4bcd9370a805e1f152c8a6b54269afa147b5085f77

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b05296e8bc88c92e2b21e0a9bae4740c1551ee613c1d93a51fd28a7a0b2b6fbb
MD5 15321979a6f3abc4693ec1363e0bce81
BLAKE2b-256 f9ccc3cc7e83396d3e864103a1ff0be68ee7033a4e50ac5c415df998d2134a7f

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3c163911f8bad94b3e1db0a572e7c28ba681a0c91d0002ea1e4fa9264c21ef17
MD5 6e428a1c48e44eae6bb448a246a0e511
BLAKE2b-256 d4f48230c23739433b8a4dacedd7edc1012df0fcc7e4dc555187c8acfa2405fd

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp38-cp38-win32.whl.

File metadata

  • Download URL: zopfli-0.2.3.post1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 82.6 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.20

File hashes

Hashes for zopfli-0.2.3.post1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 b9026a21b6d41eb0e2e63f5bc1242c3fcc43ecb770963cda99a4307863dac12e
MD5 4102e84b89b6c7336887a414660a938c
BLAKE2b-256 73fe8768104cf6fb90c0d8a74b581f7033a534e02101a0c5c9f4c8b8f8a5fce4

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 676919fba7311125244eb0c4393679ac5fe856e5864a15d122bd815205369fa0
MD5 1474e052ce7bd796061ae52e6dea6c53
BLAKE2b-256 dd25cc836bea8563ac2497f7e9f5eb804d4b5842e185a1af83fc2b19ab06e73d

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 95a260cafd56b8fffa679918937401c80bb38e1681c448b988022e4c3610965d
MD5 ca2043ae052f1ffcc9b1934be0be0d0b
BLAKE2b-256 e4a0cce4664c31276902cd52735ab3a529c5d96d05d36fa1f539bc1d0986a6ec

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6482db9876c68faac2d20a96b566ffbf65ddaadd97b222e4e73641f4f8722fc4
MD5 e416991651d14a8caae29c9330e277d0
BLAKE2b-256 c59d53c2deaaf54155f735da71abbb5cafa00c1f66ae793dfb1d8b07908a1db8

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5f272186e03ad55e7af09ab78055535c201b1a0bcc2944edb1768298d9c483a4
MD5 eb4a829e152e87539ee516924f092b02
BLAKE2b-256 a6a16a169e3aefa6a92afc53ec71eedc3ebaebce7c519d4611d89d61257b2b03

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 eb45a34f23da4f8bc712b6376ca5396914b0b7c09adbb001dad964eb7f3132f8
MD5 c05cf807cf1a4333798a9f152c3ac7ee
BLAKE2b-256 3becf9c1ab2b4b4c57a70e1f8687519580fcb5f26576c4a7a6e8fae44f84e4d1

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 29ea74e72ffa6e291b8c6f2504ce6c146b4fe990c724c1450eb8e4c27fd31431
MD5 46c473de5ac5950cf0787bb53571f72d
BLAKE2b-256 3a431751061a7e70eaa9b5efb88a80aa0aaf18493a467c8036e82b266bf35692

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b0ec13f352ea5ae0fc91f98a48540512eed0767d0ec4f7f3cb92d92797983d18
MD5 0c5d691491c8e35e16bee1d8313864fa
BLAKE2b-256 e077650ee17075ea488fb8ed004d20d079ababfdfc02ddd62162690d072d257c

See more details on using hashes here.

File details

Details for the file zopfli-0.2.3.post1-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for zopfli-0.2.3.post1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 3827170de28faf144992d3d4dcf8f3998fe3c8a6a6f4a08f1d42c2ec6119d2bb
MD5 a7d5910d196a89fa75a65de8123776c3
BLAKE2b-256 aad7fa32bb88c4a1c1382b06b0ebf026ce7fa6e0f365419ef6316a03ad217bf3

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