Skip to main content

Build Status

PYZOPFLI

cPython bindings for zopfli.

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.

Release files for zopfli 0.1.9

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for zopfli 0.1.9
File Size Uploaded
zopfli-0.1.9.zip 79.9 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for zopfli 0.1.9
File
zopfli-0.1.9-pp37-pypy37_pp73-win_amd64.whl PyPy 3.7 PyPy 3.7 7.3 Windows x86-64 Details
zopfli-0.1.9-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl PyPy 3.7 PyPy 3.7 7.3 Linux glibc 2.5+ x86-64, Linux glibc 2.12+ x86-64 Details
zopfli-0.1.9-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl PyPy 3.7 PyPy 3.7 7.3 Linux glibc 2.12+ x86-32, Linux glibc 2.5+ x86-32 Details
zopfli-0.1.9-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
zopfli-0.1.9-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
zopfli-0.1.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
zopfli-0.1.9-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.5+ x86-64, Linux glibc 2.12+ x86-64 Details
zopfli-0.1.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.5+ x86-32, Linux glibc 2.12+ x86-32 Details
zopfli-0.1.9-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
zopfli-0.1.9-cp310-cp310-macosx_10_9_universal2.whl CPython 3.10 CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64) Details
zopfli-0.1.9-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
zopfli-0.1.9-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
zopfli-0.1.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
zopfli-0.1.9-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-64 Details
zopfli-0.1.9-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-32 Details
zopfli-0.1.9-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
zopfli-0.1.9-cp39-cp39-macosx_10_9_universal2.whl CPython 3.9 CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64) Details
zopfli-0.1.9-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
zopfli-0.1.9-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
zopfli-0.1.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
zopfli-0.1.9-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-64 Details
zopfli-0.1.9-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-32 Details
zopfli-0.1.9-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
zopfli-0.1.9-cp38-cp38-macosx_10_9_universal2.whl CPython 3.8 CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64) Details
zopfli-0.1.9-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
zopfli-0.1.9-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
zopfli-0.1.9-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64 Details
zopfli-0.1.9-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64 Details
zopfli-0.1.9-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32 Details
zopfli-0.1.9-cp37-cp37m-macosx_10_9_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 Details
zopfli-0.1.9-cp36-cp36m-win_amd64.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-64 Details
zopfli-0.1.9-cp36-cp36m-win32.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-32 Details
zopfli-0.1.9-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ ARM64 Details
zopfli-0.1.9-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64 Details
zopfli-0.1.9-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32 Details
zopfli-0.1.9-cp36-cp36m-macosx_10_9_x86_64.whl CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64 Details

Total release size: 2.7 MB

Release files / zopfli-0.1.9.zip

Download URL zopfli-0.1.9.zip
Size 79.9 kB
Tags Source
SHA-256 checksum
How to use checksums
78de3cc08a8efaa8013d61528907d91ac4d6cc014ffd8a41cc10ee75e9e60d7b
BLAKE2b-256 checksum
How to use checksums
107d278fd896401b0ef76e06cd42c3ce1541572d83b1c713b6786795c60a1bbe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.2 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.6

Release files / zopfli-0.1.9-pp37-pypy37_pp73-win_amd64.whl

Download URL zopfli-0.1.9-pp37-pypy37_pp73-win_amd64.whl
Size 41.8 kB
Tags PyPy 3.7 PyPy 3.7 7.3 Windows x86-64
SHA-256 checksum
How to use checksums
7a085eee2896b55959ef06cd962dfb0d01a6b5e79e2446a140ec81e7f4499dfc
BLAKE2b-256 checksum
How to use checksums
9c0c12e00027f021afd238a91dbf2a3a04e5ae16fa64fc47decaffd8c2405a0a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

Release files / zopfli-0.1.9-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl

Download URL zopfli-0.1.9-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Size 36.9 kB
Tags Linux glibc 2.12+ x86-64 Linux glibc 2.5+ x86-64 PyPy 3.7 PyPy 3.7 7.3
SHA-256 checksum
How to use checksums
377e70a4dfed0d0b4119023d8722897081343e187341b3a220e08f2284bda0d7
BLAKE2b-256 checksum
How to use checksums
129dca0f1a2e05990bf6d6e7de91cdd923f509808d142d9cd8ab2ae8893803c2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

Release files / zopfli-0.1.9-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl

Download URL zopfli-0.1.9-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Size 37.1 kB
Tags Linux glibc 2.12+ x86-32 Linux glibc 2.5+ x86-32 PyPy 3.7 PyPy 3.7 7.3
SHA-256 checksum
How to use checksums
1b04ef791c60e05a569e9229e106b5e145f55dd93b5ced6fe810985a6c461a4c
BLAKE2b-256 checksum
How to use checksums
a1ec0bc311f1f8aba8a5e2d50d103675e322ddea85aa31b119fe2b948b8e368d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

