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

Uploaded Source

Built Distributions

zlib_ng-0.5.0-pp310-pypy310_pp73-win_amd64.whl (89.0 kB view details)

Uploaded PyPy Windows x86-64

zlib_ng-0.5.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (105.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

zlib_ng-0.5.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (96.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

zlib_ng-0.5.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (91.0 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

zlib_ng-0.5.0-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.0-pp39-pypy39_pp73-win_amd64.whl (89.0 kB view details)

Uploaded PyPy Windows x86-64

zlib_ng-0.5.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (105.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

zlib_ng-0.5.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (96.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

zlib_ng-0.5.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (91.0 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

zlib_ng-0.5.0-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.0-pp38-pypy38_pp73-win_amd64.whl (89.0 kB view details)

Uploaded PyPy Windows x86-64

zlib_ng-0.5.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (105.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

zlib_ng-0.5.0-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.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl (91.0 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

zlib_ng-0.5.0-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.0-cp313-cp313-win_amd64.whl (88.7 kB view details)

Uploaded CPython 3.13 Windows x86-64

zlib_ng-0.5.0-cp313-cp313-musllinux_1_2_x86_64.whl (109.9 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

zlib_ng-0.5.0-cp313-cp313-musllinux_1_2_aarch64.whl (100.0 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

zlib_ng-0.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (108.4 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

zlib_ng-0.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (98.8 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

zlib_ng-0.5.0-cp313-cp313-macosx_11_0_arm64.whl (91.3 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

zlib_ng-0.5.0-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.0-cp312-cp312-win_amd64.whl (88.8 kB view details)

Uploaded CPython 3.12 Windows x86-64

zlib_ng-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl (109.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

zlib_ng-0.5.0-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.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (108.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

zlib_ng-0.5.0-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.0-cp312-cp312-macosx_11_0_arm64.whl (91.4 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

zlib_ng-0.5.0-cp312-cp312-macosx_10_9_x86_64.whl (99.3 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

zlib_ng-0.5.0-cp311-cp311-win_amd64.whl (88.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

zlib_ng-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl (109.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

zlib_ng-0.5.0-cp311-cp311-musllinux_1_2_aarch64.whl (99.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

zlib_ng-0.5.0-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.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (98.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

zlib_ng-0.5.0-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.0-cp310-cp310-win_amd64.whl (88.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

zlib_ng-0.5.0-cp310-cp310-musllinux_1_2_x86_64.whl (109.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

zlib_ng-0.5.0-cp310-cp310-musllinux_1_2_aarch64.whl (99.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

zlib_ng-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (108.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

zlib_ng-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (98.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

zlib_ng-0.5.0-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.0-cp39-cp39-win_amd64.whl (88.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

zlib_ng-0.5.0-cp39-cp39-musllinux_1_2_x86_64.whl (109.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

zlib_ng-0.5.0-cp39-cp39-musllinux_1_2_aarch64.whl (99.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

zlib_ng-0.5.0-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.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (98.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

zlib_ng-0.5.0-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.0-cp38-cp38-win_amd64.whl (88.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

zlib_ng-0.5.0-cp38-cp38-musllinux_1_2_x86_64.whl (109.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

zlib_ng-0.5.0-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.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (108.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

zlib_ng-0.5.0-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.0-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.0.tar.gz.

File metadata

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

File hashes

Hashes for zlib_ng-0.5.0.tar.gz
Algorithm Hash digest
SHA256 3322c4300253a054af3d3aafa2f3858dceee3a577810122ba55eff756bf35ef2
MD5 17343444405d435b003a11c933de345c
BLAKE2b-256 d894bea27bb34d88b892e09fd95ae3059e055960daa392ab86be91aa229c2de8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 30ebcd671cc5a7f3c77c5cd1a293585be286f192e53bc73784a6f57275a01b95
MD5 f8ac9b24a0950c2b453840e4dd263e4c
BLAKE2b-256 e4556a848cc433db270de4df19aeaf1d63f83b5e8bad5572153115fff9f1f623

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 32dfc5f1d7d837426785d0243840ca421b15166b3fbaf272423effbf923e56b0
MD5 490b8046d6f90451852125a2881c1bb7
BLAKE2b-256 f5c76721bc7328597dd3fe2797517bcff0a994c797e1a4350e17c0fc110a34fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 237335a8bf2fd5306feb3c145394add71002883c4f5dc95c569622b2fba092aa
MD5 53118bd8b1412dcbca0da1a5ffe254c8
BLAKE2b-256 4292edf9a7d0e63d1fdc61f1553771439c0d99f315caaef5af413e685a94f1b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d67d8eaddc0d85fa86bad2aa0a8db60f7d42e34bff167d4c83b15dcdcf015237
MD5 b6a79047a16399d7844d2634dbc50140
BLAKE2b-256 c06bc997d114edda0e70629169eb5d75d4331dd766ac6220486f20e1cd1f3ad6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 02fff97304df77d7855cbfb0eca82e30485dec26833ef0a178938a1a36ce6e1f
MD5 00b3802854bcca62902b01fb91ec8a96
BLAKE2b-256 0371ab4b7d0a48b563ce87a7e0ab7ff2519de617087fe5f1d0beb8275a8eeebd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 dfbceaf22fd33198cab5ff2f25ba8d73a94f30a226e012721939cfe103632dde
MD5 dab4510a704648d60332a79e447a57aa
BLAKE2b-256 282219a143b63376fa10ba4032e3148f88f4e6ddbd45e18a92b84abaf22fc99d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a927c90f49f7c7960b43dcb12e90abb02b0a67e42906baaa00831cdec1efadc1
MD5 c2c7385977963979d8a7f27666f49318
BLAKE2b-256 3b4c626a651f8825d3eab2424ffe6f60726f34804b5e2a6d2bfae62bc122a037

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 17ee58c22a559acdcf31d49ca7cb1daaec74a5f9f8cac3b31a00a5da6897cea6
MD5 6ffe875105f7503493ec057dc29b2dcb
BLAKE2b-256 a39714b145e729c814995a77c86fd379ddfb56970b6f80dedb96abf119b97b9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3caeb1777dae77deee865fe7426197177c67c4e2d6d770c58b4f0abb132b0770
MD5 cb5d323a070f52d4b50df8d5ac187a8a
BLAKE2b-256 aeed34d23f78f1ba6dd6484cbce106926cc7f960a3fca2db91d4edda62f69f95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 adaf10fcfe77d2df19e61cd6019b343e69d5e1f094bc31911c0c3ac966169ec2
MD5 b57929a7350bc44c73c4b232dc373b5f
BLAKE2b-256 53f133857cbb02030add4371a06d3b4f8629f67da95e6d30fb25fa194ab94451

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0b7dfce39e9dc51dca281a7da11c95f7adc9ca8f6a1cf08ce56faa7b6c10a9b3
MD5 8412c25579bceb8bb223b61f8e684a39
BLAKE2b-256 ed664fb028377dcbebc473bb86ee14459d6cfc995382f2c6df696b79f5006792

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ade8af6ef1bbb8464f6d012b5a0bebb2ea6c6b6554df820166252efc71604c08
MD5 2f29cf3da8c0348ccbd82d988a8258bd
BLAKE2b-256 748b862823e5733f87dcf9e31880624f7faf0f871adbf6cabde6383b3f51e58f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d7afc972eb36704df0be6045a0b9743d31c0fd821a447c8d2ff16e81be6debbf
MD5 f6085b0ca4a4bf77fc1ca7b6c900f7a2
BLAKE2b-256 655976c66cf7278527f3cef2530ac629442d9b3051f342ac28caec64ef0dc006

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a2fcf6143a0fbca02e5245792c9826465aef5da1367032bba628f698f534f9d7
MD5 83d1d3c2fa41549cd080973bebb45f49
BLAKE2b-256 17204ce7096c761ad55412dd3443b5ea47209699c54f11b94985644b46e2357c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b97a82e3025a0dc580da5666d2dfac2c74604372643c134c5ba3e771d37d7213
MD5 6f92885145df0d1420e376cc315534e0
BLAKE2b-256 2d571b2697c62894694dd371af277a7fb45fb72603c43ee87e06269d547b70a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zlib_ng-0.5.0-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.4

File hashes

Hashes for zlib_ng-0.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 93a5356336f5c4d7c0765b1bf6d12832da14458bf34ba212c37b7aeb892c4cad
MD5 0b6ce206a68652b8b1f4b2f295d381b1
BLAKE2b-256 c4f8e87d0fea81ed9d236ed70a2e09ca36303d31ebed93c4a0fdb36718d71492

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 42f0bcb266b50b0bb0ed85a9a6f759336e041da4379d045bd2c627c29206cab7
MD5 72ea7bcc73f7938dca01acc753ccd6d9
BLAKE2b-256 393f8c30cee275eb0db4ec16300a3989f74bb8371092bfe2b4410a0d398dab76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b95fa236f8e4bab6d1caf46800c2e97c315f503ccb0d59b36364951b9980b228
MD5 f6c0a917f8178df0bf77404a47126bbe
BLAKE2b-256 99716a623307ea11ed3bb735ff2bc779c81b165130df8b3590bb17c600994368

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c1a59926111bbb0d313977310a78db627cc8290be50256b91d19d5f7aaf50e7b
MD5 35e1bbeb3f94a41dc21a112d6b471f45
BLAKE2b-256 fe10b552c1d62df706d858ef0876c5e2f16a4abb9407a7e1c590e51b66debe83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a6ee69e58cc766d5d7b72619324c1e772617295f3c29e166d3b2c2a9164bf217
MD5 1473db842060f8ff2afbcedb03645807
BLAKE2b-256 24ce4c82a9e3426682aaffa1192150260a4baa0dee9793899848d687a300f51f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7fe3a5f3189b0536b1ef5fc5fd4b8ebf8f89e3d493408db1db0aa895c894a342
MD5 f6e84d283b60aaeadc47811e50c51f57
BLAKE2b-256 b39fe73cd277ef39348fc2ebc408fcdd43b40a515e913d3f2eb24cef585d85ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 58aadf08a9a0005e1145261a7e6089eb48a5567422568932f03727b565031d98
MD5 898c1e588a3ac6c9a55e4b54177d2783
BLAKE2b-256 8e6f27f7ade481ec9ba86cdfc2692165bf5d6d410a835f7be7d43630de636aee

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for zlib_ng-0.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c70f71a45f5ca7ba8122815ba3b460cbb7ffc5e385c42ad408aa98eb5f662496
MD5 42d12c66421f1eac1fb6fbaf1958f52a
BLAKE2b-256 5973aeeb8fdc78ac1987c201011af9a86aca98d7a96696618ab08c6ddbb4d024

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d4fc63d4a225c379402a8d9952d83c1170de1fd4b6fced91e4e4a5597c00ac2f
MD5 3bbc00022b67b0d04cb7cdf9e0a8a614
BLAKE2b-256 f3c2a76f76f69b8e925ea2e11fcfcb9f4a7501df42fa643306cd9679774d17ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f87ec44f0b15a646be67a82697d47ad7d5362be1ec8978b163ad88b1ecff9643
MD5 4efb92c4f4e1ef86d988e9d5f4690d56
BLAKE2b-256 6c3496395975c9f29d8deed6321de0e95ef36a307dfc110a0a9831abd670f28b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fed4621651e00b636e1609aa53d0d611acc51cf89be9721afc30c8a1b7049238
MD5 89aa6d6cdda2616808d88a10a5c0f3aa
BLAKE2b-256 3bcb442ebc4d3b4be8ac77ba87835367f83fb62d5fb8bec41c66f7f465980b6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c067b97a4e87ae33554d08856e8b15de6ebea4dd29c14ab38f5f51050943176b
MD5 4c08db533195571b37515e5f7aad33a0
BLAKE2b-256 5228da506674c2d6354eb9e8fcc8c33f593f2966decd2a9a29af3d621930b524

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 99366aa8cb69e9d24c6971743f6ec929cca2791703034d0ae9af423945b374cf
MD5 0924b6e821731896ffef61664d8fd898
BLAKE2b-256 593694aa5b0a119fdd08c5e5c2a8ecbd4ae6dedd70da83251191e04d76276d57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cba453f44f51e7e8f09e5e332cebd5ef9b141eb4ef71ba8bf52847e5608250ab
MD5 d2738f681e241462e0add222befd3eb1
BLAKE2b-256 8fd4bedc3bf08787e46ad970cbb8116d30b1a44b6164646af6c645b0b3a60ca3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for zlib_ng-0.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dead06691f2515673db0e10e08214c93a6930f88cb26966e54f1f5e427657431
MD5 75415ecf77468df2dd7e26c1de14be66
BLAKE2b-256 b0d562f0fce4ff4555d778d6455052679f8f129e50230e094f6a0c5dd963a02d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a18f165471f1f298c57dcf4a7724d054ff97de905802ad3a185bfec9411b3567
MD5 2c02cf0e481d6a03d42b1590449a1ec2
BLAKE2b-256 fdc5c1f0732befcf73ea7bd329292abf8979a92d71f0ef13384c818d4f28a242

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 148bcffc6e436f4cfcaa1a12dd9946eb2e2f488092f13cfeda803e23a9dd4a41
MD5 2b7931448dcd4146fe4a1792208e92ce
BLAKE2b-256 21748402009b5c6962f9409443a4d060f4887086f3b97eacd2ce0b8b37065aef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d401eea1d3d84b1e9f2cf338cef056678906c09ebc290b39c94551b1be0e65d3
MD5 0247d0b0cfa418366e2e4f3dcc1925f2
BLAKE2b-256 60fdc095a03edb8e66b8cbc594bd6b0aefdff567c519ab0724122aff0bc89ee4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d4fc1a24b9f59ce06efb6d64770a0d2f7e04dc161c65ba89fed112989dc18b69
MD5 efdee0d93e79ce3d0525a92fe922fd7a
BLAKE2b-256 cb9dda2db1da926cf9b413db249db901243f8cde1c2ec59249b97a9258ae7ba3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae0b8add6631a3f4bbfeeefcbd84750db78e1b520a323d6304a5fd2134b0421e
MD5 aac75d9945e6cf78c75f1dd7bfd04c17
BLAKE2b-256 62d98933ede3b6023f436c123d7a17298763f2a12d94bf5e977e992133aded6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 194d6068c6a2a155cd7f137aad16f9bdc720214d71ce8dcfe48a362b761b5d3a
MD5 7adae5980bb7a1f56742c0135c54d9db
BLAKE2b-256 e866eea4db5099cbe5252e76c3e60664c61832d1ddd0d7be02b72fe2b55f968c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for zlib_ng-0.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 952f8e028328ba65c680549838202e8fd1f60eb3de0dd712c1722ea24057a053
MD5 2065100adcc2e2c7ba4cfb9217d6fcb1
BLAKE2b-256 6871fdfc840dc7ab00a89a3b86d455cb2e1b92689987cef6225b0dbe60d83439

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7ce0256e3af2285f6551e96142b7dd6650c1ccf7e47772ca7294582fa2d701f6
MD5 da9c4141d1cbd00cd6e03abb1441ad4d
BLAKE2b-256 f9b36aeedee78788753d23d98a10cf83a880c7ff3b35c000b9ff39e7f93d5f79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 27ef1f58b4c024d7f3d7d7fc10a452bb1c28a77ce80537d59867941f8df0379a
MD5 969297da5ca3f161031df18e6b9f390b
BLAKE2b-256 c592518016ba8b14ea001624227c4dac1d5afe3a52e0609417de3ca353a0e23a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ca614b058e5e84f40b26790a93f0bbb112d4a23ad726f268832611686787216
MD5 dea6714de29ef271cfd312136166698a
BLAKE2b-256 4c051c883a2bb826fd4674ad765dfa5940515be41cdab45cc3ab434fbd2b6e5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3d27f9df2255d97699183735f9eff17961eda70fa98e327ddd0f52698266165d
MD5 25723148b734b575a63d32c9d98758b0
BLAKE2b-256 7a9c8981709424502d9c73e4ccf428828f11a1821a1a5ccc1cbe981da9b47d6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e327d81a82ad99a87ee2e6888a4cd597a6f7dc293295d40416b3adae842771e8
MD5 b096b48a5266bb6554f44466db0689b1
BLAKE2b-256 be20652bcfed2d184845af7a2be549b45c6875b04bb4acabbef56aa89ee5d12c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f1a5de6fd1d1cc1443fa77b90ecf4638a29625a3ab0e5503cd3777aa49203974
MD5 94cf51b474cd1a6e8b195ce36f4d8d19
BLAKE2b-256 b6fd2b12b2d9372ea20249750b973d20a976d212f7a906827bb69603ba36238d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zlib_ng-0.5.0-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.4

File hashes

Hashes for zlib_ng-0.5.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 272dd8fc38132f6cd211191e641d2311f5071e8eb51ea2b2b0cc83746d9c6d80
MD5 6d4a44eb427ece9587ca94ffa1d8b16d
BLAKE2b-256 297e7644c93086ae2be80f29b775e890274815b951aab0fa21b37f1e8d1b8bf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4f51b42fa5f2eb19e2a7f517a31a5ab5e76fc5b23ac69ee456f9ba42dc59e940
MD5 924acf66be474c3b2e28f8fe9af8599a
BLAKE2b-256 9d101998f3da8ae71a2b203d56403bdaf4591695e94d2150f9f52fc34328545d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 12f54470f1a0efe8d5fcd7a92b1dbe9d42903e52077b2703ea7061b01ab485df
MD5 bcf9521291aaca43e50c51ad67be1c01
BLAKE2b-256 2eaa2ca1d6f4e5e0befdde5ba28aa1a66a9c8d214052d64cc531f68c6767452c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6c461f4403652e6cd9d70002f285d6be98be26f393dc336f13015895806ee986
MD5 b32830f064c661172fc1b9d48b5e8d10
BLAKE2b-256 7a11261449894e753ba74f6c75883abe690c80eb89608338f7edd02201856d60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 364f12bb8e8a420c42b8605a53558538ea66514666729ae99e0b1536d677e73d
MD5 75d13e55e13465d630baef48efcf53a7
BLAKE2b-256 39ff5975af0601167182722c13602d302aedc75233939b05aa6b391fd0471c7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ddacec3308dd7a5d3c9a7169a4f369f2b56546f42436572d9f05a9d4a22471f9
MD5 76be4c3412853e455eec12afceee724b
BLAKE2b-256 530b7ab5f2cd71f4ef884e8baac5aa8e36a4b93e1a1241f62ebbfd56a5974dfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 55ef7d0d461ffb45f4002d12ef91f856b03159408e9c93feb1907e2968b55dfd
MD5 307aaa594e8701871d647fbf05bbaed2
BLAKE2b-256 dd54ff71db74e817f14ee2a299ab68b05cea45e3c9bc4065f4e53b08cd88f74b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zlib_ng-0.5.0-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.4

File hashes

Hashes for zlib_ng-0.5.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 eae55fc91fa1ce79a9b0ea448a59d360c12fc9a55650f357d032f7c6a5abbb10
MD5 4e09e3654dcc2f618ad7c8cc1a102307
BLAKE2b-256 9c27c09225bc34aef9761bd72a3e85e52d260b43174d9ce6d08501a3c93eee9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad23bb9cfb1b3cc75fbd1799f7ff5d5bd1397da5d3ce99674e5b308b568fe83f
MD5 d0df84068151e8dccd95a303748f17c7
BLAKE2b-256 7465922e9de9610b5da37c42b22e15d5be1b2d4d00afcbb5e4b8d7f5e8b5d1e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 100e4f4a2eecfdde0de2133a3b0e9876452d81977e83b1a045a44080343f6042
MD5 980e18633990395809bf4cb84a13faf2
BLAKE2b-256 1e036392d6b4b78f96e6c5383db4c27c5564fd462cf504a0f68d300bfe681183

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0c622352bd2c34b39eae55852bdcff0235605162db608bfb9c2f412b7e60551e
MD5 686f668efc425caa59aef6b076eb7c4f
BLAKE2b-256 2b21a505eaaec2191bfc97f5480f15fa5b0f8461ded6d7cc63d19f9139a4126a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ffcb69921e16ba1431868a892a4be60d11c0adfd957a91280bb716e0250433f4
MD5 40f0064d8eb847c281194122cd578d40
BLAKE2b-256 64fc8b6c7c9ac89f461ceb992dd90d53646a786bfa2728354563de6adf4c0014

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.5.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 638a634bb718a691899b2ac16eed66a5761df41d828750132b67f6f71025fd41
MD5 f590e1a51cef4d0a8c6e045674f4aa47
BLAKE2b-256 e556d27b234a76575a05f9fb5d1702b5b87af256889066e6af474cbf6ce94420

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