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

Uploaded Source

Built Distributions

zlib_ng-0.5.1-pp310-pypy310_pp73-win_amd64.whl (88.9 kB view details)

Uploaded PyPy Windows x86-64

zlib_ng-0.5.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (105.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

zlib_ng-0.5.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (96.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

zlib_ng-0.5.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (91.1 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

zlib_ng-0.5.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (99.4 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

zlib_ng-0.5.1-pp39-pypy39_pp73-win_amd64.whl (88.9 kB view details)

Uploaded PyPy Windows x86-64

zlib_ng-0.5.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (105.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

zlib_ng-0.5.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (96.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

zlib_ng-0.5.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (91.1 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

zlib_ng-0.5.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (99.4 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

zlib_ng-0.5.1-pp38-pypy38_pp73-win_amd64.whl (89.0 kB view details)

Uploaded PyPy Windows x86-64

zlib_ng-0.5.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (105.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

zlib_ng-0.5.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (96.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

zlib_ng-0.5.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl (91.1 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

zlib_ng-0.5.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (99.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

zlib_ng-0.5.1-cp313-cp313-win_amd64.whl (88.7 kB view details)

Uploaded CPython 3.13 Windows x86-64

zlib_ng-0.5.1-cp313-cp313-musllinux_1_2_x86_64.whl (109.8 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

zlib_ng-0.5.1-cp313-cp313-musllinux_1_2_aarch64.whl (99.9 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

zlib_ng-0.5.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (108.3 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

zlib_ng-0.5.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (98.7 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

zlib_ng-0.5.1-cp313-cp313-macosx_11_0_arm64.whl (91.4 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

zlib_ng-0.5.1-cp313-cp313-macosx_10_13_x86_64.whl (99.4 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

zlib_ng-0.5.1-cp312-cp312-win_amd64.whl (88.7 kB view details)

Uploaded CPython 3.12 Windows x86-64

zlib_ng-0.5.1-cp312-cp312-musllinux_1_2_x86_64.whl (109.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

zlib_ng-0.5.1-cp312-cp312-musllinux_1_2_aarch64.whl (100.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

zlib_ng-0.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (108.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

zlib_ng-0.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (98.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

zlib_ng-0.5.1-cp312-cp312-macosx_11_0_arm64.whl (91.4 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

zlib_ng-0.5.1-cp312-cp312-macosx_10_13_x86_64.whl (99.4 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

zlib_ng-0.5.1-cp311-cp311-win_amd64.whl (88.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

zlib_ng-0.5.1-cp311-cp311-musllinux_1_2_x86_64.whl (109.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

zlib_ng-0.5.1-cp311-cp311-musllinux_1_2_aarch64.whl (99.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

zlib_ng-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (108.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

zlib_ng-0.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (98.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

zlib_ng-0.5.1-cp311-cp311-macosx_11_0_arm64.whl (91.2 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

zlib_ng-0.5.1-cp311-cp311-macosx_10_9_x86_64.whl (99.1 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

zlib_ng-0.5.1-cp310-cp310-win_amd64.whl (88.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

zlib_ng-0.5.1-cp310-cp310-musllinux_1_2_x86_64.whl (109.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

zlib_ng-0.5.1-cp310-cp310-musllinux_1_2_aarch64.whl (99.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

zlib_ng-0.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (108.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

zlib_ng-0.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (98.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

zlib_ng-0.5.1-cp310-cp310-macosx_11_0_arm64.whl (91.2 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

zlib_ng-0.5.1-cp310-cp310-macosx_10_9_x86_64.whl (99.1 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

zlib_ng-0.5.1-cp39-cp39-win_amd64.whl (88.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

zlib_ng-0.5.1-cp39-cp39-musllinux_1_2_x86_64.whl (109.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

zlib_ng-0.5.1-cp39-cp39-musllinux_1_2_aarch64.whl (99.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

zlib_ng-0.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (108.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

zlib_ng-0.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (98.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

zlib_ng-0.5.1-cp39-cp39-macosx_11_0_arm64.whl (91.2 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

zlib_ng-0.5.1-cp39-cp39-macosx_10_9_x86_64.whl (99.1 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

zlib_ng-0.5.1-cp38-cp38-win_amd64.whl (88.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

zlib_ng-0.5.1-cp38-cp38-musllinux_1_2_x86_64.whl (109.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

zlib_ng-0.5.1-cp38-cp38-musllinux_1_2_aarch64.whl (99.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

zlib_ng-0.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (108.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

zlib_ng-0.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (98.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

zlib_ng-0.5.1-cp38-cp38-macosx_10_9_x86_64.whl (99.2 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

File details

Details for the file zlib_ng-0.5.1.tar.gz.

File metadata

  • Download URL: zlib_ng-0.5.1.tar.gz
  • Upload date:
  • Size: 2.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for zlib_ng-0.5.1.tar.gz
Algorithm Hash digest
SHA256 32a46649e8efc21ddd74776a55366a8d8be4e3a95b93dc1f0ffe3880718990d9
MD5 d9693f102ec18a1adc8d7b216ecfa9ce
BLAKE2b-256 c4a70b7673be5945071e99364a3ac1987b02fc1d416617e97f3e8816d275174e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 fa5400b8937630a40252fe0b13bb1a190bef9c5b3db7fca1fc6024cf60c0c3b9
MD5 f37636f4d4a4a65d8c097dcc2b2224b6
BLAKE2b-256 675b9a500c7dd10ace3c29f5d6f07cc094f8d7d96d1c7fe2b729e2ae51d4f9b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1590c93375c001ff36c66bcc7f1bb2179dc3db9e6d0fa94c3afa5e0f0eef682f
MD5 e89fe50815eeae26cd12dd44bd6a51cf
BLAKE2b-256 50144720142c602f48a35406c3fa1d098c5785f13af26c8b6cef808555e0c16a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 69ed5e4319732988c80d8f85d2171330e14f2f4cbad00f26a191ffcc92a334c3
MD5 5de008dd76401f0b90a99cb940fc91dc
BLAKE2b-256 617884624818f5b36d321cbdcf5ef277261f8e82515661ac96a7efc7890c774a

See more details on using hashes here.

File details

Details for the file zlib_ng-0.5.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.5.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4333a177e3818c2eb36aa62ca0c7a34010e2f7fbd28bb2f2cee68ce4f2cfcb2e
MD5 fa2fa283cc73ae5fe71d3c96c67a3a99
BLAKE2b-256 6f729daa0d0b85917b758250f43fb542680d5b9196d148b122fd70fd08026eb6

See more details on using hashes here.

File details

Details for the file zlib_ng-0.5.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.5.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4de0cf51d8ce333f8395efb03f5bdb1395657dc79be02391ebbd815fb963ef10
MD5 e25b98354e74d9d0a458631689665408
BLAKE2b-256 a30478199143aee9128d0e736d67eeea82416b785c5ba1a02debb1224e1991e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 3deacc849310854409fccd0be09f0bd4a9f3a82fb5f03f7d41ae9f7cda8ae92e
MD5 b5144e030657e03a55ae909c626bbf0c
BLAKE2b-256 4e239cdb9f4c6268152fb776d25edd33dc7fc89b5eed7b65ec311abd0bf94969

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3c7e140744440d23e70719d2a299a61a4c20a179c7e94b42ae833a9e13220afc
MD5 1d4a71235548990e67b7d89fa78e81fb
BLAKE2b-256 03bef244eda6269bab768a5d81acf04b4894034fb05b66e7c2fa673e3c955182

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 de0c57e7bae5ea0cce01e8192362726d8471a35353426483974cb2abb86f4a70
MD5 96a9e64930ae41b98b667c475cb3aecc
BLAKE2b-256 8a7e105608816349078d8ca8611b9e85fe79e87d9967fa2bc1ecab9b6c69fe3f

See more details on using hashes here.

File details

Details for the file zlib_ng-0.5.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.5.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cfa63c08af2eef138e6c1403ad9302ff5b3fd30c4b116534bc60c3d6b79bf76a
MD5 69460651e53aaa3fe957f3023f543cf2
BLAKE2b-256 64c60d9e3c3688e7615a64641ee8e845a6b444e54045a13a59d5cb8ad6d24176

See more details on using hashes here.

File details

Details for the file zlib_ng-0.5.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.5.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5c53836db4cf729e0c85173958f81ae87f2d83fdc7fb967e87fefa08492f2d5f
MD5 d80319326713cc5236dc1dd355b39500
BLAKE2b-256 6138d374fb463a46974d5d692ac2d28260acf5197ac3d18bd4a7f0b55013024e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f707d5c3e22242abff72d155e3fc82927cdd65d9f6a10f29d03706d3ecec8b51
MD5 49628602fbfc0253cceac64967716748
BLAKE2b-256 db4ede4a195482b15ec9756096fb43c4d5bbe774e24b1f0c72d6544f9d73fedc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b362d878d82a8f66856ca5557973758a73e661ee6beb80be5427aa89d9dcab29
MD5 f72c2362ff5bf47acc178e540fd9def4
BLAKE2b-256 c9040ada7060c07c98f8203056065aabb2714ab8397de275b853f5ce02f80a23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e16ed25141dd4eaba0c8815cacf9e16cf22221b467c412c2a5302840f1dc2a08
MD5 88f33229b027cfe228b1f9167a29c61b
BLAKE2b-256 7c052cab20221db52b90f73bf1816e4f1981e474035b42c2de939290bbbd5eb3

See more details on using hashes here.

File details

Details for the file zlib_ng-0.5.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.5.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 91b85730e303ef239c3c361cc02023c61eb2739126be1f0e36f5a1f311d2d4f4
MD5 632c0d7203cde352024c5e2c7304afd1
BLAKE2b-256 68ddc2b8c5595cf80b502445059a66cb2e587b8cf753d4d1bc11e2f38055d2a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 521b352372916ab40caa03e655ae49f503a2130e73343c8eb2043c57cdf99e8e
MD5 dd646af2dbb77036c78e96e5f997e343
BLAKE2b-256 22d558284efbeafe7164720a691dfb3b206db2593169eece59d642f3c9ff4e5b

See more details on using hashes here.

File details

Details for the file zlib_ng-0.5.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: zlib_ng-0.5.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 88.7 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for zlib_ng-0.5.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 677e5894ddc50e5a5ad867992744bd4dd54372afb44c4718c6417924241ddcc5
MD5 be0b816d2b99eec702fd7cedcb1b4299
BLAKE2b-256 9c77d265078b9001ff67ecc93953d6afc87a6986f5e956de55113bb761aea785

See more details on using hashes here.

File details

Details for the file zlib_ng-0.5.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.5.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9f8bc77bbe43745e558d7a868d216826f7d8c64146111067fb7bc039df10f744
MD5 ee7efd1918feea56c53d7d7b5a6fc511
BLAKE2b-256 c040f33104245e3600e747fba87d77e3bb0a201776126f88373111d76f06aa50

See more details on using hashes here.

File details

Details for the file zlib_ng-0.5.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.5.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 49119be5d677fe78b6841944e78ab8afbc9b65ac7e2d1d32666f0ce1e4fa39d9
MD5 dbdda5abe18b5d8cca792a71784d1e34
BLAKE2b-256 e3743a03409e28ac39bf3290eb2ad47e784d6b74ebcc9b3be2d7584f5e6a8248

See more details on using hashes here.

File details

Details for the file zlib_ng-0.5.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.5.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ace2898396a3bf4773693bc22e4f1659274551cb162335f2cae6df425b397292
MD5 2c980bda7620ea6ef469b5bbd1f23675
BLAKE2b-256 fb3229dede3b785a3064e1773045df124ac6c93d1e459b157f0b9c6a9fa85c7c

See more details on using hashes here.

File details

Details for the file zlib_ng-0.5.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.5.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e19469536b5e87bf9e4f11ae1e83024b2a9fa03f251f40e63fb6e4fd4e9f5265
MD5 19ef569136292b6002f4e5a23d2cf576
BLAKE2b-256 1f8903e911f91bc20d89854e302a8b01c4781b7e2d7c5214b705945f793df98a

See more details on using hashes here.

File details

Details for the file zlib_ng-0.5.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.5.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9827b85093066afb1b3f8c3a662e2f6953bd1c07e7ae70a558ea6b8adcc898b9
MD5 6210ba1c21a907409323d9a4b969f2be
BLAKE2b-256 3db18ac15b749af15c95d362da73d18640ec014a2c5ba7005a2bafab7d7d1c7a

See more details on using hashes here.

File details

Details for the file zlib_ng-0.5.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.5.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 26aa95c53e16dcb24d26f5434627e0edc779aa7857be38058c7d9fbbbf9ca9f6
MD5 f8f0d0899701b8666c1b42bffe5f5bba
BLAKE2b-256 4c88b80a96eeaa41d3f5cd94d8010a1bcc55421257e3e2b507b2a4d16d894758

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zlib_ng-0.5.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 88.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for zlib_ng-0.5.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 51474eedebb9a3f173bcaf7c2c05284045be1cf7daf55d8506f2cfadb66366a9
MD5 4624bb8728482a913a9a93f17b85d1f2
BLAKE2b-256 dfc4c0c8ef0d741e839bd5e4aa9f1b51dfa75e29ebec6c31b10d09c8401e64d4

See more details on using hashes here.

File details

Details for the file zlib_ng-0.5.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.5.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 54e6797933adf61f59d77485c781c30ab16abc7a293642f8563086a9613ee8f1
MD5 39319ea11082803d4755b1e6c3240ca5
BLAKE2b-256 cd4abd73034f2a675ace3f5f449c2911a20e9eb71b373df8c58bf31fc03215c7

See more details on using hashes here.

File details

Details for the file zlib_ng-0.5.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.5.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dccd1134ecffa7b7f33ba54432ea0ef431348fd1493387bb2d06f0fc0be686e4
MD5 ace89aa1b418e65ab1ea73ecb60c8536
BLAKE2b-256 22bbe3a39e1aed1cd9990cf808792db1109ca9b13d58a0fdcae91acda18dc16d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a10b2da0890afce007d71277fb5429f563b0e1bbbda7bd91d4e156658d79a0b7
MD5 3a3e090c8b5d1d5f5bb8d3b4deaf3761
BLAKE2b-256 b221d036c34cad733dde2b4906817c7a819ba4b519bae0494a5a5511a0f1a667

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9a951c202086a004bbc9bbfa000f19a8436a3b064257981b2140c7baa0d5a6c0
MD5 537b5675c597d6e75bd1862ff4c70fcc
BLAKE2b-256 d36ce3bcb9a95a523af53a6678cb45592239d0c5c10849901b5df6efd5f795ee

See more details on using hashes here.

File details

Details for the file zlib_ng-0.5.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.5.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c347663989f3d3d7bb3a635da893c8a90b20b1f3edaaedb037638de3a50c8ab3
MD5 5def720d04667e4fc74f3296ff50abf0
BLAKE2b-256 2b8d6eeab2683050d2e3c978a519ce318d5dd852b8e4a73f476182f8cd67e58d

See more details on using hashes here.

File details

Details for the file zlib_ng-0.5.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.5.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5c5d5cab84a51f6373a4be4b7d0c8e7b25242820e5a2857da338a84c6616e9b8
MD5 9c6f2106a87f2ae2655d39efe1143cd9
BLAKE2b-256 584a2f2f1b4f5b607bdd09683f1c597de49daf696cbd4c0949fd886a7b35f275

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zlib_ng-0.5.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 88.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for zlib_ng-0.5.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 086d8ecbbe596fc2bacd52979548950ee48f61d294a1c8a1ea091afc14927e09
MD5 f376c2f4d690b6ba02485ab565c833eb
BLAKE2b-256 b984fd060491cb074da705168f40d94db121a885879316eede3a128dea4051c1

See more details on using hashes here.

File details

Details for the file zlib_ng-0.5.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.5.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 19eeddb988f6d76e8031ab8aab1dcc03f13abd308ccc16d79b852d3b8057b5cd
MD5 c3af0cf73e6196c0557fd9551315459d
BLAKE2b-256 57e3537ed1f755f93c1d2873e781131fd6e114878caa9aeb55f22d4cc1790f21

See more details on using hashes here.

File details

Details for the file zlib_ng-0.5.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.5.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8a0ccc5cd3c47d85ec1d1f245a608e51ac0bab80f9b24544ef1117126db1c226
MD5 d325365fe5dd824bf5a86dc7be188948
BLAKE2b-256 73634622b8fbc8d82b44132ffbd3cd85645c1e8e7eb1bc0a7c57c2eb007b9043

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0aa641675f5cd3737c1d9d4ba3e0395308516afb41a097da61a786e4d7a6faa1
MD5 056b8e0cbd8de2227f428386ef041a50
BLAKE2b-256 dd7aa94df91d7eb6f0d736175226d0cf410121e2a7c3bf1445db7969a8549b20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8082762fd90ee71ccb8afc80f077aa34a5c7d3822a7fa1db9fccc0a0bc0815ba
MD5 a6bcf06ab2706a8ce5ab5a179b6d8c14
BLAKE2b-256 9678b06f95aa0ba5b8d714a333309a73bd386e236811939a13b3d386037f5beb

See more details on using hashes here.

File details

Details for the file zlib_ng-0.5.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.5.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b8d32a1c296f72e455784ed594c67c9a55e90bd036b4e2ef6621263ec37a481
MD5 8f5b87f22d9b9d64c6aa2ce4a3491ee5
BLAKE2b-256 f817a1b64f8d9bbbc0af6054fdf70c8efbce835acc8a280beb9d1083fff4dfd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4178acbe1f6ed313626d7b6463e13f2c32be67fed055ce404d5d4b2ab9b4fc4f
MD5 96551d86be66b2fc6bc152485c51edd1
BLAKE2b-256 6b7e5e668d1b15a4dad35eac2d298c756c2a571963a47d46631537484510ab83

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zlib_ng-0.5.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 88.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for zlib_ng-0.5.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 12307a1f69aa983287957b37e0fbf629a0d803e8fca791b27d2ef143e306fda0
MD5 a4c50f7414dfc9905d25266dbbf3dca6
BLAKE2b-256 0ace363ce793ef489d0028c910b9ffe6bb82f9c4f5a26fd9409c17dffa80d1c2

See more details on using hashes here.

File details

Details for the file zlib_ng-0.5.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.5.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5ecab68fefad5ac233e4a0bfa0e401ed9897f5e950bad4dee31dfb53be10fa24
MD5 59a22628ac9f426fcd881e6740dda2ae
BLAKE2b-256 50add437a98091b3ddeac5a9541e1b872fb66e1017e96817927f8b60bf4bf2bb

See more details on using hashes here.

File details

Details for the file zlib_ng-0.5.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.5.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6cd0fd5f1a84249cc78c2a7746289c66e1dbbc40c1eded91c1e09a5dc6d8d02b
MD5 4757a954a155dd56c24ba3f008540fb5
BLAKE2b-256 9bfde14bbe5f9d6a4416dadc515bee7bda144dc40d10dee7f5f97a178ae7f1f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 030d6cead51bb5a38826fca1bd4bd2cec927bb949c3eefb004aa4fc55af5cfe7
MD5 d231a2e724115152f016b69f9738d6a0
BLAKE2b-256 b2ada5d81fa47cb56f2087a62df531080bfd1f13aedfa67f9a1adfeb3c30ca5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bcc37f32477747bbf68073ca54f277ef09d320fb50d7634e66db72f7221c9881
MD5 68ff83762455a041ca7cf3d22f2096fe
BLAKE2b-256 f6bf4154fbd9a524219245bcb038421432a1529256de8e412eb3fa3a3a85f95e

See more details on using hashes here.

File details

Details for the file zlib_ng-0.5.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.5.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1be5a5513876cd0a071bbb0fc333eb00bc9c25399f2b863e329dfe6ac4cf6455
MD5 d1b29b2d47f9382737c9c8df160a8afc
BLAKE2b-256 ebb2ea991f6668fff6f704010ac9450a94a40d10def8686fc46392e29408ee38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ea0b07ff83e253d83e25113fc81f695b9161882de3a65d547ab96f394cf03f5c
MD5 e69cc1d45ace78fac0f7fcd46f42a5e5
BLAKE2b-256 6517ca5708e971057170fe87f2c1b339508306f3756c8f316a9fc7eec502d5ed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zlib_ng-0.5.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 88.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for zlib_ng-0.5.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8459b6ef8358e1edc08e3ce2a7ad6771549c4a93967a2ebb6b1138a97a115b81
MD5 b815bd2eacaf38261e92caa5833138c5
BLAKE2b-256 d635f4872f2217bd144312b72d85c7199cc2918f9124d9713f63a4aa220bb2be

See more details on using hashes here.

File details

Details for the file zlib_ng-0.5.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.5.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cef7d3e5b27de0d82d14e343bfbc8866d7a32bb4565a036247d39a8a2c5e1516
MD5 24daad05924ea28276ca696074b9ea06
BLAKE2b-256 8f123bbdacf8b5161eeaba842645a6f0616ffc5927c7e85d75c1b5328f8579c5

See more details on using hashes here.

File details

Details for the file zlib_ng-0.5.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.5.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 698f782cc415e76f95f06c4473b6dac4446dc664dee42d5237ac7018fc07aedc
MD5 a67ac07302e25f324b9fc632e674ad53
BLAKE2b-256 45dbb478976efb39b20d7c334178bb96c781b4aae664c52b8b4a127cb05ae00d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a9589f7a5f0a9ca9af57a8a7df088ec9d5535ee4a10507978634ce2a158b7fea
MD5 9c828272845465673e9607a6c9f6f8d2
BLAKE2b-256 972884babcf1a87ef91b0a13feee4356300d4a13f263a6020ad252d37be35a42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b0b51e1d2c01755c79aa45c66601adc1d8a0671d2a71ce93ff06bfeeeb8b8493
MD5 907092df13e973f600845e852be6d992
BLAKE2b-256 0440da3ddf7f919bb50d0baa315b89e464f368e15aca00b67bdfa45db8884974

See more details on using hashes here.

File details

Details for the file zlib_ng-0.5.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.5.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 808d749ad0b2c6942755760c1f17655c8106f78f6d9e4729eb5486361715fca8
MD5 ece37ca7c37a94ef3035b91647deb43d
BLAKE2b-256 27e2ff1c881f6a3f12d0a33117112ee76377649cb07e974a3d6ee9b670a11a1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fdee7dc210ffef59b5237d3c705cef613415e67549f41568e2b4e7e712d17747
MD5 466917730c3db646d47ad44893e1d7a7
BLAKE2b-256 a10a43b1b99cc58b8c6125794d03788faa225fd855b70f076ff1a923383b51d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zlib_ng-0.5.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 88.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for zlib_ng-0.5.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b3c6f83c3069121bb0fefb2ec22ec265ec9d450243ff3033e556459167942e71
MD5 a550e69de3d3c66bdc86419f32dbe91c
BLAKE2b-256 19f87b3e32d91b1d7772213f620247ea286f63777eda71fa4b2bd51be19ce43e

See more details on using hashes here.

File details

Details for the file zlib_ng-0.5.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.5.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 81e9049755e1db834594e7831b0de52c4755cdfc0c223cf6733285a30d0fdc8a
MD5 eec696ec2d5e7ec4950f01a4fe7c5223
BLAKE2b-256 d88a91eab27c103025258cd6d61618b08648e288920f02e3ccf7286300938829

See more details on using hashes here.

File details

Details for the file zlib_ng-0.5.1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zlib_ng-0.5.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 39b2508b7806e47bbb85a8011b881eebd7d9ea104adb3328caa163dbca1440e5
MD5 23830249aaa29339518f0eae0d087b7a
BLAKE2b-256 2b93658340c5f6b2981ec912bb2cc6021ccf9a834fbe8d7213a87d298b73a6cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5dbee987bca1f5d6cd612c388cecee5334572b47f6730e90d371863472ab4cc9
MD5 c9d8a4e3cd6c41cbaa8846bfc6ec6090
BLAKE2b-256 fe417bc6551981c347628f576050f7aedb407827300bd2eef6a9df84f924a07e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ea5993d1999c4a70b1d4121e8f438cb28338af2afaa52c57d1393b343d15051c
MD5 3ec275dbe79540ee192c308d9c9f2f3b
BLAKE2b-256 32994b7715c89660fc671e8d1be1facbc260f205f9bb4971a0b14e767a0a3bc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 49f01c225cfee0654273a77b4a1a2f82af8c16b2b5181f82166b10615d003129
MD5 fd9ae8b469028e80d975e8b70b59957b
BLAKE2b-256 7810458eeda4151a09e113b82ff2f3ebf298ee383415680803c333455fe85c99

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