Skip to main content

Zopfli module for python

Project description

Build Status

PYZOPFLI

cPython bindings for zopfli.

It requires Python 3.7 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.2.zip (205.3 kB view details)

Uploaded Source

Built Distributions

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

zopfli-0.2.2-pp39-pypy39_pp73-win_amd64.whl (97.6 kB view details)

Uploaded PyPyWindows x86-64

zopfli-0.2.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (126.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

zopfli-0.2.2-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (130.0 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686manylinux: glibc 2.17+ i686

zopfli-0.2.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (145.5 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

zopfli-0.2.2-pp38-pypy38_pp73-win_amd64.whl (97.6 kB view details)

Uploaded PyPyWindows x86-64

zopfli-0.2.2-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (126.7 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

zopfli-0.2.2-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (130.3 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686

zopfli-0.2.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (145.5 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

zopfli-0.2.2-pp37-pypy37_pp73-win_amd64.whl (97.6 kB view details)

Uploaded PyPyWindows x86-64

zopfli-0.2.2-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (126.7 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

zopfli-0.2.2-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (130.3 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686

zopfli-0.2.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (145.5 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

zopfli-0.2.2-cp311-cp311-win_amd64.whl (97.5 kB view details)

Uploaded CPython 3.11Windows x86-64

zopfli-0.2.2-cp311-cp311-win32.whl (80.9 kB view details)

Uploaded CPython 3.11Windows x86

zopfli-0.2.2-cp311-cp311-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

zopfli-0.2.2-cp311-cp311-musllinux_1_1_i686.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ i686

zopfli-0.2.2-cp311-cp311-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

zopfli-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (850.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

zopfli-0.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (826.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

zopfli-0.2.2-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (823.5 kB view details)

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

zopfli-0.2.2-cp311-cp311-macosx_10_9_x86_64.whl (161.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

zopfli-0.2.2-cp311-cp311-macosx_10_9_universal2.whl (295.2 kB view details)

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

zopfli-0.2.2-cp310-cp310-win_amd64.whl (97.5 kB view details)

Uploaded CPython 3.10Windows x86-64

zopfli-0.2.2-cp310-cp310-win32.whl (80.9 kB view details)

Uploaded CPython 3.10Windows x86

zopfli-0.2.2-cp310-cp310-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

zopfli-0.2.2-cp310-cp310-musllinux_1_1_i686.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

zopfli-0.2.2-cp310-cp310-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

zopfli-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (825.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

zopfli-0.2.2-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (848.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ x86-64

zopfli-0.2.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (790.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686

zopfli-0.2.2-cp310-cp310-macosx_10_9_x86_64.whl (161.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

zopfli-0.2.2-cp310-cp310-macosx_10_9_universal2.whl (295.2 kB view details)

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

zopfli-0.2.2-cp39-cp39-win_amd64.whl (97.5 kB view details)

Uploaded CPython 3.9Windows x86-64

zopfli-0.2.2-cp39-cp39-win32.whl (80.9 kB view details)

Uploaded CPython 3.9Windows x86

zopfli-0.2.2-cp39-cp39-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

zopfli-0.2.2-cp39-cp39-musllinux_1_1_i686.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

zopfli-0.2.2-cp39-cp39-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

zopfli-0.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (825.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

zopfli-0.2.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (703.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ x86-64

zopfli-0.2.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (654.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

zopfli-0.2.2-cp39-cp39-macosx_10_9_x86_64.whl (161.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

zopfli-0.2.2-cp39-cp39-macosx_10_9_universal2.whl (295.2 kB view details)

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

zopfli-0.2.2-cp38-cp38-win_amd64.whl (97.5 kB view details)

Uploaded CPython 3.8Windows x86-64

zopfli-0.2.2-cp38-cp38-win32.whl (80.9 kB view details)

Uploaded CPython 3.8Windows x86

zopfli-0.2.2-cp38-cp38-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

zopfli-0.2.2-cp38-cp38-musllinux_1_1_i686.whl (1.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

zopfli-0.2.2-cp38-cp38-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

zopfli-0.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (825.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

zopfli-0.2.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (704.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ x86-64

zopfli-0.2.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (654.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

zopfli-0.2.2-cp38-cp38-macosx_10_9_x86_64.whl (161.4 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

zopfli-0.2.2-cp38-cp38-macosx_10_9_universal2.whl (295.2 kB view details)

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

zopfli-0.2.2-cp37-cp37m-win_amd64.whl (97.5 kB view details)

Uploaded CPython 3.7mWindows x86-64

zopfli-0.2.2-cp37-cp37m-win32.whl (80.9 kB view details)

Uploaded CPython 3.7mWindows x86

zopfli-0.2.2-cp37-cp37m-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

zopfli-0.2.2-cp37-cp37m-musllinux_1_1_i686.whl (1.4 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

zopfli-0.2.2-cp37-cp37m-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

zopfli-0.2.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (825.8 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

zopfli-0.2.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (704.5 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.5+ x86-64

zopfli-0.2.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (655.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.5+ i686

zopfli-0.2.2-cp37-cp37m-macosx_10_9_x86_64.whl (161.3 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

Details for the file zopfli-0.2.2.zip.

File metadata

  • Download URL: zopfli-0.2.2.zip
  • Upload date:
  • Size: 205.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for zopfli-0.2.2.zip
Algorithm Hash digest
SHA256 2d49db7540d9991976af464ebc1b9ed12988c04d90691bcb51dc4a373a9e2afc
MD5 0c1e41e5403524e0180f3ed9aaa356ec
BLAKE2b-256 9aedd004d5737f9546167eecf0ecd995ee1a796703e512deb2f2ea26cdbe4b3e

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2ea855a740ee766c872cbf84abdcc1b6a51b5dbdeb6ace995f36c934b3846467
MD5 283ba10785b3bd6d0ba4a4351529ca33
BLAKE2b-256 fd616a19c6296fdb46f62d3e8fced1ce9c72c2693eb5a3443bc041627c31ac85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zopfli-0.2.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d5e81fed8ac2d71832177ab06385f032cc3a37eec76537d105b1018b7fef0ff
MD5 38f7fdb06f5141141acf581e2ea8ae23
BLAKE2b-256 88c15d5301939cd8e363bf3e06ed1426023a54df13c341fa3e88b0953af1b7e8

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-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.2-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2ce7cbe8f6fff013aa695d5d92ac2b1fd46fd012858109fdde9824759b566685
MD5 5dcd73196e0fe695e5e666d614257fd3
BLAKE2b-256 fd263ab3a5458516e736ad50c2d38ad3af039e7e61e52b185f696a4ae2364dcc

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8c1b316a5eed59a9a49a886aeeaf3b7233627a1013b10f230817870278e15789
MD5 0e9c2d9d48091aa5c08d61792f9f1eb8
BLAKE2b-256 9a33d7a9168fe747faa451fa845dd756b54a2b58e5d8980d0c9e4c757dd80fc4

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2e5b7874dfe228715569940561cdc0485ed8cbfd2c76eebc4e54719e0c9cc494
MD5 9bc99e0549c60974d9954fe580a24be3
BLAKE2b-256 6517280784fb8b94793291d8c6e299e63e9a66ef4effe879a75f61126055a3ea

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 537da300842f06470c036d6d7e7fc9e63713735ee0b96ee97a750d1ec0399639
MD5 e000e782d1b5af630d64f75de88811ee
BLAKE2b-256 164efc3ae24f79b1535ddc38def724b4ef907ef4e575c601707afe9c1c558ee0

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1360df0d423c897164a3344ed6635f7fd098cb4ce59c6d45b4275b93727d57f6
MD5 dbc5dc0f0b9052e60fbf2582f4af43d1
BLAKE2b-256 6d2ec0cb6147875993e416b6d653b18dfdaf1135810d9009bab50fc7572dac67

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ec845584fcdc10763d869b40b742fe0e2684adf3ca275ec997b9447ef5fe3ad9
MD5 307803ef15d61d281b0c552813362f3d
BLAKE2b-256 b0b3c4aa8364f63018f868ea2b6d7d340134338c270c1eec133f53f2a9778469

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4205bb3aea31f22cd52bd1a9c298944591bfd9b6f92ede0af99127750b27eb3b
MD5 76b41cf66149ea4806ebff1ef6420331
BLAKE2b-256 727c5319aa5f48a3b1a71524e4ef1a94488b5bfb101d780c84aba24405eacb70

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a85d500cfa06f127e441e90804556a3872ea329e065d2f0ee97922d03afc9885
MD5 430765472f2ff0bcd0ea96f4a82d21f7
BLAKE2b-256 00ce53a10d21a969b006a994e8792b40530f4bf9f2fabf0cff92595544fdfc40

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 71eafbe6ce975f77a5247bf44fdfdb78e846a76a3391de4d75cc68ea74542048
MD5 ef6b66060472f1b53c28857c3c622846
BLAKE2b-256 7951d5bd69ebd2664342335d7af8c1db0dc1c202676da086292abbcf543827a0

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 17694cfda43fb2af18b571bfc60426fb67d7701d75cc1f0e634ad0a19ffaebdd
MD5 fd045060143143f2b1cc883fca7aed30
BLAKE2b-256 04b9a09dde65c136b52950b30a58bb656245d1cbdfe1bbf838973fc7a7f54413

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: zopfli-0.2.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 97.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for zopfli-0.2.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 259f15d65e554b16a6086bfe96dd7bd175467eb3d024b9dbce41323b5861a285
MD5 a294540fb0f07e73b73d67abff5d0000
BLAKE2b-256 cae4c4cb8f9580b424e5a1da914a61e8e0b772c3bb0d242f4e374fba956ace12

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: zopfli-0.2.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 80.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for zopfli-0.2.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b5b2e2ac397a71772fbbdc5b31fa8257e46f2a1e718e5c17c08db3dac7c739e4
MD5 847182c70dcfe2ca7143dde7dd5bb271
BLAKE2b-256 a8e5016c37b93c7b40652d780bf6f057de15fbd2f4994a79afb87bb3c35d3cb8

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 898daa330577101aab03806231e9b29990ebaa34f275d9df2045d0551edd1e87
MD5 57bbe34188234a114bad3c48ae8e4280
BLAKE2b-256 1549e55b826b6f5c95e80fcf4e94f5b231e7a32c044d6fd9b9f93b8b982ffc80

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2bafc105065fae35bd96100a5901a7d816f1904eb732d94b6d46cf480ead581b
MD5 432ae9ea78e191fa6ef27f7ff033e99c
BLAKE2b-256 39d4d6652db44435c8d0548047ac069d6333e795e8c7f5114f0f7f5daca100ce

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9de02f057ed153c9f523e72a366b8f48e2634c9f867e7109232415efe11d36c2
MD5 e030effff5b2f3ceb44f4c561e245f5f
BLAKE2b-256 e1f237fb5ac67ff715b6106b3b78afc994cc9eb972227762640fc66fccb12ac6

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ed09efbcdc8bce5b5ff052ffd1edabdabd7a43e340ee63f8d5e81644dc50110f
MD5 02923a603a54bb8c1885e64cc482d3df
BLAKE2b-256 b534d0f89ebe522e5a99a084e0385bedf09b182d66f61f09037a61510fd487d6

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 69411d85ed25ea25f480410048b397abc4c98562ce3533ecc3ce65358acc52dd
MD5 5b5ae65d645fcdaa93cc82b8fa23a9b3
BLAKE2b-256 b59b6aaaf055623a2fe2f5e4641d1fd529aac48e2a0ed74b475f6e26146c5f76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zopfli-0.2.2-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ed2137d64470469c825713aac486aacc9e2c46e300b92cb39ae47f4024b86b2e
MD5 4c7df84342f45e2091a435fa267aa321
BLAKE2b-256 16b02b73126bc42c35a3e5c661d2d7b4e2fb6136879d53cf871b32faa98e6594

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bd661f0894a4e4d78ce4c07e2625b0fd17ae172040ce57c5e1c32316a16727c9
MD5 9c22a02ed30909f7b8cf4a26a9bd2f7c
BLAKE2b-256 04a494c054cc6ee05f98f0bbfb56cbcbccce62f871f70a50e773a6c9d5ad620e

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 fa589e4d2b54d95447cb79a6053050fc7218f61594085ca54672cb045ba0f7f8
MD5 d312918c92a33dc96bf71cbb9a5862f3
BLAKE2b-256 c98e6025ffbd92fbf9d8bae0078c990457cd9544c2c9dc8e011bc26d7a9e59b7

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: zopfli-0.2.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 97.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for zopfli-0.2.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 13487519e6ee8ed36c4a197d146d8ae60d418172d85342d3cdd28f38f905a705
MD5 14fec56f7055f32f534b94e7f158bcd1
BLAKE2b-256 9eea3e7c3451769aff772647597cefc66b14f0a00773f0d372cfd00e5b4ffc92

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: zopfli-0.2.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 80.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for zopfli-0.2.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e0014bd1b9703c9cdfa7f88bc793600aee5f858dd2f18105b49a70e66b9f1b1d
MD5 498045f35340d26c8167feb63a5dae3d
BLAKE2b-256 8ffbc1b3be3bdac08ef246914ce0f4b4dc51fe4241fc7426808c9cf7bd1e8e69

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8c2e6d0618e1ffc27a1eaf66662f96e0bc8a4c1926fc139a0f544b93a1e1b451
MD5 5e05e2adc92f696d66d81aac895bc9a8
BLAKE2b-256 22828ed7c1f357891bc38267b4ae24a006f6ea4677cf26353156b21b09a8576a

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 01e82e6e31cfcb2eb7e3d6d72d0a498d150e3c3112cae3b5ab88ca3efedbc162
MD5 d964378c44d274be3e841653f41a7c15
BLAKE2b-256 1d7d23ba50f06a841de2c40b5a6c58052ad9a122edefa2cddff9715aa91a4c30

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 20b02b5c9f1cfbcfc154e54981d1b9f9581ca1f54ece39c6aed52f7166a6f081
MD5 306f3bdbce397bf320a8b9c71a0ccfd6
BLAKE2b-256 686f3f68c40cdfdd2c6b54e19f04c697f8cfed6724fb2f6ca4459efd7604ae5b

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 02a0c37826c0b28454865fdf664d54627fe8d90fac6f7325b5215719e8be09ca
MD5 f48f243bc9a234543c2bc0464b5b2d42
BLAKE2b-256 7c6d707be0a5db2f54a2ddbb867c8da9da0a01932913912982213112418f214b

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a712fdc3dab61037fab549ff72539b7968ffda567e5460aa2518e40a13b4dd38
MD5 0ca2308d0e302131c8876d748a43a464
BLAKE2b-256 20f77b490c006deba67b0aa0265c0e645169c0c57b7ba90924e1a8fd4f5c0c9a

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 bd7b174fef2366723f57d16f3e8d157f9cbb53b1c555e2a1f99b6290de94ca28
MD5 ad3135a4b8f48c5cf4cd96dc847bf570
BLAKE2b-256 574ea4130bc738c6f4d156a428c16a3f5e330675bf8310c65c3b3ee50f158507

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 093a58fdf1e592f01233fc16900ceb69f27f19b347deb49544df96d912664f6d
MD5 0fd4f7c206e41a3741c7c8186fbe65d0
BLAKE2b-256 88c2bceac6c3cb8d8deb02b4ca93a7128dd57889684380eeec4e7cec8cf34401

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e340851bbdea91408e6713748b4082c2e464a80eef9f9a69ff5a20e5e008cace
MD5 ed1d80b614cdcd8bab5df01750fa9118
BLAKE2b-256 a509527c71c9b1937989e414700183369a5b1c6f4dcf386589b7d72c3848028c

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: zopfli-0.2.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 97.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for zopfli-0.2.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1e3aefca003cbb41a6dcdd61f920c807eea99d0196aff488f02275c3b3c400a9
MD5 096a70b8fd3efa94115d2c59c3de7979
BLAKE2b-256 037a142e5f9b1bdb6883b63065ab64b7dc1f53430f5f0c4c26b4f45e26403d29

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: zopfli-0.2.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 80.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for zopfli-0.2.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4b471e3f58bd7b77cfc7a29b28a10c094ea4cd9ee14c54fbc4f1150680aac68c
MD5 a0ccef2aabf84c5bb4bed1902b395afc
BLAKE2b-256 7345fe96f080b78329716253e90bd4142e52a7bc9035f01cec1fa72532f64f06

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8563e639534201a14c109c54965f8a71574d8cf525a0a521d310e044d81fece9
MD5 e1012ef91f1262e7ef5df58c04dace28
BLAKE2b-256 f6c96973c7c85cd6ed832e61ee1237a00a74871fd3b254ced90b5dbc0bc4d7f2

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4cbc6192bf24425c757281c7c864012e51d29095771f805ea3040702c10c3d7a
MD5 fef739d7880bf0d0e1b599337f0eecc4
BLAKE2b-256 edcdb564114464e45714690eac08a34cf81d6800a5dc2dc9a2bc431513d01676

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3df7ae869dcb8e0bb3292e6ab041d16323af37d87c8dca1dde7b2fe5cb6b7cf7
MD5 641a4229ec05ff1a3c1ca75964d713f1
BLAKE2b-256 02bcf0ac0f9a22f0d7d888d5cdd27bfb8798677edb4dfde49242d5866975ca07

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e1689ced6f6ebf674281d85c143529232aa039c4e8d814bf3b425f1793bfdeb4
MD5 1a4dd317b66ff78ea9ba8c5354419e0a
BLAKE2b-256 b575379fdfb5f7f62de789c80fb435388d862466bd54b785c187f937bd2251f2

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 33c876d311c5edc700ccf75a22d03dcda1efa85b43f733913a99b5f3d1eb4ea7
MD5 ce4c887bafe01adbed3aec6360b8f4e7
BLAKE2b-256 1af4f9cd6512c75aa62a9ff051a9ad73a0dc1b786c5510e841615faa49b90ee5

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4fcc34fd420ec5750f9981db43ee9a4f2e2bfabdc52128b243fca1fd9b99e13d
MD5 b0b0511d8bb570e44785338777f790b0
BLAKE2b-256 c2111526a5e00ebb938ea6d53e23405d26357d48310d3c8596f4260ee4ace5ba

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a989893b20381be266a2385f4a1b77316e0df4258ee048bb190c2e426e39cbc8
MD5 be021c261d127a64e5f88a533ad35c28
BLAKE2b-256 834a33620653961f576cb8142b56b352eb6efb1e2cc44e3f87918cf98b45d897

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 db004eb8ee7aab9c86647b92e1e570edb6fec9bd384a7a4f24e1f6529db34ac3
MD5 ce587de4aa6a51d6bf067e4561515834
BLAKE2b-256 73f47b5c04a009c9203a57af7c4c992ffd778fbde6b373f8d7e49c8a0bf28356

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: zopfli-0.2.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 97.5 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for zopfli-0.2.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c9d444b26317f3c40909d555f9c611ef8bcac6edf016af7709a32ad5848b481d
MD5 4288796bc52c101720a4e3b985376d02
BLAKE2b-256 dbdea2db658c075b2f732d1249a5e083446283e438daf217696109a2efcdb1b9

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp38-cp38-win32.whl.

File metadata

  • Download URL: zopfli-0.2.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 80.9 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for zopfli-0.2.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2b4b5ae717dc2c164d9fae6134eac285915aaef77723f8cf9765555ac926f6d0
MD5 efd8c2f0deb0622033104d8ee1a304f8
BLAKE2b-256 1446e3ec2e1e2acb456d51e7ea2c84c15c2de1129e31bce9c7d0a7463930690f

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 691d4e0fd04e85ee5f59e019ed0da16d8f544904d3879a34986722d87a90c536
MD5 889f890ae9be57cee5f738fef561916d
BLAKE2b-256 8d913b7216c33d03caaea2b4ccd5bba67af9acc912376b73dbeb02fbfdd3a4d0

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 468c4317aca9411b576a27f6f26217bdd30e04fdfc420d3d7e8b6f1fef4e9886
MD5 d184db048223cf86f5b74d62fb8bdba1
BLAKE2b-256 1c7aa8bf8e522358cb3c1ecd6eb41655ec4e0eff5a655e27dc8674d7e34154dc

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 81c2c1216814a4f2f9abcd49fd4b70f05266d3621ef3b21e4b1b7bf535876fc1
MD5 4aa9f5b5000fcf8e15fdd70429bc7bf5
BLAKE2b-256 4283d287756dee9adeb7d1d52e22e78a5d8830f472dff12e9a43937980652c1e

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5aea70d124ff9c0a33078f1451dfa2dd29eba53ea0627acb88783a19f0692044
MD5 331c8f171511749ca00d1358031ffff1
BLAKE2b-256 f8309d8207e08ed9b8849fcb8cf49744b4cd1128367275d98a645935aa072b7c

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7146c58c5ff604e7798d4c015c0ca8da53128ca29d0f1bccb48c785953451cd4
MD5 a67bb07416606c69918da0ae52d63dc5
BLAKE2b-256 58f8f83a6079bd1ffec53553ac6f9af99f49b4fc1105777a44fdd072380e2352

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3b58455a9d23f6d45f2686891d7bec916132aed335052459bbed36a2b9437c1d
MD5 1b7ce14222a5f2c569d5de71ef947446
BLAKE2b-256 c695583c1a6bae887a28e3e3f814ed2ad800f5b02790bb06ac102c8d8f5d70f2

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c27af5f9a6538891af7257e104a37affbe26383fc0bd57b52c05fe2f45292dc9
MD5 35df0c0db07bbd8d403a463b55d59595
BLAKE2b-256 3692ccb050e553ac5b292bccb2e60345350e93340d557c5493a0bce8674eb2ca

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a568f09aa932a04073a4147e2db5db2adfccd864326477d58d4ffc80550531c7
MD5 ac0d7fd6ca3dfa61a9a4a940671242da
BLAKE2b-256 7181205156b901c65e64d096e76d844c296193126f567c18853e681918281ff8

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: zopfli-0.2.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 97.5 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for zopfli-0.2.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 8d6d02e1a962995c380411cc4ec81d1f4fc60c293764f8acd859eb12bfdf7190
MD5 1a727e7093100bb3cd7ea7cba47d2fb8
BLAKE2b-256 f1819591545e0e85da11adf74fa1034e0609f3f20b582b9d46ac9fe81223fc30

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp37-cp37m-win32.whl.

File metadata

  • Download URL: zopfli-0.2.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 80.9 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for zopfli-0.2.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 c49e29739508a7142fa1437256a7bf631926e70e68ca50a6bd62ee4e80050acc
MD5 4cbc8a3eeb22f25d7d70a3ea429483f4
BLAKE2b-256 ff11e81923db5b7463e2b19220012da9b5788826cf76f7c885ee2ed273efd920

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 00a66579f2e663cd7eabad71f5b114abf442f4816fdaf251b4b495aa9d016a67
MD5 f6b0d7cc39affb21ad3c3fae4dda4d3c
BLAKE2b-256 814f3a914a35ceb1a675ebb1fdddf462508518214c9bdaa9271d423e0e2e2bb4

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 58ddab571a77988bc585e1a6fa46f9848b45880fa74bc832b135cbc22d22a619
MD5 f89777ae6a56910f2016bc7be4eaa229
BLAKE2b-256 87c03f1cc61a7a536089be098972bdc838f3e32cb19c6e1bff3e72271177018c

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 da3d682956e447f61ad23f66f49f20f189d12b15857a2e524497793ae54027c4
MD5 a560d57a146a5e7f0d602640a57bb0fb
BLAKE2b-256 5a4cbea94fab9b48f3f9484ef01ee2feaffa291021d59773cb6b5579150c599f

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8e05a2506e8a8d44835a11d5f1c296035d65d0f7053f77730ce99066acaf09af
MD5 e0f37bfc4012eaea6ac6d2192e35d7eb
BLAKE2b-256 3e54ef0dd5e33d29d36137fb4100394efa222bf37db6f16a83eec76f8f91504a

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 47d9ec1ca32240fae8b9b41e90d6483f4d0f2946de4785f54f4f57afe83040be
MD5 52628855e6008bb772666815716bee55
BLAKE2b-256 d1eaaebc67ec54aacfdb07c823066cc06cc49b89ed753b8ce6c117de03f30c42

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 573ae7e1cb4f0c9a248c203440950b24b213c13b5169e169a884c777ad9054e4
MD5 27639f3e6b7c7d21bcb195f3c6953cab
BLAKE2b-256 df4d1f445b1beaa28ec404e79e9fa48ab450706e4d44424431a3dc2f516007a7

See more details on using hashes here.

File details

Details for the file zopfli-0.2.2-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zopfli-0.2.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f6f62330a3999522282d0cc6370682d86985ac66edc2799f5934e309d8d615f1
MD5 ca12676e6311a00f810918a810b2c4c9
BLAKE2b-256 65043f82e85d4df50211c98be747fccec259e94988c92b1db3e41e2bf503a7b7

See more details on using hashes here.

Supported by

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