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

Uploaded Source

Built Distributions

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

Uploaded PyPy Windows x86-64

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

Uploaded PyPy Windows x86-64

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

Uploaded PyPy Windows x86-64

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.8 Windows x86-64

zlib_ng-0.4.1-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.1-cp38-cp38-musllinux_1_1_aarch64.whl (101.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

zlib_ng-0.4.1-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.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (98.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

zlib_ng-0.4.1-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.1.tar.gz.

File metadata

  • Download URL: zlib-ng-0.4.1.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.1.tar.gz
Algorithm Hash digest
SHA256 153183724143711c92bd243528b97fdd3b2426c778079498b882fce445a68421
MD5 7984a052424f12b39368a2a50553de82
BLAKE2b-256 8d3615e7f5297bd73470b0ee60c51f177e2b8adf40569685cd7389b76265f151

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ee89f4f5ed7a154974ec4fc923cb3d23297710e9dbb52ff9006d0971c07e7efe
MD5 f9dd49de227d3d54e36f204bf7da55b4
BLAKE2b-256 510f08f4b0fd0c9787a03b6cf5f5b41ed108b5e1a8f83e051713afa3c5e2564c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 00efbff00164a26944cf1b5c5f409656b476a865090d463915755b7ed9aedb7b
MD5 7383b28911f25badda5dae9c0874f02d
BLAKE2b-256 9fe9ff70c21fb08e293807fdaafbf557c677f16ddfdceedf1c3a5b90f0bdd727

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 23e0e3c2a475ef3f2c24e885c405e2b98e74e06f481fda2c61aec3653f21d905
MD5 473c30fb4d342e270e6339697936ae86
BLAKE2b-256 c49da99e418e7884f8567ee247e309fec9300cea0e761d2b29b9f48e176b4db1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 742096a5e390ff45d6723acc7be778df6fa9ad232b1bea591210ad3a402d4544
MD5 64a1cd5c128ecee245ced2458858c1ab
BLAKE2b-256 1898f2a74ec7b1df46d04491f3bf9c7c8bc8cf17bfc0354b60848127b8b0a030

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 02d14d7788847d823a49841cb3508162406279115925d48d591d0a0bcf44cb42
MD5 1887dc803549fe1aed504a09ee3fe2eb
BLAKE2b-256 0f5443d906a2013a5f7838f752b5a220c1f1c1bf6da58b1c5940a7e5cb59ca07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7f11fe6b797a522b44650de1c506c7a249606ce2aa3b9d2f2ed8d9bf809af22d
MD5 2efabfab5f1db20588db6bc5263e5cfd
BLAKE2b-256 3208d0bbeaed5895b29ad79ee5a1154b137748adba60f9ab4a7313f25e27507c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 34151df24b2c4f24380d00f4ba1a148adbb095c91158efbfc44220dfa6cabc10
MD5 7c06dcf3ca7db14456d3d1c217dcc5fd
BLAKE2b-256 0fdfaa5df66951b4194749b0dc63cfe9d9c9bee552804a56a5f60318553eacd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 40cc64134e180e654d507f6de9193db2f7a037b114af9c85a35eb26532d5b72e
MD5 1b950d96b8228e7982a895055c64e40c
BLAKE2b-256 e40f7ecef0cafcde5cd7b2fcdc9dec1e664f74f8543ffea226b94613fcb51c52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e3ae97d1720b6b2406dc2977b84799a4899bd4463dfb57ecf65442b1c39867ac
MD5 27070d0cff3333b1db2f10cd22c9a709
BLAKE2b-256 da6575da010f5b42cb01759864fb98e3160011ae09dec8ca0d671dc9d11c88d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee55d6a761f47968a66d1eb51017c4d2c41e7931f18236f928da69ea289785bf
MD5 d3b3c7498f6f6b4b66a793654bf55bac
BLAKE2b-256 f0b250af222171c5c5d87513844c7505584369c6bea30e0528476986b612ab99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 289c1b6cf6c2de657f6227ca4718444eaada615c26387e9a55f6ba40bea3392f
MD5 8cfadcc746c689112ec5cfc0ce96bde1
BLAKE2b-256 253af6903d20e87527e0f2ae7cdb9688875bd091b17fc0e21f743a84342d2f48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 caf5287b7610f9f0ec27e21472487fe39c911157a29b1f5f9eead22d86c5b758
MD5 a11490dbcdb61fce6929444602ccc62f
BLAKE2b-256 596f85fad82d372f74da344f086415da18c28c681cf0cbd91e9d14ec7e493a68

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for zlib_ng-0.4.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4f9fdce23a0195ce9c8f0f1997eca1fc1e0adf493cae0baff1a703cb1213f137
MD5 80cdc486911265cd5509f308cfa7ccdb
BLAKE2b-256 f93c0fa70e64a55fdd6688058157c10f20ad3f0e6ec932440038101a2c287b0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f4b6b330c15d4ae73d085b4fdb8bee3e2863a04a5679d37df881dd46bd5b8063
MD5 3e790c9630ad7b97b788fa7bc0293773
BLAKE2b-256 21ad7e615af8aa0eb1406a995cf19883b72ea0e1ef9c33dd64f2f49eb9d33b6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.1-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 55eb1a3a79f32270ee64ca573451284962ffc0cb16763e9af6b0521bf19ef866
MD5 abb11c3ff4d1e7b85bae0066e39834b5
BLAKE2b-256 c8a906c61a8cc38b88177c44db7ee951ed432a550588174ad1b0dd5a4f81b24b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 07bb673dc930d970dfe1969ff634a1d1ee11310af8fe14d3a99653b157ba73a4
MD5 e5e13bc59127aed100295e7766aae4ad
BLAKE2b-256 9a6e89f929ffa29fa523b96a3bbd6e06ec7a529749f81e35f254c317aed4e5b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c92a9425149fbf8696876b8a15dc08ed88dc385d0d1c3a5a5452911d80a659ea
MD5 638423242959f5653414568cdaa31d21
BLAKE2b-256 b88d1e47985e0f924a40b015f4abf328335088a50accb9a7e7d4af6cf34d5519

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 05838107b371bead74c0363e0dfcf36d79f6b4b5c7c5fa0f493934ae403cbe4d
MD5 376ec9bc60bfc0431b3e865fc9ef503b
BLAKE2b-256 e5f50b0160b9391023dfa79fb496a1947b909114984b968eb310f8503bdba846

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for zlib_ng-0.4.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 499f27d84ae14584a81c559c21287c8f3d4a16676daf55a719fa8b3714aa493c
MD5 0e356d9fb667acdf92fc647eb3b7abdd
BLAKE2b-256 fe51bafc0a4d34ed91b6dabbc634e39c5de28e69a674ef039fbdc413e64ba1e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0dc8807f646112a8cefecf39f1ac1ecce2c22b642246a2ba80413e394dd905a5
MD5 6345c2d9c3393f9cc81ff60ee7c8f6d9
BLAKE2b-256 97b6b92cfd941540ac8d726213a655221a57fb20443229edfcd4b2f4a7abf8de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 88c74e151547613555e1a75b1ab5bd2c0c49751878ee348ee9d560bcfdec4b86
MD5 a2e86131c97722b06748c3ca2c1127bb
BLAKE2b-256 da150acc2e3566bd3229fbae222498b7debe213b81b82c25111459c5640bd80b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 792690523c866c1d352e947c7d7d442e24fe2c0c7563aec323aefeb12f279867
MD5 a3a8a4fddd164d305941078695c969d2
BLAKE2b-256 8bae97c48e420ae520e8752b01e0e3428b855f54bde8b9ffba5391b6863f5415

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 49c52475f72abe1463a9f794e449e25c25f11d4fe0721e902f28ddf53def01ea
MD5 19fd396f2f43d67dadfaa9c6480a74c9
BLAKE2b-256 89712092a6924698cb019219e6cf1a79dd48b1ee8b1432a8b3baf359ca6842e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ece7d2e2e7bd627e4de3cb2a6c16c4d2c13379b959308d9b9cc2cec8f3e54ab9
MD5 9a48fb0afc91ea6f6d76b0496ad25784
BLAKE2b-256 efd6f6bf2241ca182e1496c5f2b2fd358ad90a9ac284ac8695d6b42c177b2d94

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for zlib_ng-0.4.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 151f38c6b79ea011ba1914945ce86fae89a22b2c18fec49593f2b992c7ccd940
MD5 26db28164702e50ec449a05b34faf24b
BLAKE2b-256 cb6b4c7b875953af50628ad30d4a4f5ad78428320ecd5dd5dac2db9280316271

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f3e764c5a91aec55ebe6117cd56bdc06bb5cc4a6b828b8d6b68ba6c5de09b288
MD5 827fa29902079a00dd9443043451880a
BLAKE2b-256 2d5c4ebfdb16100f766557cb509915a1fabb57505fcb94a63caf3a9c0ae4a6a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 14d2da8eb4bbc38371cdab7743784cac3a39e4cd18d0124f1a8c39995d3552bf
MD5 7810b447f417d6372286405fe1f2989d
BLAKE2b-256 bb7d74580d0a9943f08b758cd0f93683576304351c6109bfa849fcc69a211051

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f9c4762827f85aa22b8c6fa761c1d7236718bd8b8c3af4637143287c31f2b9a8
MD5 6dc1097f24e155d58780128f7c8857e0
BLAKE2b-256 07cb927830f52f86e8e3f9b4ab45cf8930aaeffc97098c5d9c4091e1cb984a22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 708077b3cba6f5dd345a4b6373e5e22249cc6aadc19ecbb20a136eb9db753527
MD5 5eb99e836e9bdc31f395b506915bf6dc
BLAKE2b-256 80792bbc224f816d71dd8fe5e24aa0e7a28b828abb25d256e38167988a57639d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f19e32e0e08bd3417dd23c6c562e76b05deb2d34e8d0f84f0999d7ada5ec3bb1
MD5 b6708aaf4eb80358a6ae623f934addad
BLAKE2b-256 2022a4fc927f76c01a250af2e56b439d7e31b1fa89b0b0a2080fb4832e1a9f5f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for zlib_ng-0.4.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 776abd73644efd8556c92a0d2e65e73460e9fb081736bfc6dc8e39d49bb63901
MD5 74fe7d7cdd28acaa30dbb17e5306aced
BLAKE2b-256 5d428f63720e595100d433fd991388cdb4dd70769e77f93692f0d518c01eba7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a240dec6baee7353c6adb87cd5e5207325ba26b8649c35ce0be389d93ef9f01c
MD5 47f16462d9ab041343fbf0cefb1c132e
BLAKE2b-256 6a19bda28d9925358d58c0bb3a27b8c432ed682d2db1339f86f5b353bda87673

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 37d3acb56414aebbb1c1d8baaa911597c3bdf2d2e6e21ee02192fd963c37b053
MD5 344f0365e76b354dea908f3903d3c64d
BLAKE2b-256 b146ab44282b2db1277a317163ff8aca885816c3b92896e5333e0120a96f60b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4987816a8f0903a3d0905b9788faa3675e5e9b10e5b6e5b0f90117576a75f433
MD5 afa12b4da3ada41633aac20310aae68e
BLAKE2b-256 23f78c6ecbd223e0c2a68bee0d3737f2e14e3acfe02ca23a2173c234d60c6c9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5d53cb442e676099638e4f3d073f56566c9a41afccfd8c41daf5f179289048b5
MD5 9d2c2fe3b7d5c75a467d041559d3b135
BLAKE2b-256 1db2114b4ca999a49793f14f6cc1dd51d6d2f9fe7979f4b98af2528fd6190bc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2414540d1432a7e2d84b84aa2ebfd692f297ec002ab1f13af6c4970d0c1c0a6c
MD5 0c359f597c0a20c9daa3731fb566377a
BLAKE2b-256 24f46881de8bf01acb29b5b02a8852d2c4af76293903f452c91e357f290ffbab

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for zlib_ng-0.4.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e4603e33e0501192c5f80a996c70b642c674fb7367d122715af21309bf906214
MD5 6762e6aa94badd55cf31f12462b6e5a7
BLAKE2b-256 205059b9b19b4bfc0a64bbc1ccbfbb54a5376df5689b117d20c2280b136e590e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8f720e7feb7cc602f5e2207ca95b6b8fdcbaf8d9bf34cbcb4801257d0b8eede6
MD5 6f4fa4cf257798944e64bdda2d3febb7
BLAKE2b-256 a5df9ef02236c4a490f49e52297ea8b7a52a2911efc4dfdb3eb172d550ff7794

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 90df01485e034474d5b4f61880136dadc49dfc0c504223b938ff4aa649dd39f9
MD5 1376aeb1dd34248c205e378a8702c46c
BLAKE2b-256 dabf616cbdf012d29e245dd6e3573483a83f296e800a44f705c0dbcfe4cca040

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7bd3b482e8f79257cdada15044153a4f59157c9f64fe83a5ba627658ea19aa53
MD5 b2e7890f415f7816a90f9543ef8c1508
BLAKE2b-256 d7eeaa52c99259699e34fb9105e8eb0d8fda0c33c3ac640fba823c9f27578236

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1cbb59732a3b2bdeb5be19acde5357369b5314d560b080b7b5046abd88cc87b0
MD5 bd22cfd9371145f78f2311ab1ca550b8
BLAKE2b-256 573a85af9b4aff38ebe89a1a0cbae0947b38fa641be6c0b103ad93dcd8f9af58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 392e4f276be121c57ad68948409a9c525e25c577a8f751cc0c1b282dce9dc047
MD5 570a74ef82e2edf2de35aafbb3017799
BLAKE2b-256 a7969db0a5eb41b399bb6070de0c67b476fba5b3064e94396690663a1c304ce4

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