Release files / zopfli-0.1.9-cp310-cp310-win_amd64.whl

Download URL zopfli-0.1.9-cp310-cp310-win_amd64.whl
Size 41.6 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
1a1794435319de903ffe7a36dfce657799df42a38bd4d50b58fd2361621c1fe5
BLAKE2b-256 checksum
How to use checksums
930f9122299f72c5a4a34033d3a0cd59160aa74efd2f0a0ac3686eab04bc3aa2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

Release files / zopfli-0.1.9-cp310-cp310-win32.whl

Download URL zopfli-0.1.9-cp310-cp310-win32.whl
Size 35.1 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
74255e8e5a0f9993863094cd54e9501eb5f62d0a2970e9c9ca005f62c9c38338
BLAKE2b-256 checksum
How to use checksums
bc71da3023997e741525a255976be8a451b709bddcd6c84cff8befe86a3dd7ae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

Release files / zopfli-0.1.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL zopfli-0.1.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 117.7 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
745cbe6f036b8398d2f59bbb7165c4ba5cd0ac2e8243efc7082dee1f5731baf7
BLAKE2b-256 checksum
How to use checksums
44348903dd81f5a681f8d8910990abb7371bda6abc9e13ba10516926ddc04b6e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

Release files / zopfli-0.1.9-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl

Download URL zopfli-0.1.9-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Size 125.3 kB
Tags CPython 3.10 Linux glibc 2.12+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
6324dcc03633e7310db68f5c2b59ad8436b8fd5dddf5e2adab7b8aa4f6a5f442
BLAKE2b-256 checksum
How to use checksums
c8bda3f4de4d349076523cef83d8ebd8d93566a65a89e241fa33a0c194dabfed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

Release files / zopfli-0.1.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl

Download URL zopfli-0.1.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Size 109.8 kB
Tags CPython 3.10 Linux glibc 2.12+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
e9bedbb085b3b011a1cd911d85691c82904bc94903ce1ad98d5eb34b392cb093
BLAKE2b-256 checksum
How to use checksums
8a5b8eaff7feaa22dcbf0b56318df190fca428582dab3eb9926c995407ca744c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

Release files / zopfli-0.1.9-cp310-cp310-macosx_10_9_x86_64.whl

Download URL zopfli-0.1.9-cp310-cp310-macosx_10_9_x86_64.whl
Size 40.1 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
bf5990d5a3e6c6abe49f0509c67a38c00c3e0b8c8da26b867661b34bfeeb9e8d
BLAKE2b-256 checksum
How to use checksums
8e3abb925c74dd035c549638159aaa54cc34ed3fd93d628b3687655d7a53fcf5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

Release files / zopfli-0.1.9-cp310-cp310-macosx_10_9_universal2.whl

Download URL zopfli-0.1.9-cp310-cp310-macosx_10_9_universal2.whl
Size 70.5 kB
Tags CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
da74c371ee20795561ef22def8d1943939b7e9a7533a27de7a9a4a68301cf4ce
BLAKE2b-256 checksum
How to use checksums
7a9faa25eeaedf6fe6cd1ab5983b5721c3d3bdbb140574070fc7236f1e3f8271
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

Release files / zopfli-0.1.9-cp39-cp39-win_amd64.whl

Download URL zopfli-0.1.9-cp39-cp39-win_amd64.whl
Size 41.6 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
49020bcb4acb04d625a464633716316313f271a0a2421a9cc2862823a3adf3c5
BLAKE2b-256 checksum
How to use checksums
e901d208198c69233098d7e85eb4c70451cf5f23ec21646107d9c8cdc351d8eb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

Release files / zopfli-0.1.9-cp39-cp39-win32.whl

Download URL zopfli-0.1.9-cp39-cp39-win32.whl
Size 35.1 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
9368d2f9a8073e41e10c5440569d540a63f2bd7a126fe81cc5f469a56692833b
BLAKE2b-256 checksum
How to use checksums
afdcbf90c32184c3ba2cb39e9098157b1c1cec14a56cd76baed388738977bb34
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

Release files / zopfli-0.1.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL zopfli-0.1.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 117.5 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
3da24da35b9584a4a45bd67fa6b41281d3d90efd27de5056f789f1ff123f445e
BLAKE2b-256 checksum
How to use checksums
8a9c3f20915fdab23865589bdcec052de7e56a11a9ab885261b30c6657120015
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

Release files / zopfli-0.1.9-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl

