Skip to main content

Drop-in replacement for zlib and gzip modules using zlib-ng

Project description

python-zlib-ng

Faster zlib and gzip compatible compression and decompression by providing Python bindings for the zlib-ng library.

This package provides Python bindings for the zlib-ng library.

python-zlib-ng provides the bindings by offering three modules:

  • zlib_ng: A drop-in replacement for the zlib module that uses zlib-ng to accelerate its performance.

  • gzip_ng: A drop-in replacement for the gzip module that uses zlib_ng instead of zlib to perform its compression and checksum tasks, which improves performance.

  • gzip_ng_threaded offers an open function which returns buffered read or write streams that can be used to read and write large files while escaping the GIL using one or multiple threads. This functionality only works for streaming, seeking is not supported.

zlib_ng and gzip_ng are almost fully compatible with zlib and gzip from the Python standard library. There are some minor differences see: differences-with-zlib-and-gzip-modules.

Quickstart

The python-zlib-ng modules can be imported as follows

from zlib_ng import zlib_ng
from zlib_ng import gzip_ng
from zlib_ng import gzip_ng_threaded

zlib_ng and gzip_ng are meant to be used as drop in replacements so their api and functions are the same as the stdlib’s modules.

A full API documentation can be found on our readthedocs page.

python -m zlib_ng.gzip_ng implements a fully featured gzip-like command line application (just like python -m gzip, but better). Full usage documentation can be found on our readthedocs page.

Installation

  • with pip: pip install zlib-ng

  • with conda: conda install python-zlib-ng

Installation is supported on Linux, Windows and MacOS. For more advanced installation options check the documentation.

python-zlib-ng as a dependency in your project

zlib-ng supports numerous platforms but not all of these have pre-built wheels available. To prevent your users from running into issues when installing your project please list a python-zlib-ng dependency as follows.

setup.cfg:

install_requires =
    zlib-ng; platform.machine == "x86_64" or platform.machine == "AMD64"

setup.py:

extras_require={
    ":platform.machine == 'x86_64' or platform.machine == 'AMD64'": ['zlib-ng']
},

Differences with zlib and gzip modules

  • Compression level 1 zlib_ng has a worse compression rate than that in zlib. For other compression levels zlib_ng compresses better.

  • gzip_ng.open returns a class GzipNGFile instead of GzipFile. Since there are differences between the compressed ratios between levels, a difference in naming was chosen to reflect this. gzip_ng.GzipFile does exist as an alias of gzip_ng.GzipNGFile for compatibility reasons.

Contributing

Please make a PR or issue if you feel anything can be improved. Bug reports are also very welcome. Please report them on the github issue tracker.

Acknowledgements

This project builds upon the software and experience of many. Many thanks to:

  • The zlib-ng contributors for making the zlib-ng library.

  • The CPython contributors. Python-zlib-ng mimicks zlibmodule.c and gzip.py from the standard library to make it easier for python users to adopt it.

  • The github actions team for creating the actions CI service that enables building and testing on all three major operating systems.

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

zlib-ng-0.4.2.tar.gz (2.5 MB view details)

Uploaded Source

Built Distributions

zlib_ng-0.4.2-pp310-pypy310_pp73-win_amd64.whl (88.7 kB view details)

Uploaded PyPy Windows x86-64

