zlib-ng


Namezlib-ng JSON
Version 0.4.2 PyPI version JSON
download
home_pagehttps://github.com/pycompression/python-zlib-ng
SummaryDrop-in replacement for zlib and gzip modules using zlib-ng
upload_time2024-04-10 11:51:44
maintainerNone
docs_urlNone
authorLeiden University Medical Center
requires_python>=3.8
licensePSF-2.0
keywords zlib-ng zlib compression deflate gzip
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            .. image:: https://img.shields.io/pypi/v/zlib-ng.svg
  :target: https://pypi.org/project/zlib-ng/
  :alt:

.. image:: https://img.shields.io/conda/v/conda-forge/python-zlib-ng.svg
  :target: https://github.com/conda-forge/python-zlib-ng-feedstock
  :alt:

.. image:: https://img.shields.io/pypi/pyversions/zlib-ng.svg
  :target: https://pypi.org/project/zlib-ng/
  :alt:

.. image:: https://img.shields.io/pypi/l/zlib-ng.svg
  :target: https://github.com/pycompression/python-zlib-ng/blob/main/LICENSE
  :alt:

.. image:: https://img.shields.io/conda/pn/conda-forge/python-zlib-ng.svg
  :target: https://github.com/conda-forge/python-zlib-ng-feedstock
  :alt:

.. image:: https://github.com/pycompression/python-zlib-ng//actions/workflows/ci.yml/badge.svg
  :target: https://github.com/pycompression/python-zlib-ng/actions
  :alt:

.. image:: https://codecov.io/gh/pycompression/python-zlib-ng/branch/develop/graph/badge.svg
  :target: https://codecov.io/gh/pycompression/python-zlib-ng
  :alt:

.. image:: https://readthedocs.org/projects/python-zlib-ng/badge
   :target: https://python-zlib-ng.readthedocs.io
   :alt:


python-zlib-ng
==============

.. introduction start

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
<https://github.com/zlib-ng/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_.

.. introduction end

Quickstart
----------

.. quickstart start

The python-zlib-ng modules can be imported as follows

.. code-block:: python

    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
<https://python-zlib-ng.readthedocs.io>`_.

``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 <https://python-zlib-ng.readthedocs.io>`_.


.. quickstart end

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
<https://python-zlib-ng.readthedocs.io/en/stable/index.html#installation>`_.

python-zlib-ng as a dependency in your project
----------------------------------------------

.. dependency start

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']
    },

.. dependency end

.. _differences-with-zlib-and-gzip-modules:

Differences with zlib and gzip modules
--------------------------------------

.. differences start

+ 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.

.. differences end

Contributing
------------
.. contributing start

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
<https://github.com/rhpvorderman/python-zlib-ng/issues>`_.

.. contributing end

Acknowledgements
----------------

.. acknowledgements start

This project builds upon the software and experience of many.  Many thanks to:

+ The `zlib-ng contributors
  <https://github.com/zlib-ng/zlib-ng/graphs/contributors>`_ for making the
  zlib-ng library.
+ The `CPython contributors
  <https://github.com/python/cpython/graphs/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 <https://github.com/orgs/actions/people>`_ for
  creating the actions CI service that enables building and testing on all
  three major operating systems.