Download URL zopfli-0.1.9-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Size 112.2 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
9d1115a985ce5af418b06ea5f9e1974d056227d90216bd7232a75c5ca60ab478
BLAKE2b-256 checksum
How to use checksums
7fa15825390bfdbf0ded2e795d484d166ad8021351fa8b81ef0e69fa178f246c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

Release files / zopfli-0.1.9-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl

Download URL zopfli-0.1.9-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Size 99.5 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
631a09bfd19bfcb70d950c13e4e2993aa682c2bf49fa463add4cc77962ee5d75
BLAKE2b-256 checksum
How to use checksums
cb86509b595994558d73352a7d39b44378a6277a3742522f520aeba02ec546c2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

Release files / zopfli-0.1.9-cp39-cp39-macosx_10_9_x86_64.whl

Download URL zopfli-0.1.9-cp39-cp39-macosx_10_9_x86_64.whl
Size 40.1 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
27a7df4c4611a5a9cb81ddafa1d56f7ed5a08827308c6546ca607097f4e36194
BLAKE2b-256 checksum
How to use checksums
513206c7175d01cd597eb818ec2c83af0f43829265ebd8127f1463e22b04d2a4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

Release files / zopfli-0.1.9-cp39-cp39-macosx_10_9_universal2.whl

Download URL zopfli-0.1.9-cp39-cp39-macosx_10_9_universal2.whl
Size 70.5 kB
Tags CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
33d270a14f9f2bde1846b8370372f1038a01a75d81e6f5a0f4ee341877bd327c
BLAKE2b-256 checksum
How to use checksums
9ad5e790553934e519a9b67057332c746bfa2037096dd016ceaf557b97525c19
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

Release files / zopfli-0.1.9-cp38-cp38-win_amd64.whl

Download URL zopfli-0.1.9-cp38-cp38-win_amd64.whl
Size 41.8 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
509bbfc19006526bfd4917a91108bb44ee26729e9ae25656c12247dbe3cfece8
BLAKE2b-256 checksum
How to use checksums
0575fe8d27d18d2641e4038b348d86a96533e2b611bf14581443d66ee665c1ee
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

Release files / zopfli-0.1.9-cp38-cp38-win32.whl

Download URL zopfli-0.1.9-cp38-cp38-win32.whl
Size 35.1 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
d2e37f12eb2e336993bde6cb6d8d19019a23b711ce1b8ad037a3c3838802958c
BLAKE2b-256 checksum
How to use checksums
a02ed19b4519eb983447f72bd1637bf61a065c06daedea1043a15c239abaa493
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

Release files / zopfli-0.1.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL zopfli-0.1.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 117.8 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
56f756f841f14180fd13e79b6b2ae4c9e47b73a9a7dc287109f7d432fd495df6
BLAKE2b-256 checksum
How to use checksums
a304634c9cabb8db8300d147c669175e0b859583aa671bef9ba658b2abf18822
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

Release files / zopfli-0.1.9-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl

Download URL zopfli-0.1.9-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Size 112.7 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
a91044948344c793b9c0f9de343d85960c002a31fdd83110a01d3f66e6100c57
BLAKE2b-256 checksum
How to use checksums
a8f86e4be229390327c3742577ff83c54cf21c27a9ad04ef98958604f2a527bb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

Release files / zopfli-0.1.9-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl

Download URL zopfli-0.1.9-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Size 99.6 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
97058951ffbfef5f37d68a0537d3049b48dffbb461bd1971d14f3259e60ef849
BLAKE2b-256 checksum
How to use checksums
d2a6841f9d72225ea1e5e6f08be1ca7e198a005c37c8e7f208a3110e859516d7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

Release files / zopfli-0.1.9-cp38-cp38-macosx_10_9_x86_64.whl

Download URL zopfli-0.1.9-cp38-cp38-macosx_10_9_x86_64.whl
Size 40.2 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
9b6ecc0dd348c3153fc596de6206148adf349aa25f745b6bf47c682911068fac
BLAKE2b-256 checksum
How to use checksums
644619b864c32eab0ec1a01404f2e4adebe03156c331feef5aa1f75736155400
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

Release files / zopfli-0.1.9-cp38-cp38-macosx_10_9_universal2.whl

Download URL zopfli-0.1.9-cp38-cp38-macosx_10_9_universal2.whl
Size 70.5 kB
Tags CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
b955dc2fff85b37ecbfeec09f174effdb617fd977eb34ff118dfa14aa8ac68df
BLAKE2b-256 checksum
How to use checksums
bf4cc25d70af20c80d9fc676aec78143ffc8f7fc7c89662af83fbc0436837bda
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

Release files / zopfli-0.1.9-cp37-cp37m-win_amd64.whl