zlib_ng-0.4.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (105.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

zlib_ng-0.4.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (96.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

zlib_ng-0.4.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (101.1 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

zlib_ng-0.4.2-pp39-pypy39_pp73-win_amd64.whl (88.7 kB view details)

Uploaded PyPy Windows x86-64

zlib_ng-0.4.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (105.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

zlib_ng-0.4.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (96.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

zlib_ng-0.4.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (101.1 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

zlib_ng-0.4.2-pp38-pypy38_pp73-win_amd64.whl (88.7 kB view details)

Uploaded PyPy Windows x86-64

zlib_ng-0.4.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (105.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

zlib_ng-0.4.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (96.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

zlib_ng-0.4.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (101.1 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

zlib_ng-0.4.2-cp312-cp312-win_amd64.whl (88.5 kB view details)

Uploaded CPython 3.12 Windows x86-64

zlib_ng-0.4.2-cp312-cp312-musllinux_1_1_x86_64.whl (111.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

zlib_ng-0.4.2-cp312-cp312-musllinux_1_1_aarch64.whl (101.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

zlib_ng-0.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (108.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

zlib_ng-0.4.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (98.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

zlib_ng-0.4.2-cp312-cp312-macosx_10_9_x86_64.whl (101.2 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

zlib_ng-0.4.2-cp311-cp311-win_amd64.whl (88.4 kB view details)

Uploaded CPython 3.11 Windows x86-64

zlib_ng-0.4.2-cp311-cp311-musllinux_1_1_x86_64.whl (111.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

zlib_ng-0.4.2-cp311-cp311-musllinux_1_1_aarch64.whl (101.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

zlib_ng-0.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (107.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

zlib_ng-0.4.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (98.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

zlib_ng-0.4.2-cp311-cp311-macosx_10_9_x86_64.whl (101.1 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

zlib_ng-0.4.2-cp310-cp310-win_amd64.whl (88.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

zlib_ng-0.4.2-cp310-cp310-musllinux_1_1_x86_64.whl (111.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

zlib_ng-0.4.2-cp310-cp310-musllinux_1_1_aarch64.whl (101.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

zlib_ng-0.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (107.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

zlib_ng-0.4.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (98.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

zlib_ng-0.4.2-cp310-cp310-macosx_10_9_x86_64.whl (101.1 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

zlib_ng-0.4.2-cp39-cp39-win_amd64.whl (88.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

zlib_ng-0.4.2-cp39-cp39-musllinux_1_1_x86_64.whl (111.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

zlib_ng-0.4.2-cp39-cp39-musllinux_1_1_aarch64.whl (101.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

zlib_ng-0.4.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (107.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

zlib_ng-0.4.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (98.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

zlib_ng-0.4.2-cp39-cp39-macosx_10_9_x86_64.whl (101.1 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

zlib_ng-0.4.2-cp38-cp38-win_amd64.whl (88.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

zlib_ng-0.4.2-cp38-cp38-musllinux_1_1_x86_64.whl (111.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

zlib_ng-0.4.2-cp38-cp38-musllinux_1_1_aarch64.whl (101.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

zlib_ng-0.4.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (108.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

zlib_ng-0.4.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (98.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

zlib_ng-0.4.2-cp38-cp38-macosx_10_9_x86_64.whl (101.1 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

File details

Details for the file zlib-ng-0.4.2.tar.gz.

File metadata

  • Download URL: zlib-ng-0.4.2.tar.gz
  • Upload date:
  • Size: 2.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for zlib-ng-0.4.2.tar.gz
Algorithm Hash digest
SHA256 2541ae55744a72a4b57413ad05251ec4ef844245bf61509132e5bf925140b5ad
MD5 41a06ca9c08dcf1cf50732357706cc1a
BLAKE2b-256 afbde8c61e8e8640ce4fc5dc478054c383be367e2171f0ebbe6b7313c126abd7

See more details on using hashes here.

File details

Details for the file zlib_ng-0.4.2-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.4.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 894ce5a2eeabdc4dab56c094118b4754e74666d66389cd285bded17133b3211e
MD5 dfc6e3225b2242041f6f89a35b6c1f67
BLAKE2b-256 4bdf32767ab7fbf124584687e8616b5e75b3b6652369646974fb464dd78e9b18

See more details on using hashes here.

File details

Details for the file zlib_ng-0.4.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.4.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 084d3b25fcfab14fd1d84036fd79bf8ede8dbed541e82fed0259c9c131f51de8
MD5 d8520ff54ec27e37537b0662eb1a42f9
BLAKE2b-256 6f488fdf6591c85f78438c2aea86634de10ac760d05d2ff5980529b2fdd30350

See more details on using hashes here.

File details

Details for the file zlib_ng-0.4.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.4.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d92bc11600cac7564382c0f7dd5a40d9c7aff5d4830ad845cadc14e2f74e6c71
MD5 f221720cc018df783ab237eea42d5f58
BLAKE2b-256 16b1728ae8c825f626c3fc1a3d0b732bd69bee3dc9e3c14ea213dc7e2bba1309

See more details on using hashes here.

File details

Details for the file zlib_ng-0.4.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.4.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 12c186f5f0fb4b7d5575958398e3bc6a3fcaab740196cd25eaf0705a91ecf903
MD5 f0dbd1332ad42f05c51c94476c198194
BLAKE2b-256 f98c3e1a4d8b075e3b0577124b8ce1d5212eb2136f3e89ca60ad171f01adfdea

See more details on using hashes here.

File details

Details for the file zlib_ng-0.4.2-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.4.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5d8056d73c3c951a0acababce725b84a7acb0feafb2b9a96a86d1eb978b7f60f
MD5 22f9203d57ea3d57abab3dc846bd4fc3
BLAKE2b-256 1c49797f4a65e23cfd57d34564e87e859a0b5920bfa0c67d8f4f3fff5657121e

See more details on using hashes here.

File details

Details for the file zlib_ng-0.4.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.4.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ae4f83292846ac9fc220ab67710e7cd06ab63cf837452ec5dc3fc95b73d503a2
MD5 4a0ec1f40c47a5346b060d425479708c
BLAKE2b-256 835b925553c7a670a97bd9b59da6e1bcc264f6137bf075927597320cd8a7195a

See more details on using hashes here.

File details

Details for the file zlib_ng-0.4.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.4.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7ccec0ae1b3b9905caf2bb853e6cf7b7e6c07cae1da3666c06b906d3a49dffcf
MD5 ea78f8192dc2a6b8a309b2226822c1de
BLAKE2b-256 570b19d0acd1e188e3b32609581acd871ebb526d4c4c3e2ef1f47a67b279cc99

See more details on using hashes here.

File details

Details for the file zlib_ng-0.4.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.4.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7ecb8b49349b7d146e9ef6d699a4c06c2c80fbf89b234631ae05c654ebc8ccac
MD5 d125fbd714eafb3a4a15e261e0e0b3df
BLAKE2b-256 bd718a80afa21eab1a52f89eba4a0bbcc87d8d22e8fe0b8f7511510cd82b17d5

See more details on using hashes here.

File details

Details for the file zlib_ng-0.4.2-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.4.2-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b2005996ff958dfa8223da53ac2945608cc272f3093ba6377900ba8f73e46090
MD5 65195c589b7dc2e4848473cff00869d6
BLAKE2b-256 52e5b857b08038e54ea4cd098f157958d81095050bfc20b46d9ac35e22d145f2

See more details on using hashes here.

File details

Details for the file zlib_ng-0.4.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.4.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d2d5182aeb55887348c47a1f4be0aab77357a9727e3e2f651fa3a5a855a9e97b
MD5 49e956a609b76c8dda74eae1c53e838e
BLAKE2b-256 ee97143f95414e332fa7383146771070199fc05bf1ef3cae3ac0d6903589a82f

See more details on using hashes here.

File details

Details for the file zlib_ng-0.4.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.4.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5d5324b28ef832c082eb7691d2ed6e8ed47f2ef6147c6201c1f19af81d15ae2d
MD5 f0c1f5d1bc03a99a54ca66e91a5dc3f3
BLAKE2b-256 36d7199baf2c428ad91b41be5fb5f506c93d964ed9b7cfed2a58d4dacb7c9043

See more details on using hashes here.

File details

Details for the file zlib_ng-0.4.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.4.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 538eb3601b3d8bfbbf52cd2d752e9391ff1672c97d1cf2da8bac129aca08b282
MD5 ec809c46251766615b1e2a5c297168ce
BLAKE2b-256 956a941c05b1f4a353ee2197e0cfeedf09f30fa7102220b949dfd62cf455bf5d

See more details on using hashes here.

File details

Details for the file zlib_ng-0.4.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: zlib_ng-0.4.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 88.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for zlib_ng-0.4.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4ac1ac2f3045d140a1314ab8d731f77d43c16e1c70dbf4ddcdde89f2babcdcc2
MD5 0443ef9e057ba5f8feec5846c74f9eb0
BLAKE2b-256 dc42b165d8705ec5be2973218debc45002d2eb7bf1e16fee26d466eeb492f591

See more details on using hashes here.

File details

Details for the file zlib_ng-0.4.2-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.4.2-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b9f8972129d07b3bb1d48bc7e3a08f78292ac46053ef11a5ec75763eb4199c18
MD5 2950a6420dcb7c16761a59bcebb18feb
BLAKE2b-256 4cbab250673e5c574e7cf95807ba0bf409307cebe3901151391cbd3b5f90ce77

See more details on using hashes here.

File details

Details for the file zlib_ng-0.4.2-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.4.2-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b4e5586f9833ea79e9be29d6bbc9de35211b1a2d8196aa7aed30faa9a3b0022f
MD5 440f92405000c8d58d8f84ac3c3c1d12
BLAKE2b-256 761792a4d8414e9f92a0244b4f060c533a58e6a99e2d8be1efd215dc0b627245

See more details on using hashes here.

File details

Details for the file zlib_ng-0.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 260b7300ed3799803e70cb2eec291b1d7e683c124db06441dd00f48614fb4a9c
MD5 84ad423deaacb6ef48507106179a025d
BLAKE2b-256 ef30bb277cc26bca10767a73a4af0df6925a89276e6ff200c17415be387f8365

See more details on using hashes here.

File details

Details for the file zlib_ng-0.4.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.4.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8f87f65345c65e867523a7c41ffe00be802f632b06174e85576196e342ad6d97
MD5 a9ab94b4b2f4ca4cd3063874dcc1a28a
BLAKE2b-256 8d216e33db1b2606df80c5ad23082b556d1f001fe6612b86259538e92379452d

See more details on using hashes here.

File details

Details for the file zlib_ng-0.4.2-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.4.2-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e6b189b0d294c49532e86d0c7c37f5f3dafa7803209e163d567ceef501bc65d1
MD5 be9423d07e0c91cd603b2587b97bdadc
BLAKE2b-256 4b50e6cb9e7f0e3b9ff77e0b31630cdc0187dc552b608118da085acda3317f7f

See more details on using hashes here.

File details

Details for the file zlib_ng-0.4.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: zlib_ng-0.4.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 88.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for zlib_ng-0.4.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c58e3211a2462345c42b27ec412a5c6b18c7ad21559e7b3f32297eba586983d1
MD5 bfdfc140a346b53d6f4aa8e3bb41fa92
BLAKE2b-256 f4e4b1467339207e30fc83a466184337ebd40383d7d3e68a6e36259dd63f8d09

See more details on using hashes here.

File details

Details for the file zlib_ng-0.4.2-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.4.2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f5bc8c620e43b62d13bb986b9aa7415bb42aa450d7c906155ee7fa512bc677d3
MD5 e329f6718685b45475c42a2319eb4c67
BLAKE2b-256 6512604ee03683fb22ca12249eb28702357fbddc2165e335f20258769d20377a

See more details on using hashes here.

File details

Details for the file zlib_ng-0.4.2-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.4.2-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 02b9eb516ce63d352e75cf678bdc58c4f6ea0d890f973cbd02be169961dff214
MD5 f43b089a29d20e921ecc4d28d6a7921d
BLAKE2b-256 6be4e523188ead4f9e20e5add486ca5e798e679dd8df1cb7c8bcb24b0a72f1d3

See more details on using hashes here.

File details

Details for the file zlib_ng-0.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b2b42f6e22fb05f7d8fae055fb1d9ff43c2da009c9fb4fe028a5e8b38dddea11
MD5 7743c3d695b8e3905f13458cd795b072
BLAKE2b-256 45337c74a90218a04a63c52de3928fa7803dd5071bd4a697b6c3ccd1119f3e3d

See more details on using hashes here.

File details

Details for the file zlib_ng-0.4.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.4.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bcea393cc5aa6d6eba44abbbe2b74922b53521be142086c1617c2d483d063eef
MD5 5aa0a56e47b21c23d00982737fb409ce
BLAKE2b-256 5ebba06ff6690986d72be48524c63ab54351e9ee4312ba33a873deb7c6f0c9f8

See more details on using hashes here.

File details

Details for the file zlib_ng-0.4.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.4.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e8e437f43f0e16df3afb126a786a127212694adb746f7d98efc7a9e1a2727c59
MD5 a8fe244a00fbb0e9b0a61dcc2f59ec02
BLAKE2b-256 52880bf7ebf685c7d25da6c3b7ecaae1ad9d9916c0d8366b54d1e03cc2470f68

See more details on using hashes here.

File details

Details for the file zlib_ng-0.4.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: zlib_ng-0.4.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 88.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for zlib_ng-0.4.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e1e9c2813bbf28cd9f766a780de13e61141ac4ee9e85de58a0d17ff532e1b01c
MD5 4022ff38eaf6042b2fa63fc0d2e4788d
BLAKE2b-256 b6e24baa03b24674f7c7151bbae9dc44712c1f0993f542003b8e29f189c9cfee

See more details on using hashes here.

File details

Details for the file zlib_ng-0.4.2-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.4.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d05b002ab33aa8e549a54cf63d6a26580b72726f4f065e074056d3e04314baaf
MD5 44e2b37b1cd1e9900c65d14c0e8c8214
BLAKE2b-256 91c2cf0a89c35205b7cb9f03faa8704593696f8a9b1a9cd8fe250343a2dfa6aa

See more details on using hashes here.

File details

Details for the file zlib_ng-0.4.2-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.4.2-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 23b0061d827e7620f7e36e3212f5dc233db30de3c58648d4c8c7f2ec1bcf649f
MD5 9bf150d2a7d370b0684955fc6e5d3dfb
BLAKE2b-256 56c0f9ef23ebdfcf9249235f8af2af5aada64542f066d9d98979eca572b86d93

See more details on using hashes here.

File details

Details for the file zlib_ng-0.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 39a6ee210cefc1a0bd74db5e51689b69c450151e947d2952044ce413a22e2505
MD5 d3c024374bae57d0a876b49849524ab0
BLAKE2b-256 f17eade0165e1a1d526a2fd7be1d35d979b6eef044e9ff2e31891bdcc865f6fe

See more details on using hashes here.

File details

Details for the file zlib_ng-0.4.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.4.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bc14c075abb83ab0adc77262457046dfcd110007f8e6b2749cd975bce7d47915
MD5 200f21aa76721fae2bdfc129d8744b98
BLAKE2b-256 4e21779fffb527bc472e1b524bd5129762e62a0ab962599242a3267be83e8cee

See more details on using hashes here.

File details

Details for the file zlib_ng-0.4.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.4.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 03f45a7eeb1ef7ad48ce7f67b5790bfeb4ef618c8638756ae1a9050ee7de8dda
MD5 f26cc9b45f3ef3bb58d4b0cd36bcf243
BLAKE2b-256 297afb46df7d02b7160396180a11faf3cbe3882b74390504f1b1686ace15c71f

See more details on using hashes here.

File details

Details for the file zlib_ng-0.4.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: zlib_ng-0.4.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 88.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for zlib_ng-0.4.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5cdff9b67e0d304978c63955d586aa76f65b93f03105db3da7b9162a8d4b93c8
MD5 e3dba1a46724c68425c1aff6a314227b
BLAKE2b-256 8f3044d35d8df0aee80da5d8110c3ed7238b3803e493f4f10b660be0b3b0e731

See more details on using hashes here.

File details

Details for the file zlib_ng-0.4.2-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.4.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ee120a68095690258acec322164bafcdea97da7f41d1e8facbd1900479e43af2
MD5 e195005babf1190fdeff6816d5d93553
BLAKE2b-256 7bc92a0c346b38e7b8b38fcf3a0032d1ddf14e1d95410579765d8c6e33fd29af

See more details on using hashes here.

File details

Details for the file zlib_ng-0.4.2-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.4.2-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 20b3b49d8fc72dde7c4efb84cf52383d8fbedc6b9c8c7cd562d63d8ad44628ed
MD5 543f8f3bde75e53860a6bc9763a34a81
BLAKE2b-256 6a2e0822c211448177e95209a6c371301211b1bef9bf4826947a1daa568d5966

See more details on using hashes here.

File details

Details for the file zlib_ng-0.4.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.4.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ec291675957c8188ad5d2f16dea2c318203d9780389edfdf56992c9178682368
MD5 79cfef45c8d73312e91e13a20fff03cc
BLAKE2b-256 0558488b49fd401e84125606c67c6addf38d0e93b75b1933ecb991a47251d3cf

See more details on using hashes here.

File details

Details for the file zlib_ng-0.4.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.4.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a23a9eecb81949f4d195b48519d94d45677b8ca35008630c70bbf4a534bf7d42
MD5 90cd7410a57c27e1e043020a82cd874b
BLAKE2b-256 5792929eafe105294515f520261fefe729b22ebb154d9c266c1a4b13e8b9e86b

See more details on using hashes here.

File details

Details for the file zlib_ng-0.4.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.4.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b8f9186d5ef4c7808876fd06a3d270ba42a9bfab312c3c9116145fe5625060d1
MD5 12ed125b7008fab58a8e7689bba7d008
BLAKE2b-256 a1fc85e10bfb1fba3e9a22e1a615d598dc0ac782dc059251c79db70174527fab

See more details on using hashes here.

File details

Details for the file zlib_ng-0.4.2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: zlib_ng-0.4.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 88.4 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for zlib_ng-0.4.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d8d5bc6811fb65189a379f14818e88e6b783bfc0d422b96269d809c242a97a75
MD5 84ce975f4d64b9cd3d785c94ccf798c0
BLAKE2b-256 364b4eabb70ae40fbf3138e0cc6f3451eed8402acf659fce9e4fe5f92c689efa

See more details on using hashes here.

File details

Details for the file zlib_ng-0.4.2-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.4.2-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 79e32a8d829ec28465ec6ecd5ec04a1e284ef0a6fbb2283a5073d1166d7b20d4
MD5 b4ae5bf08a7378404a89a2d06ea8c4c0
BLAKE2b-256 387843a53e380571bbb954e01213212c432fc5f1435b52337912d8095319bbdb

See more details on using hashes here.

File details

Details for the file zlib_ng-0.4.2-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.4.2-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 799cf284a2a1ce0a9741b9353e82cb89895652841ab5b2c56222e74d70e54afd
MD5 baf29f5fbe3baf590608175e67850c39
BLAKE2b-256 003d086717ff87fe995a28e9ece21115362d381c4385d8ccf7061445e497a031

See more details on using hashes here.

File details

Details for the file zlib_ng-0.4.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.4.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 554f4222b05e91647c5a30b7487e1debe8d0857c18094c59df562f0504d37874
MD5 b72a8e4540de1ac614b1d4b7c6e1190c
BLAKE2b-256 7926e8f809b4ab3658c9808bb969a690aadfcce0d29398852576927c86ba685e

See more details on using hashes here.

File details

Details for the file zlib_ng-0.4.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.4.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0731d6f74f12aff84bd75b425d26507f89283bdbf03d0dad2a54f4206121bfd3
MD5 646c083df10bd2783385c642ccc3efed
BLAKE2b-256 8e8b2b9aef5ad2561f898dfa6467cb43700d0554de05e8eed66fd8717c2f1657

See more details on using hashes here.

File details

Details for the file zlib_ng-0.4.2-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.4.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1f3db61906dc6581b88e1b14428af311adbc19a0f48e8225b65a352e7c656739
MD5 6968767a6e98487ecfe2452969834954
BLAKE2b-256 3431fbff245a0d5e018ee74f51efb12bc3a23a93f07b546e2edf81e930a6cd8b

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