.. acknowledgements end

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/pycompression/python-zlib-ng",
    "name": "zlib-ng",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "zlib-ng zlib compression deflate gzip",
    "author": "Leiden University Medical Center",
    "author_email": "r.h.p.vorderman@lumc.nl",
    "download_url": "https://files.pythonhosted.org/packages/af/bd/e8c61e8e8640ce4fc5dc478054c383be367e2171f0ebbe6b7313c126abd7/zlib-ng-0.4.2.tar.gz",
    "platform": null,
    "description": ".. image:: https://img.shields.io/pypi/v/zlib-ng.svg\n  :target: https://pypi.org/project/zlib-ng/\n  :alt:\n\n.. image:: https://img.shields.io/conda/v/conda-forge/python-zlib-ng.svg\n  :target: https://github.com/conda-forge/python-zlib-ng-feedstock\n  :alt:\n\n.. image:: https://img.shields.io/pypi/pyversions/zlib-ng.svg\n  :target: https://pypi.org/project/zlib-ng/\n  :alt:\n\n.. image:: https://img.shields.io/pypi/l/zlib-ng.svg\n  :target: https://github.com/pycompression/python-zlib-ng/blob/main/LICENSE\n  :alt:\n\n.. image:: https://img.shields.io/conda/pn/conda-forge/python-zlib-ng.svg\n  :target: https://github.com/conda-forge/python-zlib-ng-feedstock\n  :alt:\n\n.. image:: https://github.com/pycompression/python-zlib-ng//actions/workflows/ci.yml/badge.svg\n  :target: https://github.com/pycompression/python-zlib-ng/actions\n  :alt:\n\n.. image:: https://codecov.io/gh/pycompression/python-zlib-ng/branch/develop/graph/badge.svg\n  :target: https://codecov.io/gh/pycompression/python-zlib-ng\n  :alt:\n\n.. image:: https://readthedocs.org/projects/python-zlib-ng/badge\n   :target: https://python-zlib-ng.readthedocs.io\n   :alt:\n\n\npython-zlib-ng\n==============\n\n.. introduction start\n\nFaster zlib and gzip compatible compression and decompression\nby providing Python bindings for the zlib-ng library.\n\nThis package provides Python bindings for the `zlib-ng\n<https://github.com/zlib-ng/zlib-ng>`_ library.\n\n``python-zlib-ng`` provides the bindings by offering three modules:\n\n+ ``zlib_ng``: A drop-in replacement for the zlib module that uses zlib-ng to\n  accelerate its performance.\n\n+ ``gzip_ng``: A drop-in replacement for the gzip module that uses ``zlib_ng``\n  instead of ``zlib`` to perform its compression and checksum tasks, which\n  improves performance.\n\n+ ``gzip_ng_threaded`` offers an ``open`` function which returns buffered read\n  or write streams that can be used to read and write large files while\n  escaping the GIL using one or multiple threads. This functionality only\n  works for streaming, seeking is not supported.\n\n``zlib_ng`` and ``gzip_ng`` are almost fully compatible with ``zlib`` and\n``gzip`` from the Python standard library. There are some minor differences\nsee: differences-with-zlib-and-gzip-modules_.\n\n.. introduction end\n\nQuickstart\n----------\n\n.. quickstart start\n\nThe python-zlib-ng modules can be imported as follows\n\n.. code-block:: python\n\n    from zlib_ng import zlib_ng\n    from zlib_ng import gzip_ng\n    from zlib_ng import gzip_ng_threaded\n\n``zlib_ng`` and ``gzip_ng`` are meant to be used as drop in replacements so\ntheir api and functions are the same as the stdlib's modules.\n\nA full API documentation can be found on `our readthedocs page\n<https://python-zlib-ng.readthedocs.io>`_.\n\n``python -m zlib_ng.gzip_ng`` implements a fully featured gzip-like command line\napplication (just like ``python -m gzip``, but better). Full usage documentation can be\nfound on `our readthedocs page <https://python-zlib-ng.readthedocs.io>`_.\n\n\n.. quickstart end\n\nInstallation\n------------\n- with pip: ``pip install zlib-ng``\n- with conda: ``conda install python-zlib-ng``\n\nInstallation is supported on Linux, Windows and MacOS. For more advanced\ninstallation options check the `documentation\n<https://python-zlib-ng.readthedocs.io/en/stable/index.html#installation>`_.\n\npython-zlib-ng as a dependency in your project\n----------------------------------------------\n\n.. dependency start\n\nzlib-ng supports numerous platforms but not all of these have pre-built wheels\navailable. To prevent your users from running into issues when installing\nyour project please list a python-zlib-ng dependency as follows.\n\n``setup.cfg``::\n\n    install_requires =\n        zlib-ng; platform.machine == \"x86_64\" or platform.machine == \"AMD64\"\n\n``setup.py``::\n\n    extras_require={\n        \":platform.machine == 'x86_64' or platform.machine == 'AMD64'\": ['zlib-ng']\n    },\n\n.. dependency end\n\n.. _differences-with-zlib-and-gzip-modules:\n\nDifferences with zlib and gzip modules\n--------------------------------------\n\n.. differences start\n\n+ Compression level 1 zlib_ng has a worse compression rate than that in\n  zlib. For other compression levels zlib_ng compresses better.\n+ ``gzip_ng.open`` returns a class ``GzipNGFile`` instead of ``GzipFile``. Since\n  there are differences between the compressed ratios between levels, a\n  difference in naming was chosen to reflect this.\n  ``gzip_ng.GzipFile`` does exist as an alias of\n  ``gzip_ng.GzipNGFile`` for compatibility reasons.\n\n.. differences end\n\nContributing\n------------\n.. contributing start\n\nPlease make a PR or issue if you feel anything can be improved. Bug reports\nare also very welcome. Please report them on the `github issue tracker\n<https://github.com/rhpvorderman/python-zlib-ng/issues>`_.\n\n.. contributing end\n\nAcknowledgements\n----------------\n\n.. acknowledgements start\n\nThis project builds upon the software and experience of many.  Many thanks to:\n\n+ The `zlib-ng contributors\n  <https://github.com/zlib-ng/zlib-ng/graphs/contributors>`_ for making the\n  zlib-ng library.\n+ The `CPython contributors\n  <https://github.com/python/cpython/graphs/contributors>`_.\n  Python-zlib-ng mimicks ``zlibmodule.c`` and ``gzip.py`` from the standard\n  library to make it easier for python users to adopt it.\n+ The `github actions team <https://github.com/orgs/actions/people>`_ for\n  creating the actions CI service that enables building and testing on all\n  three major operating systems.\n\n.. acknowledgements end\n",
    "bugtrack_url": null,
    "license": "PSF-2.0",
    "summary": "Drop-in replacement for zlib and gzip modules using zlib-ng",
    "version": "0.4.2",
    "project_urls": {
        "Homepage": "https://github.com/pycompression/python-zlib-ng"
    },
    "split_keywords": [
        "zlib-ng",
        "zlib",
        "compression",
        "deflate",
        "gzip"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "297afb46df7d02b7160396180a11faf3cbe3882b74390504f1b1686ace15c71f",
                "md5": "f26cc9b45f3ef3bb58d4b0cd36bcf243",
                "sha256": "03f45a7eeb1ef7ad48ce7f67b5790bfeb4ef618c8638756ae1a9050ee7de8dda"
            },
            "downloads": -1,
            "filename": "zlib_ng-0.4.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f26cc9b45f3ef3bb58d4b0cd36bcf243",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 101092,
            "upload_time": "2024-04-10T11:56:15",
            "upload_time_iso_8601": "2024-04-10T11:56:15.195465Z",
            "url": "https://files.pythonhosted.org/packages/29/7a/fb46df7d02b7160396180a11faf3cbe3882b74390504f1b1686ace15c71f/zlib_ng-0.4.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4e21779fffb527bc472e1b524bd5129762e62a0ab962599242a3267be83e8cee",
                "md5": "200f21aa76721fae2bdfc129d8744b98",
                "sha256": "bc14c075abb83ab0adc77262457046dfcd110007f8e6b2749cd975bce7d47915"
            },
            "downloads": -1,
            "filename": "zlib_ng-0.4.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "200f21aa76721fae2bdfc129d8744b98",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 98525,
            "upload_time": "2024-04-10T12:14:50",
            "upload_time_iso_8601": "2024-04-10T12:14:50.616160Z",
            "url": "https://files.pythonhosted.org/packages/4e/21/779fffb527bc472e1b524bd5129762e62a0ab962599242a3267be83e8cee/zlib_ng-0.4.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f17eade0165e1a1d526a2fd7be1d35d979b6eef044e9ff2e31891bdcc865f6fe",
                "md5": "d3c024374bae57d0a876b49849524ab0",
                "sha256": "39a6ee210cefc1a0bd74db5e51689b69c450151e947d2952044ce413a22e2505"
            },
            "downloads": -1,
            "filename": "zlib_ng-0.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d3c024374bae57d0a876b49849524ab0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 107920,
            "upload_time": "2024-04-10T11:51:24",
            "upload_time_iso_8601": "2024-04-10T11:51:24.892386Z",
            "url": "https://files.pythonhosted.org/packages/f1/7e/ade0165e1a1d526a2fd7be1d35d979b6eef044e9ff2e31891bdcc865f6fe/zlib_ng-0.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "56c0f9ef23ebdfcf9249235f8af2af5aada64542f066d9d98979eca572b86d93",
                "md5": "9bf150d2a7d370b0684955fc6e5d3dfb",
                "sha256": "23b0061d827e7620f7e36e3212f5dc233db30de3c58648d4c8c7f2ec1bcf649f"
            },
            "downloads": -1,
            "filename": "zlib_ng-0.4.2-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9bf150d2a7d370b0684955fc6e5d3dfb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 101498,
            "upload_time": "2024-04-10T12:14:51",
            "upload_time_iso_8601": "2024-04-10T12:14:51.888151Z",
            "url": "https://files.pythonhosted.org/packages/56/c0/f9ef23ebdfcf9249235f8af2af5aada64542f066d9d98979eca572b86d93/zlib_ng-0.4.2-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "91c2cf0a89c35205b7cb9f03faa8704593696f8a9b1a9cd8fe250343a2dfa6aa",
                "md5": "44e2b37b1cd1e9900c65d14c0e8c8214",
                "sha256": "d05b002ab33aa8e549a54cf63d6a26580b72726f4f065e074056d3e04314baaf"
            },
            "downloads": -1,
            "filename": "zlib_ng-0.4.2-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "44e2b37b1cd1e9900c65d14c0e8c8214",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 111739,
            "upload_time": "2024-04-10T11:51:26",
            "upload_time_iso_8601": "2024-04-10T11:51:26.220135Z",
            "url": "https://files.pythonhosted.org/packages/91/c2/cf0a89c35205b7cb9f03faa8704593696f8a9b1a9cd8fe250343a2dfa6aa/zlib_ng-0.4.2-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b6e24baa03b24674f7c7151bbae9dc44712c1f0993f542003b8e29f189c9cfee",
                "md5": "4022ff38eaf6042b2fa63fc0d2e4788d",
                "sha256": "e1e9c2813bbf28cd9f766a780de13e61141ac4ee9e85de58a0d17ff532e1b01c"
            },
            "downloads": -1,
            "filename": "zlib_ng-0.4.2-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4022ff38eaf6042b2fa63fc0d2e4788d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 88381,
            "upload_time": "2024-04-10T12:05:15",
            "upload_time_iso_8601": "2024-04-10T12:05:15.685235Z",
            "url": "https://files.pythonhosted.org/packages/b6/e2/4baa03b24674f7c7151bbae9dc44712c1f0993f542003b8e29f189c9cfee/zlib_ng-0.4.2-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "52880bf7ebf685c7d25da6c3b7ecaae1ad9d9916c0d8366b54d1e03cc2470f68",
                "md5": "a8fe244a00fbb0e9b0a61dcc2f59ec02",
                "sha256": "e8e437f43f0e16df3afb126a786a127212694adb746f7d98efc7a9e1a2727c59"
            },
            "downloads": -1,
            "filename": "zlib_ng-0.4.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a8fe244a00fbb0e9b0a61dcc2f59ec02",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 101090,
            "upload_time": "2024-04-10T11:56:17",
            "upload_time_iso_8601": "2024-04-10T11:56:17.027470Z",
            "url": "https://files.pythonhosted.org/packages/52/88/0bf7ebf685c7d25da6c3b7ecaae1ad9d9916c0d8366b54d1e03cc2470f68/zlib_ng-0.4.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5ebba06ff6690986d72be48524c63ab54351e9ee4312ba33a873deb7c6f0c9f8",
                "md5": "5aa0a56e47b21c23d00982737fb409ce",
                "sha256": "bcea393cc5aa6d6eba44abbbe2b74922b53521be142086c1617c2d483d063eef"
            },
            "downloads": -1,
            "filename": "zlib_ng-0.4.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5aa0a56e47b21c23d00982737fb409ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 98529,
            "upload_time": "2024-04-10T12:14:53",
            "upload_time_iso_8601": "2024-04-10T12:14:53.631530Z",
            "url": "https://files.pythonhosted.org/packages/5e/bb/a06ff6690986d72be48524c63ab54351e9ee4312ba33a873deb7c6f0c9f8/zlib_ng-0.4.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "45337c74a90218a04a63c52de3928fa7803dd5071bd4a697b6c3ccd1119f3e3d",
                "md5": "7743c3d695b8e3905f13458cd795b072",
                "sha256": "b2b42f6e22fb05f7d8fae055fb1d9ff43c2da009c9fb4fe028a5e8b38dddea11"
            },
            "downloads": -1,
            "filename": "zlib_ng-0.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7743c3d695b8e3905f13458cd795b072",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 107936,
            "upload_time": "2024-04-10T11:51:27",
            "upload_time_iso_8601": "2024-04-10T11:51:27.836494Z",
            "url": "https://files.pythonhosted.org/packages/45/33/7c74a90218a04a63c52de3928fa7803dd5071bd4a697b6c3ccd1119f3e3d/zlib_ng-0.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6be4e523188ead4f9e20e5add486ca5e798e679dd8df1cb7c8bcb24b0a72f1d3",
                "md5": "f43b089a29d20e921ecc4d28d6a7921d",
                "sha256": "02b9eb516ce63d352e75cf678bdc58c4f6ea0d890f973cbd02be169961dff214"
            },
            "downloads": -1,
            "filename": "zlib_ng-0.4.2-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f43b089a29d20e921ecc4d28d6a7921d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 101499,
            "upload_time": "2024-04-10T12:14:55",
            "upload_time_iso_8601": "2024-04-10T12:14:55.355460Z",
            "url": "https://files.pythonhosted.org/packages/6b/e4/e523188ead4f9e20e5add486ca5e798e679dd8df1cb7c8bcb24b0a72f1d3/zlib_ng-0.4.2-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6512604ee03683fb22ca12249eb28702357fbddc2165e335f20258769d20377a",
                "md5": "e329f6718685b45475c42a2319eb4c67",
                "sha256": "f5bc8c620e43b62d13bb986b9aa7415bb42aa450d7c906155ee7fa512bc677d3"
            },
            "downloads": -1,
            "filename": "zlib_ng-0.4.2-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e329f6718685b45475c42a2319eb4c67",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 111707,
            "upload_time": "2024-04-10T11:51:29",
            "upload_time_iso_8601": "2024-04-10T11:51:29.469505Z",
            "url": "https://files.pythonhosted.org/packages/65/12/604ee03683fb22ca12249eb28702357fbddc2165e335f20258769d20377a/zlib_ng-0.4.2-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f4e4b1467339207e30fc83a466184337ebd40383d7d3e68a6e36259dd63f8d09",
                "md5": "bfdfc140a346b53d6f4aa8e3bb41fa92",
                "sha256": "c58e3211a2462345c42b27ec412a5c6b18c7ad21559e7b3f32297eba586983d1"
            },
            "downloads": -1,
            "filename": "zlib_ng-0.4.2-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "bfdfc140a346b53d6f4aa8e3bb41fa92",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 88382,
            "upload_time": "2024-04-10T12:05:17",
            "upload_time_iso_8601": "2024-04-10T12:05:17.026169Z",
            "url": "https://files.pythonhosted.org/packages/f4/e4/b1467339207e30fc83a466184337ebd40383d7d3e68a6e36259dd63f8d09/zlib_ng-0.4.2-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4b50e6cb9e7f0e3b9ff77e0b31630cdc0187dc552b608118da085acda3317f7f",
                "md5": "be9423d07e0c91cd603b2587b97bdadc",
                "sha256": "e6b189b0d294c49532e86d0c7c37f5f3dafa7803209e163d567ceef501bc65d1"
            },
            "downloads": -1,
            "filename": "zlib_ng-0.4.2-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "be9423d07e0c91cd603b2587b97bdadc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 101250,
            "upload_time": "2024-04-10T11:56:18",
            "upload_time_iso_8601": "2024-04-10T11:56:18.702897Z",
            "url": "https://files.pythonhosted.org/packages/4b/50/e6cb9e7f0e3b9ff77e0b31630cdc0187dc552b608118da085acda3317f7f/zlib_ng-0.4.2-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8d216e33db1b2606df80c5ad23082b556d1f001fe6612b86259538e92379452d",
                "md5": "a9ab94b4b2f4ca4cd3063874dcc1a28a",
                "sha256": "8f87f65345c65e867523a7c41ffe00be802f632b06174e85576196e342ad6d97"
            },
            "downloads": -1,
            "filename": "zlib_ng-0.4.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a9ab94b4b2f4ca4cd3063874dcc1a28a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 98542,
            "upload_time": "2024-04-10T12:14:56",
            "upload_time_iso_8601": "2024-04-10T12:14:56.561448Z",
            "url": "https://files.pythonhosted.org/packages/8d/21/6e33db1b2606df80c5ad23082b556d1f001fe6612b86259538e92379452d/zlib_ng-0.4.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef30bb277cc26bca10767a73a4af0df6925a89276e6ff200c17415be387f8365",
                "md5": "84ad423deaacb6ef48507106179a025d",
                "sha256": "260b7300ed3799803e70cb2eec291b1d7e683c124db06441dd00f48614fb4a9c"
            },
            "downloads": -1,
            "filename": "zlib_ng-0.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "84ad423deaacb6ef48507106179a025d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 108099,
            "upload_time": "2024-04-10T11:51:31",
            "upload_time_iso_8601": "2024-04-10T11:51:31.258307Z",
            "url": "https://files.pythonhosted.org/packages/ef/30/bb277cc26bca10767a73a4af0df6925a89276e6ff200c17415be387f8365/zlib_ng-0.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "761792a4d8414e9f92a0244b4f060c533a58e6a99e2d8be1efd215dc0b627245",
                "md5": "440f92405000c8d58d8f84ac3c3c1d12",
                "sha256": "b4e5586f9833ea79e9be29d6bbc9de35211b1a2d8196aa7aed30faa9a3b0022f"
            },
            "downloads": -1,
            "filename": "zlib_ng-0.4.2-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "440f92405000c8d58d8f84ac3c3c1d12",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 101453,
            "upload_time": "2024-04-10T12:14:58",
            "upload_time_iso_8601": "2024-04-10T12:14:58.244444Z",
            "url": "https://files.pythonhosted.org/packages/76/17/92a4d8414e9f92a0244b4f060c533a58e6a99e2d8be1efd215dc0b627245/zlib_ng-0.4.2-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4cbab250673e5c574e7cf95807ba0bf409307cebe3901151391cbd3b5f90ce77",
                "md5": "2950a6420dcb7c16761a59bcebb18feb",
                "sha256": "b9f8972129d07b3bb1d48bc7e3a08f78292ac46053ef11a5ec75763eb4199c18"
            },
            "downloads": -1,
            "filename": "zlib_ng-0.4.2-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2950a6420dcb7c16761a59bcebb18feb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 111882,
            "upload_time": "2024-04-10T11:51:32",
            "upload_time_iso_8601": "2024-04-10T11:51:32.935705Z",
            "url": "https://files.pythonhosted.org/packages/4c/ba/b250673e5c574e7cf95807ba0bf409307cebe3901151391cbd3b5f90ce77/zlib_ng-0.4.2-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dc42b165d8705ec5be2973218debc45002d2eb7bf1e16fee26d466eeb492f591",
                "md5": "0443ef9e057ba5f8feec5846c74f9eb0",
                "sha256": "4ac1ac2f3045d140a1314ab8d731f77d43c16e1c70dbf4ddcdde89f2babcdcc2"
            },
            "downloads": -1,
            "filename": "zlib_ng-0.4.2-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0443ef9e057ba5f8feec5846c74f9eb0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 88496,
            "upload_time": "2024-04-10T12:05:18",
            "upload_time_iso_8601": "2024-04-10T12:05:18.590476Z",
            "url": "https://files.pythonhosted.org/packages/dc/42/b165d8705ec5be2973218debc45002d2eb7bf1e16fee26d466eeb492f591/zlib_ng-0.4.2-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3431fbff245a0d5e018ee74f51efb12bc3a23a93f07b546e2edf81e930a6cd8b",
                "md5": "6968767a6e98487ecfe2452969834954",
                "sha256": "1f3db61906dc6581b88e1b14428af311adbc19a0f48e8225b65a352e7c656739"
            },
            "downloads": -1,
            "filename": "zlib_ng-0.4.2-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6968767a6e98487ecfe2452969834954",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 101109,
            "upload_time": "2024-04-10T11:56:20",
            "upload_time_iso_8601": "2024-04-10T11:56:20.304100Z",
            "url": "https://files.pythonhosted.org/packages/34/31/fbff245a0d5e018ee74f51efb12bc3a23a93f07b546e2edf81e930a6cd8b/zlib_ng-0.4.2-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8e8b2b9aef5ad2561f898dfa6467cb43700d0554de05e8eed66fd8717c2f1657",
                "md5": "646c083df10bd2783385c642ccc3efed",
                "sha256": "0731d6f74f12aff84bd75b425d26507f89283bdbf03d0dad2a54f4206121bfd3"
            },
            "downloads": -1,
            "filename": "zlib_ng-0.4.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "646c083df10bd2783385c642ccc3efed",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 98575,
            "upload_time": "2024-04-10T12:14:59",
            "upload_time_iso_8601": "2024-04-10T12:14:59.974313Z",
            "url": "https://files.pythonhosted.org/packages/8e/8b/2b9aef5ad2561f898dfa6467cb43700d0554de05e8eed66fd8717c2f1657/zlib_ng-0.4.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7926e8f809b4ab3658c9808bb969a690aadfcce0d29398852576927c86ba685e",
                "md5": "b72a8e4540de1ac614b1d4b7c6e1190c",
                "sha256": "554f4222b05e91647c5a30b7487e1debe8d0857c18094c59df562f0504d37874"
            },
            "downloads": -1,
            "filename": "zlib_ng-0.4.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b72a8e4540de1ac614b1d4b7c6e1190c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 108005,
            "upload_time": "2024-04-10T11:51:34",
            "upload_time_iso_8601": "2024-04-10T11:51:34.595579Z",
            "url": "https://files.pythonhosted.org/packages/79/26/e8f809b4ab3658c9808bb969a690aadfcce0d29398852576927c86ba685e/zlib_ng-0.4.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "003d086717ff87fe995a28e9ece21115362d381c4385d8ccf7061445e497a031",
                "md5": "baf29f5fbe3baf590608175e67850c39",
                "sha256": "799cf284a2a1ce0a9741b9353e82cb89895652841ab5b2c56222e74d70e54afd"
            },
            "downloads": -1,
            "filename": "zlib_ng-0.4.2-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "baf29f5fbe3baf590608175e67850c39",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 101583,
            "upload_time": "2024-04-10T12:15:01",
            "upload_time_iso_8601": "2024-04-10T12:15:01.483116Z",
            "url": "https://files.pythonhosted.org/packages/00/3d/086717ff87fe995a28e9ece21115362d381c4385d8ccf7061445e497a031/zlib_ng-0.4.2-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "387843a53e380571bbb954e01213212c432fc5f1435b52337912d8095319bbdb",
                "md5": "b4ae5bf08a7378404a89a2d06ea8c4c0",
                "sha256": "79e32a8d829ec28465ec6ecd5ec04a1e284ef0a6fbb2283a5073d1166d7b20d4"
            },
            "downloads": -1,
            "filename": "zlib_ng-0.4.2-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b4ae5bf08a7378404a89a2d06ea8c4c0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 111791,
            "upload_time": "2024-04-10T11:51:35",
            "upload_time_iso_8601": "2024-04-10T11:51:35.941609Z",
            "url": "https://files.pythonhosted.org/packages/38/78/43a53e380571bbb954e01213212c432fc5f1435b52337912d8095319bbdb/zlib_ng-0.4.2-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "364b4eabb70ae40fbf3138e0cc6f3451eed8402acf659fce9e4fe5f92c689efa",
                "md5": "84ce975f4d64b9cd3d785c94ccf798c0",
                "sha256": "d8d5bc6811fb65189a379f14818e88e6b783bfc0d422b96269d809c242a97a75"
            },
            "downloads": -1,
            "filename": "zlib_ng-0.4.2-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "84ce975f4d64b9cd3d785c94ccf798c0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 88419,
            "upload_time": "2024-04-10T12:05:20",
            "upload_time_iso_8601": "2024-04-10T12:05:20.173918Z",
            "url": "https://files.pythonhosted.org/packages/36/4b/4eabb70ae40fbf3138e0cc6f3451eed8402acf659fce9e4fe5f92c689efa/zlib_ng-0.4.2-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a1fc85e10bfb1fba3e9a22e1a615d598dc0ac782dc059251c79db70174527fab",
                "md5": "12ed125b7008fab58a8e7689bba7d008",
                "sha256": "b8f9186d5ef4c7808876fd06a3d270ba42a9bfab312c3c9116145fe5625060d1"
            },
            "downloads": -1,
            "filename": "zlib_ng-0.4.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "12ed125b7008fab58a8e7689bba7d008",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 101093,
            "upload_time": "2024-04-10T11:56:21",
            "upload_time_iso_8601": "2024-04-10T11:56:21.399071Z",
            "url": "https://files.pythonhosted.org/packages/a1/fc/85e10bfb1fba3e9a22e1a615d598dc0ac782dc059251c79db70174527fab/zlib_ng-0.4.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0558488b49fd401e84125606c67c6addf38d0e93b75b1933ecb991a47251d3cf",
                "md5": "79cfef45c8d73312e91e13a20fff03cc",
                "sha256": "ec291675957c8188ad5d2f16dea2c318203d9780389edfdf56992c9178682368"
            },
            "downloads": -1,
            "filename": "zlib_ng-0.4.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "79cfef45c8d73312e91e13a20fff03cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 107924,
            "upload_time": "2024-04-10T11:51:37",
            "upload_time_iso_8601": "2024-04-10T11:51:37.077944Z",
            "url": "https://files.pythonhosted.org/packages/05/58/488b49fd401e84125606c67c6addf38d0e93b75b1933ecb991a47251d3cf/zlib_ng-0.4.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7bc92a0c346b38e7b8b38fcf3a0032d1ddf14e1d95410579765d8c6e33fd29af",
                "md5": "e195005babf1190fdeff6816d5d93553",
                "sha256": "ee120a68095690258acec322164bafcdea97da7f41d1e8facbd1900479e43af2"
            },
            "downloads": -1,
            "filename": "zlib_ng-0.4.2-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e195005babf1190fdeff6816d5d93553",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 111738,
            "upload_time": "2024-04-10T11:51:38",
            "upload_time_iso_8601": "2024-04-10T11:51:38.714628Z",
            "url": "https://files.pythonhosted.org/packages/7b/c9/2a0c346b38e7b8b38fcf3a0032d1ddf14e1d95410579765d8c6e33fd29af/zlib_ng-0.4.2-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f3044d35d8df0aee80da5d8110c3ed7238b3803e493f4f10b660be0b3b0e731",
                "md5": "e3dba1a46724c68425c1aff6a314227b",
                "sha256": "5cdff9b67e0d304978c63955d586aa76f65b93f03105db3da7b9162a8d4b93c8"
            },
            "downloads": -1,
            "filename": "zlib_ng-0.4.2-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e3dba1a46724c68425c1aff6a314227b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 88424,
            "upload_time": "2024-04-10T12:05:21",
            "upload_time_iso_8601": "2024-04-10T12:05:21.207459Z",
            "url": "https://files.pythonhosted.org/packages/8f/30/44d35d8df0aee80da5d8110c3ed7238b3803e493f4f10b660be0b3b0e731/zlib_ng-0.4.2-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f98c3e1a4d8b075e3b0577124b8ce1d5212eb2136f3e89ca60ad171f01adfdea",
                "md5": "f0dbd1332ad42f05c51c94476c198194",
                "sha256": "12c186f5f0fb4b7d5575958398e3bc6a3fcaab740196cd25eaf0705a91ecf903"
            },
            "downloads": -1,
            "filename": "zlib_ng-0.4.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f0dbd1332ad42f05c51c94476c198194",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 101062,
            "upload_time": "2024-04-10T11:56:22",
            "upload_time_iso_8601": "2024-04-10T11:56:22.464040Z",
            "url": "https://files.pythonhosted.org/packages/f9/8c/3e1a4d8b075e3b0577124b8ce1d5212eb2136f3e89ca60ad171f01adfdea/zlib_ng-0.4.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6f488fdf6591c85f78438c2aea86634de10ac760d05d2ff5980529b2fdd30350",
                "md5": "d8520ff54ec27e37537b0662eb1a42f9",
                "sha256": "084d3b25fcfab14fd1d84036fd79bf8ede8dbed541e82fed0259c9c131f51de8"
            },
            "downloads": -1,
            "filename": "zlib_ng-0.4.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d8520ff54ec27e37537b0662eb1a42f9",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 105000,
            "upload_time": "2024-04-10T11:51:39",
            "upload_time_iso_8601": "2024-04-10T11:51:39.736143Z",
            "url": "https://files.pythonhosted.org/packages/6f/48/8fdf6591c85f78438c2aea86634de10ac760d05d2ff5980529b2fdd30350/zlib_ng-0.4.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4bdf32767ab7fbf124584687e8616b5e75b3b6652369646974fb464dd78e9b18",
                "md5": "dfc6e3225b2242041f6f89a35b6c1f67",
                "sha256": "894ce5a2eeabdc4dab56c094118b4754e74666d66389cd285bded17133b3211e"
            },
            "downloads": -1,
            "filename": "zlib_ng-0.4.2-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "dfc6e3225b2242041f6f89a35b6c1f67",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 88705,
            "upload_time": "2024-04-10T12:05:22",
            "upload_time_iso_8601": "2024-04-10T12:05:22.269895Z",
            "url": "https://files.pythonhosted.org/packages/4b/df/32767ab7fbf124584687e8616b5e75b3b6652369646974fb464dd78e9b18/zlib_ng-0.4.2-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "956a941c05b1f4a353ee2197e0cfeedf09f30fa7102220b949dfd62cf455bf5d",
                "md5": "ec809c46251766615b1e2a5c297168ce",
                "sha256": "538eb3601b3d8bfbbf52cd2d752e9391ff1672c97d1cf2da8bac129aca08b282"
            },
            "downloads": -1,
            "filename": "zlib_ng-0.4.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ec809c46251766615b1e2a5c297168ce",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 101072,
            "upload_time": "2024-04-10T11:56:23",
            "upload_time_iso_8601": "2024-04-10T11:56:23.591642Z",
            "url": "https://files.pythonhosted.org/packages/95/6a/941c05b1f4a353ee2197e0cfeedf09f30fa7102220b949dfd62cf455bf5d/zlib_ng-0.4.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ee97143f95414e332fa7383146771070199fc05bf1ef3cae3ac0d6903589a82f",
                "md5": "49e956a609b76c8dda74eae1c53e838e",
                "sha256": "d2d5182aeb55887348c47a1f4be0aab77357a9727e3e2f651fa3a5a855a9e97b"
            },
            "downloads": -1,
            "filename": "zlib_ng-0.4.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "49e956a609b76c8dda74eae1c53e838e",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 105000,
            "upload_time": "2024-04-10T11:51:41",
            "upload_time_iso_8601": "2024-04-10T11:51:41.146902Z",
            "url": "https://files.pythonhosted.org/packages/ee/97/143f95414e332fa7383146771070199fc05bf1ef3cae3ac0d6903589a82f/zlib_ng-0.4.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "52e5b857b08038e54ea4cd098f157958d81095050bfc20b46d9ac35e22d145f2",
                "md5": "65195c589b7dc2e4848473cff00869d6",
                "sha256": "b2005996ff958dfa8223da53ac2945608cc272f3093ba6377900ba8f73e46090"
            },
            "downloads": -1,
            "filename": "zlib_ng-0.4.2-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "65195c589b7dc2e4848473cff00869d6",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 88720,
            "upload_time": "2024-04-10T12:05:23",
            "upload_time_iso_8601": "2024-04-10T12:05:23.316942Z",
            "url": "https://files.pythonhosted.org/packages/52/e5/b857b08038e54ea4cd098f157958d81095050bfc20b46d9ac35e22d145f2/zlib_ng-0.4.2-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bd718a80afa21eab1a52f89eba4a0bbcc87d8d22e8fe0b8f7511510cd82b17d5",
                "md5": "d125fbd714eafb3a4a15e261e0e0b3df",
                "sha256": "7ecb8b49349b7d146e9ef6d699a4c06c2c80fbf89b234631ae05c654ebc8ccac"
            },
            "downloads": -1,
            "filename": "zlib_ng-0.4.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d125fbd714eafb3a4a15e261e0e0b3df",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 101089,
            "upload_time": "2024-04-10T11:56:24",
            "upload_time_iso_8601": "2024-04-10T11:56:24.887871Z",
            "url": "https://files.pythonhosted.org/packages/bd/71/8a80afa21eab1a52f89eba4a0bbcc87d8d22e8fe0b8f7511510cd82b17d5/zlib_ng-0.4.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "835b925553c7a670a97bd9b59da6e1bcc264f6137bf075927597320cd8a7195a",
                "md5": "4a0ec1f40c47a5346b060d425479708c",
                "sha256": "ae4f83292846ac9fc220ab67710e7cd06ab63cf837452ec5dc3fc95b73d503a2"
            },
            "downloads": -1,
            "filename": "zlib_ng-0.4.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4a0ec1f40c47a5346b060d425479708c",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 105000,
            "upload_time": "2024-04-10T11:51:42",
            "upload_time_iso_8601": "2024-04-10T11:51:42.894893Z",
            "url": "https://files.pythonhosted.org/packages/83/5b/925553c7a670a97bd9b59da6e1bcc264f6137bf075927597320cd8a7195a/zlib_ng-0.4.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1c49797f4a65e23cfd57d34564e87e859a0b5920bfa0c67d8f4f3fff5657121e",
                "md5": "22f9203d57ea3d57abab3dc846bd4fc3",
                "sha256": "5d8056d73c3c951a0acababce725b84a7acb0feafb2b9a96a86d1eb978b7f60f"
            },
            "downloads": -1,
            "filename": "zlib_ng-0.4.2-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "22f9203d57ea3d57abab3dc846bd4fc3",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 88728,
            "upload_time": "2024-04-10T12:05:24",
            "upload_time_iso_8601": "2024-04-10T12:05:24.424139Z",
            "url": "https://files.pythonhosted.org/packages/1c/49/797f4a65e23cfd57d34564e87e859a0b5920bfa0c67d8f4f3fff5657121e/zlib_ng-0.4.2-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "afbde8c61e8e8640ce4fc5dc478054c383be367e2171f0ebbe6b7313c126abd7",
                "md5": "41a06ca9c08dcf1cf50732357706cc1a",
                "sha256": "2541ae55744a72a4b57413ad05251ec4ef844245bf61509132e5bf925140b5ad"
            },
            "downloads": -1,
            "filename": "zlib-ng-0.4.2.tar.gz",
            "has_sig": false,
            "md5_digest": "41a06ca9c08dcf1cf50732357706cc1a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 2459271,
            "upload_time": "2024-04-10T11:51:44",
            "upload_time_iso_8601": "2024-04-10T11:51:44.195230Z",
            "url": "https://files.pythonhosted.org/packages/af/bd/e8c61e8e8640ce4fc5dc478054c383be367e2171f0ebbe6b7313c126abd7/zlib-ng-0.4.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-10 11:51:44",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "pycompression",
    "github_project": "python-zlib-ng",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "zlib-ng"
}
        
Elapsed time: 0.23545s