Download URL zopfli-0.1.9-cp37-cp37m-win_amd64.whl
Size 41.7 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
dff085fe9df5ee3839fca15a7319068bb9728397b9d9a59c0561bf1bf7f2a990
BLAKE2b-256 checksum
How to use checksums
77d3e19955f5db5319f1c08a0e1f00234107480a0c983b547072759ac5e5be59
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

Release files / zopfli-0.1.9-cp37-cp37m-win32.whl

Download URL zopfli-0.1.9-cp37-cp37m-win32.whl
Size 35.0 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
c2446eb17fc677d1789693510d902bca6bb492e079f3a64efeac687e20be3416
BLAKE2b-256 checksum
How to use checksums
019d6fdbe46619c2cfe8b7ac45473420a6eeba43dacacb17a6583ca135fe190f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

Release files / zopfli-0.1.9-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL zopfli-0.1.9-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 118.5 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
ba346570cea24250613060ea1f62550e0de8bfd1733b950c24424dacc93cfd12
BLAKE2b-256 checksum
How to use checksums
ff3230d63194ad076b2cadae7ea52ef85494f48cb1e7c07980d93478d6dea195
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

Release files / zopfli-0.1.9-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl

Download URL zopfli-0.1.9-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Size 113.4 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
116934fed1e2a918a9225acc856163211661c8dd855061acf17210c015bcd7ca
BLAKE2b-256 checksum
How to use checksums
dfd9179cb8823004022cf842413ca239a5c016fec351ef9e0ec75d37064858e7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

Release files / zopfli-0.1.9-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl

Download URL zopfli-0.1.9-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Size 100.2 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
a42254a7c9550c5237666dab1191c55802f47bce4f1511725cfc033d7bf2c3a9
BLAKE2b-256 checksum
How to use checksums
d4fd9f35b62bbd3e701f90971ea612d2502932d5beef6341df1162804a644c0b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

Release files / zopfli-0.1.9-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL zopfli-0.1.9-cp37-cp37m-macosx_10_9_x86_64.whl
Size 40.1 kB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
bd750ca39bb0555ce69b8ed5c6bf5cf1293fae4657f09e488af1aacfc267c409
BLAKE2b-256 checksum
How to use checksums
6625c8b4f2e23c417ff210a7b3f05fca5cafbfed17552be4e2b14e2f6c298f05
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

Release files / zopfli-0.1.9-cp36-cp36m-win_amd64.whl

Download URL zopfli-0.1.9-cp36-cp36m-win_amd64.whl
Size 41.7 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
08ca761a8be61d3e46807adef8e8dad314ab93c824fc4d882f9e14a67d59fe57
BLAKE2b-256 checksum
How to use checksums
45a72468ddd7650c1ab1e1c355f18adc7d6e0446ccb454afa970ed233c270dfa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

Release files / zopfli-0.1.9-cp36-cp36m-win32.whl

Download URL zopfli-0.1.9-cp36-cp36m-win32.whl
Size 35.0 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
289d7c2f135add4c0964291c7eee40defb20fbcafc4deceb63d8d2ccc19d6c4d
BLAKE2b-256 checksum
How to use checksums
13ed1ab0a3157a40884d70ae77d1d37b053d1830b1f85558f534792c29878480
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

Release files / zopfli-0.1.9-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL zopfli-0.1.9-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 117.5 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
2ad7c1d56229c51eb42001d10b6784e41436d4706e8075264743a0036f3faf53
BLAKE2b-256 checksum
How to use checksums
ca8f23c4886662627584a40480c5b4e48d530dcc1b9a3ce84b3b06e377605131
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

Release files / zopfli-0.1.9-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl

Download URL zopfli-0.1.9-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Size 112.3 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
44f6c2592a1cd56a3f57562650cc7c95e13e465f3727f9ffc40def486124307d
BLAKE2b-256 checksum
How to use checksums
323de32de9348b9aabff541aca902b292fced8678cdba9a31d29fa9d7dca3282
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

Release files / zopfli-0.1.9-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl

Download URL zopfli-0.1.9-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl
Size 99.2 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
614f56e98111d57747d1c766b987f480353dad9bf8fb27089933fb350cc53bf1
BLAKE2b-256 checksum
How to use checksums
55ff332dff9a2788fb8ff60e6300fd5390609a741a53d5736cbfadcf6ff5f54a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

Release files / zopfli-0.1.9-cp36-cp36m-macosx_10_9_x86_64.whl

Download URL zopfli-0.1.9-cp36-cp36m-macosx_10_9_x86_64.whl
Size 40.1 kB
Tags CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
3b529645c7f963dc321523beee777f795dece7a355564a5084cd45ea51a6e985
BLAKE2b-256 checksum
How to use checksums
82bdb3340e150e9ee6a2e2c1736becd2fd51222f339941c0a15d28d3ee32ebc1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page