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

Uploaded Source

Built Distributions

zlib_ng-0.4.0-pp310-pypy310_pp73-win_amd64.whl (88.4 kB view details)

Uploaded PyPy Windows x86-64

zlib_ng-0.4.0-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.0-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.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (100.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

zlib_ng-0.4.0-pp39-pypy39_pp73-win_amd64.whl (88.4 kB view details)

Uploaded PyPy Windows x86-64

zlib_ng-0.4.0-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.0-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.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (100.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

zlib_ng-0.4.0-pp38-pypy38_pp73-win_amd64.whl (88.4 kB view details)

Uploaded PyPy Windows x86-64

zlib_ng-0.4.0-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.0-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.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (100.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

zlib_ng-0.4.0-cp312-cp312-win_amd64.whl (88.1 kB view details)

Uploaded CPython 3.12 Windows x86-64

zlib_ng-0.4.0-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.0-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.0-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.0-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.0-cp312-cp312-macosx_10_9_x86_64.whl (100.9 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

zlib_ng-0.4.0-cp311-cp311-win_amd64.whl (88.0 kB view details)

Uploaded CPython 3.11 Windows x86-64

zlib_ng-0.4.0-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.0-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.0-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.0-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.0-cp311-cp311-macosx_10_9_x86_64.whl (100.8 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

zlib_ng-0.4.0-cp310-cp310-win_amd64.whl (88.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

zlib_ng-0.4.0-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.0-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.0-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.0-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.0-cp310-cp310-macosx_10_9_x86_64.whl (100.7 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

zlib_ng-0.4.0-cp39-cp39-win_amd64.whl (88.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

zlib_ng-0.4.0-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.0-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.0-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.0-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.0-cp39-cp39-macosx_10_9_x86_64.whl (100.8 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

zlib_ng-0.4.0-cp38-cp38-win_amd64.whl (88.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

zlib_ng-0.4.0-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.0-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.0-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.0-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.0-cp38-cp38-macosx_10_9_x86_64.whl (100.8 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for zlib-ng-0.4.0.tar.gz
Algorithm Hash digest
SHA256 3b730881aaeb86f9a4995de5e22499406ccf92f8508b5c017c343d27570a8c0a
MD5 7a8f2d3dac977c3da863b504eb88038a
BLAKE2b-256 eb569d959e6b427b3b0e18ee82f99af61b886f200dd4cffe87eaf9d9cebbcc7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ab9cf1fca3128da63a1b67490fb4c753b6a880b183d826d49d4cd0c61951d0fa
MD5 e1de8b019b8cf44cda13f17edf3ee227
BLAKE2b-256 5a5f89a0d37c25c46f51a08485c9c1f490087611d859a1afdaf3837ff5d13a60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7ae20fde7487931146ea1d95b5ea524012c2b20d26d8a8458bf6befff1feaf1b
MD5 683d1d120e69b148c5370c35e7d58b46
BLAKE2b-256 450f60a0ac18d3c843ef15764e45c0d2b0379a2a6bed3f48fc66cca6aa844828

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a1ec74451bf33678a77ebbb9f24364390469396d6a1be69114063343dc654167
MD5 0880ce201b4f1f0c1dd24407c10c76bf
BLAKE2b-256 50ed85c1b6de5d6a42aafa1ac708680ebf211f1dbb36a4ea39eef431b1d69c3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d62b1eaee0ae8fd6f544e199b4de90c018deaf1572f5e0c67ea5eb1adac7bfd3
MD5 3b33a2b5477da7820b79af23265d39dc
BLAKE2b-256 a2d3e83af3edc213505f03f7c22ba3f48afed6fd1345c7b29b904ba3eef3b09b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 959f8951cb7a44df190cbd69327c3ea467b6d6398c448727ecdbd520b6c4ba14
MD5 a81b74446afad5554dd58cde9eb2918d
BLAKE2b-256 ee2e9ebd397e746457eeae0940c36471ee14faa2de0909576f601849fd9d5975

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7fd8a3cd1c108e714b08263a9b62d85d2bb1ba91ede319267ed998b6ac73bac8
MD5 99cb454d93ee81136cfd93b7780ef14e
BLAKE2b-256 c8dc78fc238c49505a2237bdab3fb74729fc63d7930288886abf6462905a32ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0261b43542d1525dfd3475a9e083b624b61dfc5b7fec2a3a7be5908af867fd1b
MD5 59e41f1bce98ba13b593e13ca46c935b
BLAKE2b-256 c8e4176ec4b841b5f7e4bdfb7a4bf36491f29f11e4c3cd99e1feafd17694081a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6cf9e47962c86973543fd5c8fe46148063950fbb591da5775cde54abf6aa95aa
MD5 9de8e93563ef5d543ff2e86a3d752d84
BLAKE2b-256 bafc2749545cac0dfddb2469f34e3ed15cd21ef572c01b14e2388ac13a225a80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1d4df3e5d779ded9451c3e14686233d0a75762512f2eaa74386eadf8fbb2850d
MD5 70966f78c7b7c3247d094d29f26759df
BLAKE2b-256 d2f4574d4d4c755ca61eb1fb3b04f79ba811f6f76079c3e993b183d8aa9b3edf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9480339df63dc83dbe17ed01ac2fcac2e1e3fcf95811d86f9118823b6434ac58
MD5 1ab63bfe174f531885fbaad0f1f66e3c
BLAKE2b-256 4a49f9f7151ea631191dfccadd18688d83f985aacc3fb3578631630dac23e146

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8430bbbca7689ce87735970bc3b9dcb1b6d1453aa6c01f5a6850a7c323e100c4
MD5 0f85899b969e3b6fbf3595eef176d891
BLAKE2b-256 98393ac3efcfe60262a03650a500f44c2693f070fbcaf0ec3bf28dca194b52a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a3731a1e44290a2ca568690b8c6b62994377d929fd9b2808e60ea371f21781f4
MD5 7d36236c038c47b140b386c30b279176
BLAKE2b-256 999520064ef85b848c255e7e35cb4e48a017d62646c40e43a76ec0afaaad81f6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zlib_ng-0.4.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 88.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.1

File hashes

Hashes for zlib_ng-0.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 57c53634157142b208b6dd4dbb21b6b67392afb7b181be0e97a09bfc7201819b
MD5 b5f31a5b54ad474a57e5a359875a55e0
BLAKE2b-256 c0e8a7bfce85df37ef5cd97081027f0f15aebe20c43a85b595e2305b96ae881b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e1e122967cacce2f1f04b5ee1ea89642997f8a312be6b527dc4a8e92deb834dd
MD5 2dacaad8ac0dce5da6e64e4a7e18d396
BLAKE2b-256 337ad65dabee5c511b08c2608c3c075bff0178bc0994c08c41d5b6c35e95560f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ba917d5e574ae67b3984835791b5887592d0cb2877d5bfe22c3ab7ef30a28979
MD5 f7f82f33d2454b58de5a98677f763487
BLAKE2b-256 cabd8fb964b5f38dbca89c6291b7a201cbba2e11cfd3bf9913a7a35cf477027c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e926e2f8a31a3bfd0e1e2ffc3fb9956126ee17b4477ee98aa4e51b7bdc7ad41d
MD5 f8ce0f87782b48d1046d6bbb9d3e78c7
BLAKE2b-256 4b12ee83cdc0c4cb17d530798a02e39d7e40b52d52bdae7ad8395c0aa629be78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0b87aba7e64de1efb5a965d51551b63efc24d9cc77671b7ea28f336162edc733
MD5 1c48b60bba00b505311a94a813249575
BLAKE2b-256 cb5959d5b1ce3db6b649468816b8ce591eba347ca4ba875a1ff21923b97074e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 274da13e42dc2197f8c24e321cc9cc4d1eef790512485462d72832343fe8f72a
MD5 e674edcdd9a80ee9d8c56b6774c2eed6
BLAKE2b-256 6866b66c84834d66a6c4c6d8acfa8cc4c64a6f5c094f78e79d13e19d61dad11f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zlib_ng-0.4.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 88.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.1

File hashes

Hashes for zlib_ng-0.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8b2a635d018b3dbed6844ceca08c0f9a170ebdcc9299ab080e4f63b757faaeae
MD5 1a00531ce296f4b79376a6cbd4559447
BLAKE2b-256 3a5d630a7fbf4461563b715696632ddcf7b743bbecc865c54659b2cbb72cfbac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6db621bdd34ef500ec1b44a5190fe5e967eee9386140be6bc8769ec15e355c4b
MD5 6855d9a6df0193424b407a9b89883ed0
BLAKE2b-256 c47dd67f1b7cb4054effc77059c58b804e818b5540aa2905ab580f738b61508d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 39f69f92c7f8d107f406d981c1383c749894d737699116138de14497b0e0b041
MD5 15733c1c1ece8bdc9a94cf928c22332e
BLAKE2b-256 d242a0af920e9926a611ecfd5dec768dff913d9c37a8f39b35281fbfa6212cc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cd4c9d4945f366a0f295e9356dd9ef291544adbe42cabcc121a28b202dd8809b
MD5 0ab973a30759707637f29750cb110be1
BLAKE2b-256 a4217c5f001e8855c6e6b0eedfbbd91752d44159cb7ce8d7a8180900ef17fd8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 07694a956028a66133c52ebf802d6185c6e986fbec5c4e403b997e044b30db8d
MD5 5399337ff863e6fbfbc30d9672cfb59f
BLAKE2b-256 ee51e82a22522caa96004d7dee6dd45daba359eafece538d77e0a72597a25e52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 096d319b94454c174dde78886a8d4a0f488186a4fbd006bd1819360e0e8b5348
MD5 f43fde7c50670932f56d29368b252648
BLAKE2b-256 6322bc4b6a94fde76c60b6fad132446836cfc3827f63e4dc1aa1e70404998c31

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zlib_ng-0.4.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 88.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.1

File hashes

Hashes for zlib_ng-0.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ec04f0a21e711a654a9ea1dc5966c29231301625cfc199ca1ec0cdedbf921377
MD5 030f23e4b53d2109505a1bf327a50ac4
BLAKE2b-256 e622f029b0405390cd2970c5bfcfb21dcdf820f917930ab8d72d14afebcd4686

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 55a47ce2249581bc00decc5fc4aadf1f48c5edde770ff5aa649c2f0b782c9aba
MD5 b0306ffe449fc170778dd1e4f679faee
BLAKE2b-256 0e1a48e1c65d154306f5d6bacd550cf388aec02985a8ad84419f87064ff2683a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9b49346d528da8e13575bb8bfa2ee5f74398422e81d4be6001afb5c0621dc412
MD5 49eb81e04c185704b83c2469a859b92e
BLAKE2b-256 f572730550948d39f013403daa7d200a71235f6693606e13ef4302e683f654bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70e192695fd7bac2c3db529a873f57e10a8d42383223b0c5dc281793be4b1b83
MD5 2127d9d0b33962cadd2b566987cad6b8
BLAKE2b-256 eff0bcd226d5f78a77981e5472c92938135dbbef869659f12d4ca59e9d9e6743

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8ac2405b42420abd9dccfe5d5f05c052aaf88ee66aec0d3fb4ee171826846d8a
MD5 407d800680d0999cfbfd0e738364810e
BLAKE2b-256 416cd299fb691b83e154c8389b37d886906d7ed5678e0d5d4f3cb1e343dd0dd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9b53458b4baa0554df93430bfda71a6861510d6641ac75192e6b9c2485d01a3a
MD5 4acd84c1f69541a05c1afe673e267b80
BLAKE2b-256 a10e8d72ff83a4125867ac127d92ec183e1c6fa2194f48d2743b1b4101d533ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zlib_ng-0.4.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 88.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.1

File hashes

Hashes for zlib_ng-0.4.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4a05cafa6a15284406a8c92eed06faa439dfd26b6c9c697719be450b919b459d
MD5 da5399f9ed99eec5a6fe20d82e5664c4
BLAKE2b-256 ea62d098f97110c99ac461d7e60304e7e203ad0ac2e54b4e407986f58da3d6cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b585e8ddd357fe4677c0c738e5962ca867e157257f3c33f2fa8965e04bdb5836
MD5 4889add2337479d32a316aac8fc07c0f
BLAKE2b-256 432a19aa9fadcccff73edcba4235058119ad19854485a1b975a8fd879ff56795

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 209a4a2bb0797598f49aa7b7a9e8714b9f69a64777957eba476209d26bfec17b
MD5 1711d102fc47668a65650d4f6d74c73f
BLAKE2b-256 ed0436527280adc39f1e0f9c5266597a3e1858d29bf46d264cb5020d8dca175b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 67d37a39ed6521dfc31230f78ba095141d2317ad41bed9270eddfd1a37b9f076
MD5 2b8aadad57ad89827c25ca68747c10ad
BLAKE2b-256 e3fd2662792c1db02389d3360cc81d97d3c37962b556f1afd97e60195320a607

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2b53d72a2787ad5170a1c4b2444f14f064017bdc575ac43547054fdf0e8f8c4e
MD5 4823411f8b9c493058d9bdc6aa3332c1
BLAKE2b-256 d222ec4937cc9a1d0965c41ea3b7966ab090abb1941245f11b8b55666c520628

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 690d1ee223a75c61bb628b7203d06d08ea4e10e88c822a4fe4fa8bdad0955608
MD5 eccd0b2dd54203e7a8aab2877ff3ec33
BLAKE2b-256 ba8db1c4bbe248008a1f73bdc1ce36638f591a9fef77f2296589d3f0c44afa55

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zlib_ng-0.4.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 88.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.1

File hashes

Hashes for zlib_ng-0.4.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 08a52fb23236870b956d02400a372f1c3a8adef298552466b6476a05ba061027
MD5 9d28635493395c0ed7a110a5308fcf59
BLAKE2b-256 a0d254f372a512327362461789a51485effa752a45e5f07c31041dd9b1783936

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 676221d0abb724d97a1b693b99b63fe164b65cd419c31556f5bf538f5a950031
MD5 026371f53ca0688a22dd22ede90ced1e
BLAKE2b-256 c6af2bd63c091280a9a423c347a393bf3887b2e8283ae3af2c1443b4bdd24df8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4edeb933440e94d2c47331314edfda20f51a3640eb8e12a7a478859874d35a4a
MD5 939d9a14e0ce391e876449cc68c83568
BLAKE2b-256 004412bcf0de130163e063ca85d10b8692d820cb11e6e8ce47747978a2698265

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f338be6e62e05636467b89c26e0404d0e3d726da74aa3510be1e19e7681832b
MD5 8a39c4a3e6d0dd6feb1737b650f5d403
BLAKE2b-256 a2af5cfa8285423e470ed59018d7a3ee7878c77ef8313596fd84e743b77a10f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7dca9af5f84edcc98408af60c4fd220fe2ba3f6e7324b6b97483ac430e1ba89b
MD5 a9db47271629feb4049a3ee81c681735
BLAKE2b-256 7f770f636de3f0cb72daf587fc898fbf2809adb73a2bee33165e44ac8a79c87a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zlib_ng-0.4.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8faa04e00261afd0e532392f70e74428687d00a37b6c3e63e6eb27ad8a81a629
MD5 d11aa727bcd55f4b38c6681114399d38
BLAKE2b-256 933f8f66803dacd81116fa013cf6c56252a269db5559712210265486d2bc275a

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