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.3.tar.gz (2.5 MB view details)

Uploaded Source

Built Distributions

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

Uploaded PyPy Windows x86-64

zlib_ng-0.4.3-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.3-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.3-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.3-pp39-pypy39_pp73-win_amd64.whl (88.7 kB view details)

Uploaded PyPy Windows x86-64

zlib_ng-0.4.3-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.3-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.3-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.3-pp38-pypy38_pp73-win_amd64.whl (88.7 kB view details)

Uploaded PyPy Windows x86-64

zlib_ng-0.4.3-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.3-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.3-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.3-cp312-cp312-win_amd64.whl (88.5 kB view details)

Uploaded CPython 3.12 Windows x86-64

zlib_ng-0.4.3-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.3-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.3-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.3-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.3-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.3-cp311-cp311-win_amd64.whl (88.4 kB view details)

Uploaded CPython 3.11 Windows x86-64

zlib_ng-0.4.3-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.3-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.3-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.3-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.3-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.3-cp310-cp310-win_amd64.whl (88.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

zlib_ng-0.4.3-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.3-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.3-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.3-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.3-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.3-cp39-cp39-win_amd64.whl (88.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

zlib_ng-0.4.3-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.3-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.3-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.3-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.3-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.3-cp38-cp38-win_amd64.whl (88.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

zlib_ng-0.4.3-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.3-cp38-cp38-musllinux_1_1_aarch64.whl (101.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

zlib_ng-0.4.3-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.3-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.3-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.3.tar.gz.

File metadata

  • Download URL: zlib_ng-0.4.3.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.3.tar.gz
Algorithm Hash digest
SHA256 eb371b1095258106ab34023df38a1555dc599baf4ad3e991deebb858b1a0c6a3
MD5 9ca22c48bb62443ebe4e2d8cd2769548
BLAKE2b-256 37c3a284765917329fc8ac51eb75665d153f06a9f2d995ff23e350636f466ebb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.3-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7a2c507965c0198752164f1ef429db4295649373f9fff35ad6ad27cb93ee3b90
MD5 55a923f13c5846639c4a33e9f645524d
BLAKE2b-256 7941cee21b7e7fb2f12422085174ad83093b7e9b100d525610e30098e439ef65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 01f30e974a561b3213f2f8b0e6c78f52bbbbb5d6b3faa9c79028a297e4e9cf65
MD5 7bb53cb72fd3ac906852554a792e4fa8
BLAKE2b-256 eb7875ba2f7c8975640931243e3a6148e474184a3e3c24490ef1be94a407b02f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0533bd4ff1fffdc1642733077cd682841bd377134732315ca94f9889af751c83
MD5 f50396deaeab577cdd9bf5308ec9f508
BLAKE2b-256 e11f7c1e536c06a93649682ef44bba014a661dbb8ba393d9f8abe3f3ade431e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.3-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c6e9665c4a7ba25db65241e08e5b2f8abe154634b50c9d406b582f3c56daaf88
MD5 9c526bc8935d0733bb08a6f72a3652a3
BLAKE2b-256 61abdbf07bb3adde6eee89c0470c05f07ea37c3fc53c426c0a7d470d5028e221

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.3-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 42f3d1c261414c9c35e0817bfa4746c2ab2be28a04e9433b4305b1dc8685a95b
MD5 3a928cdf8501e3ee248880a3dae92bb0
BLAKE2b-256 02c137e48386192138b5d3cbd1a4938cb181766a014279fcb79ac3ecb5f3e1f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 28fbddfdc68627837025f615ede032326472ec777ed28ae35af931f8c7275704
MD5 49cc30d306fd9f70ec0d629befc0c92a
BLAKE2b-256 bf715e88b5f20958650fbad79f0427a6555d9aca48598ff953fe57ccbf482046

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4b1a461ee27a118b7e0349f9d2d48ddba8efdf607b54a686f1da51ea2c57933a
MD5 45cd9100d01520781ec66c4c9a25735d
BLAKE2b-256 45f855692fea221cca50f92dd08c86cd6c31dbe9cb830f4851591ac0d7fd2322

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0b64ed070f11f6bbbc3799a48bf1196974440c04816e722bbe2e7ad4f3bc055c
MD5 a1de64a8ed60c458d346d7fb6e2a0fd0
BLAKE2b-256 0105b52a1e5240e2e746f1934e50627128cc86e4e53811cdf7d24b3288ba970f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.3-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 8af0b04cea38914fdae3b88dd329f49f9462dd88076773fd0a15ff3ce5692e89
MD5 93b5e897d01c7f3e4dbdb5fab1ebdb58
BLAKE2b-256 c7c636ce8276bad1bdd771612209a171b82cad3d1fa529bd2c49c2ff8923fa8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b164c534fb5a4a7ce9f8f35adeafba19b0880aa3d58e866649e52b14a2f8222c
MD5 b3e8270ab0c5f99ecffcea7bd89a92f9
BLAKE2b-256 fe5462f0279575fdec9d92accd9668eaf435f6aa28d6f8e9d9b7fb122de73c89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 85e9395785a946d5a586d13c49cc969de06b6c8b0edd4036c6094408aa4b799a
MD5 e0a04273e22f0d609b0e9c524972ef7d
BLAKE2b-256 02940bfb653b5879d406da4ea186d894993b459516cbdfb5d9da121c5031c9c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 78ff32cca0984ab9240a6fd01206200d137dd0c565eba2140a68b84d347f219d
MD5 7c1b5cc572a0662f639eef4b48ad7809
BLAKE2b-256 01ac6c843422e3691552d61b4dda548dd801a3525bcbea3552c7a6e71a1e8094

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zlib_ng-0.4.3-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.3

File hashes

Hashes for zlib_ng-0.4.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b0338e7e35169158d5c538e803c896e414489025e4019002e717f20ef67f8320
MD5 3e0f0436e584069291ddfb7fc939eb52
BLAKE2b-256 3216a4519db58316da533a567eb532e0287502da9652170b0713112521e16485

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.3-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5744716c9c45edc5c98c3906a8d32818710353725800e277ea67245c9de862cc
MD5 29464878c2633172a810317c18b591c5
BLAKE2b-256 46f33334c4069c8872689cae1e5b93c22e4b43e6a380ada0724c33810fd452b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.3-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 20855fd670d8c012214764143b54dc63318e4f9c0236d7b3b4a53cbfd9a46592
MD5 a26c527c49cd7b4676354d6692422fc3
BLAKE2b-256 7e0e6b67ab6687855c368650ca73819762d07473b6dda0075b30a438a2463ac5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6822d4a72ed6b16bffcc21b0a91f2a37d08b805634ae1a3883bb5f5b3311c738
MD5 7f16bef5d53191e6bc50f8294575e8e8
BLAKE2b-256 dc2f6b906efc4da619ddcab41e592ee2eed4a90bfef61c8166799f06bd4846c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dca904cc5cb3df45814a7516ec3eb018c184591b8141eedb7c1a031132bb8247
MD5 5db2c8d6ad779f5edd9b8aa712597832
BLAKE2b-256 56285d602d82bf7c11b309f39db363fb16eeef8140d475f9ffca1df9e3f249da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.3-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a369bd772f961d99b16c5afa0817224f8074db86206a4d2977c4c151e0589f37
MD5 cf38b8566c2e6c600c116a929d8506cd
BLAKE2b-256 17907668e9535d5c5e85a61c7312b04e9f50f29b44fece012ca892cdfbf615f8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zlib_ng-0.4.3-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.3

File hashes

Hashes for zlib_ng-0.4.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ca44c976a1728b4bd5698f1f0e2e15205c38904ac46304746f97d5739dec0a5a
MD5 bcc36418b95e1ca89f32c0879acc8748
BLAKE2b-256 1ea7170a506faddc2b290e20d4ff2b16d61af18bcedc67b600d5f1568fef5925

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.3-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 73521b879dde470a5c750995f1711425310781150fb32cd8755355bbbc764b40
MD5 a1e74c1d3fe4e70b5d64799f3ef3223b
BLAKE2b-256 4aacadfe4ef93cecba0d3a689819a827aaca35e8ff9d4bf426b8f27cd1a5aa71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.3-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 da99fb1b69ee0c276ec339cf98f24d969addc25136c7b7d3c80011cab72fe952
MD5 5b32ebed49f2a46d74fec740347ebe5e
BLAKE2b-256 395d3043051295ae1d382b04d3f25a4296367c128cf6b5e322f99eef010cc5fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 004b871cd849929bde39898d963b58db9a13eb99051919981d9fb1deb696068d
MD5 37be681911d8facf4f834d5be772e76c
BLAKE2b-256 d15b22e5d77ad4019252d9920f2bb6b7b634f911c1c1a666b6591b1b0cbb12f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 73683fe92b172e6eaccc8648194f31b673f1180b19930d7edc58a9954f120117
MD5 367bb67795dad8951ca94ddca98978bb
BLAKE2b-256 098deae218e348766c36d6ceec87151a656ef7c68790d0a214e831d9791c6ae9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 53d6a0c9136fe526bbf1c212c5639bea2dffc94a86b81b42a2efcd4ea4b2a642
MD5 e93a954659c41b13b8553266b46ff362
BLAKE2b-256 fb62472f7bd7887872c5e652fcd4cc4d85a6b3295ca3e128842bd1b47385dbff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zlib_ng-0.4.3-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.3

File hashes

Hashes for zlib_ng-0.4.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9ccd43fb653b33d27791dab57600660ed72a09dabf5109140d639200cc11553c
MD5 c1a9b90534193dd935518b53520167de
BLAKE2b-256 c5d60006d2fe4403b5ee782bfcab57647523b5634ba207c53dab87e8f77af9e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.3-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a788a0b1983bb82f33e114cecde7f21657318942edc65ffb7c41ebb343e4c1c4
MD5 5e60c85aace96b70839006d27e6f588a
BLAKE2b-256 6993eab1e7b87cb25a720c768578f7817e8898d6f52c5f2ae49cfd50c2caa4a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.3-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 88b1db658f25c44d23b417c971dd710af6e4052d2d820ac17e13a622772cb970
MD5 1f10fe96a91b814544ba8cdfc71273f3
BLAKE2b-256 e4e7049acacb3a45d8d0958cbe3fc8ecc2ccba46ab53372ec27017d73faccfc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd6f000f7c637032d02175164231b9d25bfb9be2b6acf7192606f9a988ace33f
MD5 8f7d1a0d7e2028bb350f86cd41268778
BLAKE2b-256 a527fda157b735ada47dce37ec7dd9f9ddb4312e7b72be0ece7353295c8b323b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 13edac0d0f8d59b7022056bcfd770216eaf0614abd761fa379ed8b8041d09821
MD5 d51466aa39d9ca9a0bd252e1e028c16f
BLAKE2b-256 41f0eca95e3199c19c700434e7ec32b73b9117ebcc1c6a7f9f3f5401c5e60d7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ee57888d181a8427439e04d721e2368a7252ddd1a0166f26a5e4f0ca6f5dd8dd
MD5 43377e3400db802824eb541a44b89b0a
BLAKE2b-256 baa5f46a21223f86a4b77cb5a03a91f6e7c47d00caf56b017a1bb28c421f1e32

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zlib_ng-0.4.3-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.3

File hashes

Hashes for zlib_ng-0.4.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b1dde82846f089439108e601125c6240726103d0ed13c29c867cea33da6cfae0
MD5 ac9c1924a233506604fcc44640bae9d6
BLAKE2b-256 5b552932739a23950dda27b408250c7de0edec7e9b9ed17598cc380d1c895f70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.3-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a36cf1d9e908f858eca07444a8568d7bb72d79e26f6c432832c72ebd9728431f
MD5 73ec1014e182272bab2c48d85d441976
BLAKE2b-256 00d6141d91afe92571b5932e5ac42611b5e7b2e01ff03da25f11c54c3522a0bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.3-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 07230b77697e405b59b204de83496853177c2aa86a79ea5db7ca875bdb0f704c
MD5 4c2c3c2ec0464ffc2ce39ce37c128a5f
BLAKE2b-256 d5455e83269b1154ea8b5e1e4bf8a51bf810e68f3f482f8a84eca67c9db12a83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3b4e5c2de5f3ebdfbf28345051602a84710e6593c4d8decc361558c92ac24668
MD5 5a0ee8c158c95da7a5bdeda806d9ae7c
BLAKE2b-256 64cf93ba749420f27da798f500e8691506f0285484516114bf23d2497594a0df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 64ec0f7f95036f0c73792c5728f02577a4fb908015c25fbaf5df8ccbee39f0fd
MD5 8886512005a7db0a5479348081c63f64
BLAKE2b-256 a316b70783be8e824eb5fc3cb32abf78e06fce783e7d28482d3d4be291b6ea0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 49f9c56e0e263a1c2e78b914ca2f64d9e9a1c34e6c013753e9681f1658053676
MD5 b533ec228369bb9073caff31bb2bf66c
BLAKE2b-256 84748fab2ea6f4f43379327c8c4e5a572517c9914794a0d9e261581e0e5b7381

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zlib_ng-0.4.3-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.3

File hashes

Hashes for zlib_ng-0.4.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a553bbf3f652ee04e31e2a316c90ad533de57cd651c05fd0e4ebe8c0e5f170f9
MD5 312f6ae540876f24f1e521243fa6708d
BLAKE2b-256 36fbf1ef28fd59b81ba789d5596ef7c8f063505e842a07dc3a21bd8877af71dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.3-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6576efde6ee5e2a9a6b08c2d1c21ee43b1ca50fd600ad87a3c3f94d68636822f
MD5 2b73b18ce393053f58693e0b6ce5dd27
BLAKE2b-256 1f8e92332126d4dcfc73e006d96968756b08f7ed245f441fdf10b4bd7a0a4e0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.3-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 78c9cc35cb5824a917cd81364967000d1a140c50b9ab699bd6332a6a7a17db7b
MD5 d7a1f02872004491d290d905f70a6d06
BLAKE2b-256 cae76d683b92b41fc8cb3567dfc1decd5ee0d0796c98e769d40492e7b50a0bee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b258316f42485515cc8d899ba2a1fef0d6bb84779688bab52824249dcd5794f
MD5 b8a1419434436bf63f005f5d123da500
BLAKE2b-256 dc8e9cee990a06deaa178ddbcd3579df783269c1c1a71077c7c8d42e1b2d2094

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 042b8a7919aca96abc42a9cf7722068b324f31c1faabecf6a473e0d5450d9a69
MD5 73678baa0963314ccc0154ec1e49baa8
BLAKE2b-256 3152de10b4919bccfbf8bffd342a1fffb5329471cf7da2cd2f538778db8e0d40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d25c24bca2b82786d09f05f2f738afa52f98f0e98f5ec59fa553fcefb78eb821
MD5 18a51a7c213868a8c4caec9c9b37e9fe
BLAKE2b-256 5424929f2d26c658374e2c0bec47626bdcbaac87fa745d5fd56fb8b7cd6a3a27

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