pyzmq


Namepyzmq JSON
Version 26.1.1 PyPI version JSON
download
home_pageNone
SummaryPython bindings for 0MQ
upload_time2024-08-19 07:20:28
maintainerNone
docs_urlNone
authorBrian E. Granger, Min Ragan-Kelley
requires_python>=3.7
licenseBSD 3-Clause License Copyright (c) 2009-2012, Brian Granger, Min Ragan-Kelley All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            # PyZMQ: Python bindings for ØMQ

This package contains Python bindings for [ZeroMQ](https://zeromq.org).
ØMQ is a lightweight and fast messaging implementation.

PyZMQ should work with any reasonable version of Python (≥ 3.7), as well as PyPy.
The Cython backend used by CPython supports libzmq ≥ 2.1.4 (including 3.2.x and 4.x),
but the CFFI backend used by PyPy only supports libzmq ≥ 3.2.2 (including 4.x).

For a summary of changes to pyzmq, see our
[changelog](https://pyzmq.readthedocs.io/en/latest/changelog.html).

### ØMQ 3.x, 4.x

PyZMQ fully supports the 3.x and 4.x APIs of libzmq,
developed at [zeromq/libzmq](https://github.com/zeromq/libzmq).
No code to change, no flags to pass,
just build pyzmq against the latest and it should work.

PyZMQ does not support the old libzmq 2 API on PyPy.

## Documentation

See PyZMQ's Sphinx-generated
documentation [on Read the Docs](https://pyzmq.readthedocs.io) for API
details, and some notes on Python and Cython development. If you want to
learn about using ØMQ in general, the excellent [ØMQ
Guide](http://zguide.zeromq.org/py:all) is the place to start, which has a
Python version of every example. We also have some information on our
[wiki](https://github.com/zeromq/pyzmq/wiki).

## Downloading

Unless you specifically want to develop PyZMQ, we recommend downloading
the PyZMQ source code or wheels from
[PyPI](https://pypi.io/project/pyzmq/),
or install with conda.

You can also get the latest source code from our GitHub repository, but
building from the repository will require that you install recent Cython.

## Building and installation

For more detail on building pyzmq, see [our docs](https://pyzmq.readthedocs.io/en/latest/howto/build.html).

We build wheels for macOS, Windows, and Linux, so you can get a binary on those platforms with:

```
pip install pyzmq
```

but compiling from source with `pip install pyzmq` should work in most environments.
Make sure you are using the latest pip, or it may not find the right wheels.

If the wheel doesn't work for some reason, or you want to force pyzmq to be compiled
(this is often preferable if you already have libzmq installed and configured the way you want it),
you can force installation from source with:

```
pip install --no-binary=pyzmq pyzmq
```

## Old versions

pyzmq 16 drops support Python 2.6 and 3.2.
If you need to use one of those Python versions, you can pin your pyzmq version to before 16:

```
pip install 'pyzmq<16'
```

For libzmq 2.0.x, use 'pyzmq\<2.1'

pyzmq-2.1.11 was the last version of pyzmq to support Python 2.5,
and pyzmq ≥ 2.2.0 requires Python ≥ 2.6.
pyzmq-13.0.0 introduces PyPy support via CFFI, which only supports libzmq-3.2.2 and newer.

PyZMQ releases ≤ 2.2.0 matched libzmq versioning, but this is no longer the case,
starting with PyZMQ 13.0.0 (it was the thirteenth release, so why not?).
PyZMQ ≥ 13.0 follows semantic versioning conventions accounting only for PyZMQ itself.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "pyzmq",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": null,
    "author": "Brian E. Granger, Min Ragan-Kelley",
    "author_email": "PyZMQ Contributors <zeromq-dev@lists.zeromq.org>",
    "download_url": "https://files.pythonhosted.org/packages/fc/c7/01a2dd24d3f54012a85af44474cc2eb5bb40c991d5c25e0572e4cb5135a7/pyzmq-26.1.1.tar.gz",
    "platform": null,
    "description": "# PyZMQ: Python bindings for \u00d8MQ\n\nThis package contains Python bindings for [ZeroMQ](https://zeromq.org).\n\u00d8MQ is a lightweight and fast messaging implementation.\n\nPyZMQ should work with any reasonable version of Python (\u2265 3.7), as well as PyPy.\nThe Cython backend used by CPython supports libzmq \u2265 2.1.4 (including 3.2.x and 4.x),\nbut the CFFI backend used by PyPy only supports libzmq \u2265 3.2.2 (including 4.x).\n\nFor a summary of changes to pyzmq, see our\n[changelog](https://pyzmq.readthedocs.io/en/latest/changelog.html).\n\n### \u00d8MQ 3.x, 4.x\n\nPyZMQ fully supports the 3.x and 4.x APIs of libzmq,\ndeveloped at [zeromq/libzmq](https://github.com/zeromq/libzmq).\nNo code to change, no flags to pass,\njust build pyzmq against the latest and it should work.\n\nPyZMQ does not support the old libzmq 2 API on PyPy.\n\n## Documentation\n\nSee PyZMQ's Sphinx-generated\ndocumentation [on Read the Docs](https://pyzmq.readthedocs.io) for API\ndetails, and some notes on Python and Cython development. If you want to\nlearn about using \u00d8MQ in general, the excellent [\u00d8MQ\nGuide](http://zguide.zeromq.org/py:all) is the place to start, which has a\nPython version of every example. We also have some information on our\n[wiki](https://github.com/zeromq/pyzmq/wiki).\n\n## Downloading\n\nUnless you specifically want to develop PyZMQ, we recommend downloading\nthe PyZMQ source code or wheels from\n[PyPI](https://pypi.io/project/pyzmq/),\nor install with conda.\n\nYou can also get the latest source code from our GitHub repository, but\nbuilding from the repository will require that you install recent Cython.\n\n## Building and installation\n\nFor more detail on building pyzmq, see [our docs](https://pyzmq.readthedocs.io/en/latest/howto/build.html).\n\nWe build wheels for macOS, Windows, and Linux, so you can get a binary on those platforms with:\n\n```\npip install pyzmq\n```\n\nbut compiling from source with `pip install pyzmq` should work in most environments.\nMake sure you are using the latest pip, or it may not find the right wheels.\n\nIf the wheel doesn't work for some reason, or you want to force pyzmq to be compiled\n(this is often preferable if you already have libzmq installed and configured the way you want it),\nyou can force installation from source with:\n\n```\npip install --no-binary=pyzmq pyzmq\n```\n\n## Old versions\n\npyzmq 16 drops support Python 2.6 and 3.2.\nIf you need to use one of those Python versions, you can pin your pyzmq version to before 16:\n\n```\npip install 'pyzmq<16'\n```\n\nFor libzmq 2.0.x, use 'pyzmq\\<2.1'\n\npyzmq-2.1.11 was the last version of pyzmq to support Python 2.5,\nand pyzmq \u2265 2.2.0 requires Python \u2265 2.6.\npyzmq-13.0.0 introduces PyPy support via CFFI, which only supports libzmq-3.2.2 and newer.\n\nPyZMQ releases \u2264 2.2.0 matched libzmq versioning, but this is no longer the case,\nstarting with PyZMQ 13.0.0 (it was the thirteenth release, so why not?).\nPyZMQ \u2265 13.0 follows semantic versioning conventions accounting only for PyZMQ itself.\n",
    "bugtrack_url": null,
    "license": "BSD 3-Clause License  Copyright (c) 2009-2012, Brian Granger, Min Ragan-Kelley  All rights reserved.  Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:  1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.  2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.  3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.",
    "summary": "Python bindings for 0MQ",
    "version": "26.1.1",
    "project_urls": {
        "Documentation": "https://pyzmq.readthedocs.org",
        "Homepage": "https://pyzmq.readthedocs.org",
        "Source": "https://github.com/zeromq/pyzmq",
        "Tracker": "https://github.com/zeromq/pyzmq/issues"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0e01ea9975053adff30c34d5a42378bee171faa4a4fae0f35d1211e8f9ca6e52",
                "md5": "f88710b51523f90cd553498b7eaad778",
                "sha256": "b1bb952d1e407463c9333ea7e0c0600001e54e08ce836d4f0aff1fb3f902cf63"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp310-cp310-macosx_10_15_universal2.whl",
            "has_sig": false,
            "md5_digest": "f88710b51523f90cd553498b7eaad778",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1340141,
            "upload_time": "2024-08-19T07:17:10",
            "upload_time_iso_8601": "2024-08-19T07:17:10.325358Z",
            "url": "https://files.pythonhosted.org/packages/0e/01/ea9975053adff30c34d5a42378bee171faa4a4fae0f35d1211e8f9ca6e52/pyzmq-26.1.1-cp310-cp310-macosx_10_15_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1576b29ef0f21b0030b42e34db728df38be7b99165899b1f587ba6fba5c2f749",
                "md5": "c0f067454c3b79c558f4c0798be36aad",
                "sha256": "65e2a18e845c6ea7ab849c70db932eaeadee5edede9e379eb21c0a44cf523b2e"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c0f067454c3b79c558f4c0798be36aad",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1008893,
            "upload_time": "2024-08-19T07:17:12",
            "upload_time_iso_8601": "2024-08-19T07:17:12.401202Z",
            "url": "https://files.pythonhosted.org/packages/15/76/b29ef0f21b0030b42e34db728df38be7b99165899b1f587ba6fba5c2f749/pyzmq-26.1.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "726defe916dfe41133ef7bf2edcea4d170b7818324fd106cec0574bd121abb46",
                "md5": "b53b37700d3feaceeb7083709aaaf9f6",
                "sha256": "def7ae3006924b8a0c146a89ab4008310913fa903beedb95e25dea749642528e"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b53b37700d3feaceeb7083709aaaf9f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 673252,
            "upload_time": "2024-08-19T07:17:13",
            "upload_time_iso_8601": "2024-08-19T07:17:13.768469Z",
            "url": "https://files.pythonhosted.org/packages/72/6d/efe916dfe41133ef7bf2edcea4d170b7818324fd106cec0574bd121abb46/pyzmq-26.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "50a496f83a39be4831c30cc8322bca50b9e8d3db7701504f526fd409e271c4f2",
                "md5": "0bf7d87e4431651dde80fdcea4a83b5e",
                "sha256": "a8234571df7816f99dde89c3403cb396d70c6554120b795853a8ea56fcc26cd3"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "0bf7d87e4431651dde80fdcea4a83b5e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 911824,
            "upload_time": "2024-08-19T07:17:15",
            "upload_time_iso_8601": "2024-08-19T07:17:15.264298Z",
            "url": "https://files.pythonhosted.org/packages/50/a4/96f83a39be4831c30cc8322bca50b9e8d3db7701504f526fd409e271c4f2/pyzmq-26.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cf2eba7e04cfdc04e1c0be9d1581dd04cf06f53986b76cfd8ac9572f27c136bc",
                "md5": "1e1a836866c0f38ebc68cdb9bc3ec152",
                "sha256": "18da8e84dbc30688fd2baefd41df7190607511f916be34f9a24b0e007551822e"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1e1a836866c0f38ebc68cdb9bc3ec152",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 868831,
            "upload_time": "2024-08-19T07:17:16",
            "upload_time_iso_8601": "2024-08-19T07:17:16.888253Z",
            "url": "https://files.pythonhosted.org/packages/cf/2e/ba7e04cfdc04e1c0be9d1581dd04cf06f53986b76cfd8ac9572f27c136bc/pyzmq-26.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "75ab09001241a7e0e81d315ad3409c48ad9e450c7699e6d3bbe70cda5fa58075",
                "md5": "f79ade202adfd9759f2e31ba87a0d34f",
                "sha256": "c70dab93d98b2bf3f0ac1265edbf6e7f83acbf71dabcc4611889bb0dea45bed7"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp310-cp310-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f79ade202adfd9759f2e31ba87a0d34f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 868895,
            "upload_time": "2024-08-19T07:17:18",
            "upload_time_iso_8601": "2024-08-19T07:17:18.281250Z",
            "url": "https://files.pythonhosted.org/packages/75/ab/09001241a7e0e81d315ad3409c48ad9e450c7699e6d3bbe70cda5fa58075/pyzmq-26.1.1-cp310-cp310-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ca32a2298fff3d563450fd96175731a45949a111939b35dcd5e963bf70e99de4",
                "md5": "d61e7e9ef92181d4f0e2b4d6c6014ac5",
                "sha256": "fcb90592c5d5c562e1b1a1ceccf6f00036d73c51db0271bf4d352b8d6b31d468"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d61e7e9ef92181d4f0e2b4d6c6014ac5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1202921,
            "upload_time": "2024-08-19T07:17:20",
            "upload_time_iso_8601": "2024-08-19T07:17:20.269735Z",
            "url": "https://files.pythonhosted.org/packages/ca/32/a2298fff3d563450fd96175731a45949a111939b35dcd5e963bf70e99de4/pyzmq-26.1.1-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "96fd25ab3e25171dc338e66334fcc83ecac26bbf935883294a2dc548fd996e0f",
                "md5": "1030b8401d7a7a5ec2c2c6a8a51c82b7",
                "sha256": "cf4be7460a0c1bc71e9b0e64ecdd75a86386ca6afaa36641686f5542d0314e9d"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "1030b8401d7a7a5ec2c2c6a8a51c82b7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1515366,
            "upload_time": "2024-08-19T07:17:22",
            "upload_time_iso_8601": "2024-08-19T07:17:22.152122Z",
            "url": "https://files.pythonhosted.org/packages/96/fd/25ab3e25171dc338e66334fcc83ecac26bbf935883294a2dc548fd996e0f/pyzmq-26.1.1-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a32a763b45bf6526afc17911b6dd09704034629868394e19b8efaf9014ae51bf",
                "md5": "c54a827806d3d39fecb5871c3b115196",
                "sha256": "a4cbecda4ddbfc1e309c3be04d333f9be3fc6178b8b6592b309676f929767a15"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c54a827806d3d39fecb5871c3b115196",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1414773,
            "upload_time": "2024-08-19T07:17:24",
            "upload_time_iso_8601": "2024-08-19T07:17:24.305124Z",
            "url": "https://files.pythonhosted.org/packages/a3/2a/763b45bf6526afc17911b6dd09704034629868394e19b8efaf9014ae51bf/pyzmq-26.1.1-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "369e592c6f746f256f35a81cc4cfc3ecd83ed7edcc1ac85b5289d24f57c9a996",
                "md5": "f035c42d3d1796278e1326a5a10edc62",
                "sha256": "583f73b113b8165713b6ce028d221402b1b69483055b5aa3f991937e34dd1ead"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "f035c42d3d1796278e1326a5a10edc62",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 586145,
            "upload_time": "2024-08-19T07:17:26",
            "upload_time_iso_8601": "2024-08-19T07:17:26.278510Z",
            "url": "https://files.pythonhosted.org/packages/36/9e/592c6f746f256f35a81cc4cfc3ecd83ed7edcc1ac85b5289d24f57c9a996/pyzmq-26.1.1-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e73bf6192bbf59a87365038106201202a3afd91012241f71719d41e83bd4a6d5",
                "md5": "eefb2df928a46bef0317103b4c2693f9",
                "sha256": "5e6f39ecb8eb7bfcb976c49262e8cf83ff76e082b77ca23ba90c9b6691a345be"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "eefb2df928a46bef0317103b4c2693f9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 650181,
            "upload_time": "2024-08-19T07:17:28",
            "upload_time_iso_8601": "2024-08-19T07:17:28.027100Z",
            "url": "https://files.pythonhosted.org/packages/e7/3b/f6192bbf59a87365038106201202a3afd91012241f71719d41e83bd4a6d5/pyzmq-26.1.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c6b077d3eb346510ffea093d9fb9d1137007f1097e39a22b915af9ff0b639557",
                "md5": "0ff446d6b5b063b16373f0b433af8e6d",
                "sha256": "8d042d6446cab3a1388b38596f5acabb9926b0b95c3894c519356b577a549458"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp310-cp310-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "0ff446d6b5b063b16373f0b433af8e6d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 552290,
            "upload_time": "2024-08-19T07:17:29",
            "upload_time_iso_8601": "2024-08-19T07:17:29.780294Z",
            "url": "https://files.pythonhosted.org/packages/c6/b0/77d3eb346510ffea093d9fb9d1137007f1097e39a22b915af9ff0b639557/pyzmq-26.1.1-cp310-cp310-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "05e42226ca5357c404086a332f86f9a80dfdfc911d3aef586484c69fece5db21",
                "md5": "db9e803958eb714e220c2288b1854b18",
                "sha256": "362cac2423e36966d336d79d3ec3eafeabc153ee3e7a5cf580d7e74a34b3d912"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp311-cp311-macosx_10_15_universal2.whl",
            "has_sig": false,
            "md5_digest": "db9e803958eb714e220c2288b1854b18",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1340720,
            "upload_time": "2024-08-19T07:17:31",
            "upload_time_iso_8601": "2024-08-19T07:17:31.711653Z",
            "url": "https://files.pythonhosted.org/packages/05/e4/2226ca5357c404086a332f86f9a80dfdfc911d3aef586484c69fece5db21/pyzmq-26.1.1-cp311-cp311-macosx_10_15_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f313eef5c8f8169e818aef5979bdaee0b304043e98b5212ae42c0a6c77de2564",
                "md5": "57d0bc30025690c054c3cca5721189ed",
                "sha256": "0841633446cb1539a832a19bb24c03a20c00887d0cedd1d891b495b07e5c5cb5"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "57d0bc30025690c054c3cca5721189ed",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1008784,
            "upload_time": "2024-08-19T07:17:33",
            "upload_time_iso_8601": "2024-08-19T07:17:33.453565Z",
            "url": "https://files.pythonhosted.org/packages/f3/13/eef5c8f8169e818aef5979bdaee0b304043e98b5212ae42c0a6c77de2564/pyzmq-26.1.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9508710f6ecd9a987993c36d2a6a52526536fd59616577affaa595a4c74a756b",
                "md5": "bb58995fb837f2ad1e4e59c51863e70b",
                "sha256": "4e1fcdc333afbf9918d0a614a6e10858aede7da49a60f6705a77e343fe86a317"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "bb58995fb837f2ad1e4e59c51863e70b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 673182,
            "upload_time": "2024-08-19T07:17:35",
            "upload_time_iso_8601": "2024-08-19T07:17:35.239041Z",
            "url": "https://files.pythonhosted.org/packages/95/08/710f6ecd9a987993c36d2a6a52526536fd59616577affaa595a4c74a756b/pyzmq-26.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "72e6821458f808f009451299f592d29dcb1a98cd0826a55c789503a7cfb399fb",
                "md5": "07cdfc4fb4cf987fa6eb77ff1e554078",
                "sha256": "cc8d655627d775475eafdcf0e49e74bcc1e5e90afd9ab813b4da98f092ed7b93"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "07cdfc4fb4cf987fa6eb77ff1e554078",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 910164,
            "upload_time": "2024-08-19T07:17:37",
            "upload_time_iso_8601": "2024-08-19T07:17:37.196305Z",
            "url": "https://files.pythonhosted.org/packages/72/e6/821458f808f009451299f592d29dcb1a98cd0826a55c789503a7cfb399fb/pyzmq-26.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2974a18cf4bed0569f206b461fcf24ca4a106edd6f4736574e27ed14d7cf8dda",
                "md5": "8ac22c162a3498bb2092b40b832f26be",
                "sha256": "32de51744820857a6f7c3077e620ab3f607d0e4388dfead885d5124ab9bcdc5e"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8ac22c162a3498bb2092b40b832f26be",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 868018,
            "upload_time": "2024-08-19T07:17:39",
            "upload_time_iso_8601": "2024-08-19T07:17:39.317488Z",
            "url": "https://files.pythonhosted.org/packages/29/74/a18cf4bed0569f206b461fcf24ca4a106edd6f4736574e27ed14d7cf8dda/pyzmq-26.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6277a01bfe7e4d49d339cf7fbee5b644c1370a4a2b755dcf643e2d7e7944a50c",
                "md5": "416c3a22d46324a4946585ebec62412e",
                "sha256": "a880240597010914ffb1d6edd04d3deb7ce6a2abf79a0012751438d13630a671"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp311-cp311-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "416c3a22d46324a4946585ebec62412e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 869265,
            "upload_time": "2024-08-19T07:17:41",
            "upload_time_iso_8601": "2024-08-19T07:17:41.202105Z",
            "url": "https://files.pythonhosted.org/packages/62/77/a01bfe7e4d49d339cf7fbee5b644c1370a4a2b755dcf643e2d7e7944a50c/pyzmq-26.1.1-cp311-cp311-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "502fe0b315471e0838ef227d9693b81ea7bca471564230aaa2dd73e3ba92f260",
                "md5": "00c6a5fdafb841f70efee1481cadbca1",
                "sha256": "26131b1cec02f941ed2d2b4b8cc051662b1c248b044eff5069df1f500bbced56"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "00c6a5fdafb841f70efee1481cadbca1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1203406,
            "upload_time": "2024-08-19T07:17:42",
            "upload_time_iso_8601": "2024-08-19T07:17:42.922255Z",
            "url": "https://files.pythonhosted.org/packages/50/2f/e0b315471e0838ef227d9693b81ea7bca471564230aaa2dd73e3ba92f260/pyzmq-26.1.1-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "55cda9ea641afb68fe32c632b610da830766f65537dae79b4db1ea5abb788ab3",
                "md5": "24414169fb236692de1d3f65c38f6bc3",
                "sha256": "ce05841322b58510607f9508a573138d995a46c7928887bc433de9cb760fd2ad"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "24414169fb236692de1d3f65c38f6bc3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1514267,
            "upload_time": "2024-08-19T07:17:44",
            "upload_time_iso_8601": "2024-08-19T07:17:44.731265Z",
            "url": "https://files.pythonhosted.org/packages/55/cd/a9ea641afb68fe32c632b610da830766f65537dae79b4db1ea5abb788ab3/pyzmq-26.1.1-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d8d3f86bf419202d03df579a67079ff8f9ccb4190ed467ad41f8fd091ac2e613",
                "md5": "eb4841fde55c5b164b65d2933340e55f",
                "sha256": "32123ff0a6db521aadf2b95201e967a4e0d11fb89f73663a99d2f54881c07214"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eb4841fde55c5b164b65d2933340e55f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1414397,
            "upload_time": "2024-08-19T07:17:46",
            "upload_time_iso_8601": "2024-08-19T07:17:46.201279Z",
            "url": "https://files.pythonhosted.org/packages/d8/d3/f86bf419202d03df579a67079ff8f9ccb4190ed467ad41f8fd091ac2e613/pyzmq-26.1.1-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7a83061ed3bf2649fccaf6ab2b06dcb46077a09dfbc93f9b32dc675d2fd12d12",
                "md5": "841c1f00f85d4508f8ce91c103464c67",
                "sha256": "e790602d7ea1d6c7d8713d571226d67de7ffe47b1e22ae2c043ebd537de1bccb"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "841c1f00f85d4508f8ce91c103464c67",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 585281,
            "upload_time": "2024-08-19T07:17:47",
            "upload_time_iso_8601": "2024-08-19T07:17:47.887775Z",
            "url": "https://files.pythonhosted.org/packages/7a/83/061ed3bf2649fccaf6ab2b06dcb46077a09dfbc93f9b32dc675d2fd12d12/pyzmq-26.1.1-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "33b26c355e8ca7f2ff920a5ba221732722304aaebad919109754753e678404a3",
                "md5": "807de5d7b107c23483ed43f13c170c97",
                "sha256": "717960855f2d6fdc2dba9df49dff31c414187bb11c76af36343a57d1f7083d9a"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "807de5d7b107c23483ed43f13c170c97",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 651006,
            "upload_time": "2024-08-19T07:17:49",
            "upload_time_iso_8601": "2024-08-19T07:17:49.561879Z",
            "url": "https://files.pythonhosted.org/packages/33/b2/6c355e8ca7f2ff920a5ba221732722304aaebad919109754753e678404a3/pyzmq-26.1.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f7a0187ae651393fc82fdd841581929b17509252f68b799bb787de4e48e7181",
                "md5": "8cd054a322c49b12a7a1bae0f4efaad3",
                "sha256": "08956c26dbcd4fd8835cb777a16e21958ed2412317630e19f0018d49dbeeb470"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp311-cp311-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "8cd054a322c49b12a7a1bae0f4efaad3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 552828,
            "upload_time": "2024-08-19T07:17:51",
            "upload_time_iso_8601": "2024-08-19T07:17:51.334135Z",
            "url": "https://files.pythonhosted.org/packages/8f/7a/0187ae651393fc82fdd841581929b17509252f68b799bb787de4e48e7181/pyzmq-26.1.1-cp311-cp311-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9bb6210ff26d3dae4ba8d0b9c0dca3299d8d7273b54f5a74a16ecd1f02c4cdd5",
                "md5": "60945f6e362118c2f6e4b5b902a0b09e",
                "sha256": "e80345900ae241c2c51bead7c9fa247bba6d4b2a83423e9791bae8b0a7f12c52"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp312-cp312-macosx_10_15_universal2.whl",
            "has_sig": false,
            "md5_digest": "60945f6e362118c2f6e4b5b902a0b09e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1343185,
            "upload_time": "2024-08-19T07:17:52",
            "upload_time_iso_8601": "2024-08-19T07:17:52.805208Z",
            "url": "https://files.pythonhosted.org/packages/9b/b6/210ff26d3dae4ba8d0b9c0dca3299d8d7273b54f5a74a16ecd1f02c4cdd5/pyzmq-26.1.1-cp312-cp312-macosx_10_15_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "05235c74b72effed61c4087a3b549c22e4023e7ddac239ab50687733ec0ed9a6",
                "md5": "17ece22818e5e38261dc4bc09c53d1e5",
                "sha256": "ec8fe214fcc45dfb0c32e4a7ad1db20244ba2d2fecbf0cbf9d5242d81ca0a375"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "17ece22818e5e38261dc4bc09c53d1e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1008446,
            "upload_time": "2024-08-19T07:17:54",
            "upload_time_iso_8601": "2024-08-19T07:17:54.773273Z",
            "url": "https://files.pythonhosted.org/packages/05/23/5c74b72effed61c4087a3b549c22e4023e7ddac239ab50687733ec0ed9a6/pyzmq-26.1.1-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c0be80ee4eb79b3ba87398cca66c4446d660b5e301a9d938a88d7894181fe98a",
                "md5": "fc1cba95abbe342cbba1c308cffa6e2b",
                "sha256": "cf4e283f97688d993cb7a8acbc22889effbbb7cbaa19ee9709751f44be928f5d"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fc1cba95abbe342cbba1c308cffa6e2b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 665972,
            "upload_time": "2024-08-19T07:17:56",
            "upload_time_iso_8601": "2024-08-19T07:17:56.671451Z",
            "url": "https://files.pythonhosted.org/packages/c0/be/80ee4eb79b3ba87398cca66c4446d660b5e301a9d938a88d7894181fe98a/pyzmq-26.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "19c041b74b114d9ae13db6a5f414feaddf1b39b40603bc0db59f6572115cf92c",
                "md5": "e15abf8141d5008562f5a555f0767e40",
                "sha256": "2508bdc8ab246e5ed7c92023d4352aaad63020ca3b098a4e3f1822db202f703d"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e15abf8141d5008562f5a555f0767e40",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 903458,
            "upload_time": "2024-08-19T07:17:58",
            "upload_time_iso_8601": "2024-08-19T07:17:58.185897Z",
            "url": "https://files.pythonhosted.org/packages/19/c0/41b74b114d9ae13db6a5f414feaddf1b39b40603bc0db59f6572115cf92c/pyzmq-26.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f155e5ba8f4baa7695c12a0b69baaecc3c3efac17c3a4d268a9b3400bdfa1e25",
                "md5": "0047f52428b533e177a702e7f4fc101b",
                "sha256": "741bdb4d96efe8192616abdc3671931d51a8bcd38c71da2d53fb3127149265d1"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0047f52428b533e177a702e7f4fc101b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 860090,
            "upload_time": "2024-08-19T07:18:00",
            "upload_time_iso_8601": "2024-08-19T07:18:00.504132Z",
            "url": "https://files.pythonhosted.org/packages/f1/55/e5ba8f4baa7695c12a0b69baaecc3c3efac17c3a4d268a9b3400bdfa1e25/pyzmq-26.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "165ce5043f955844c384e7daef810618893b63b57039f3116b71b9ff9f2609db",
                "md5": "d1ac564665cd70174a0c1051d025c34c",
                "sha256": "76154943e4c4054b2591792eb3484ef1dd23d59805759f9cebd2f010aa30ee8c"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp312-cp312-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d1ac564665cd70174a0c1051d025c34c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 860638,
            "upload_time": "2024-08-19T07:18:02",
            "upload_time_iso_8601": "2024-08-19T07:18:02.326430Z",
            "url": "https://files.pythonhosted.org/packages/16/5c/e5043f955844c384e7daef810618893b63b57039f3116b71b9ff9f2609db/pyzmq-26.1.1-cp312-cp312-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "759b3c6e620db4f300057937f26b1b0f1233f4a043393aa1ae1fceefee1ba174",
                "md5": "1b7ea0da3d58a8365bc7499f39e58c53",
                "sha256": "9498ac427d20d0e0ef0e4bbd6200841e91640dfdf619f544ceec7f464cfb6070"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1b7ea0da3d58a8365bc7499f39e58c53",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1196306,
            "upload_time": "2024-08-19T07:18:03",
            "upload_time_iso_8601": "2024-08-19T07:18:03.820192Z",
            "url": "https://files.pythonhosted.org/packages/75/9b/3c6e620db4f300057937f26b1b0f1233f4a043393aa1ae1fceefee1ba174/pyzmq-26.1.1-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9506af96f2ebe638872af78e25f13fdfe43df1d6e8dc668f2a978ef4369318c6",
                "md5": "d5d1b4805e03e04f8c19f5dd0843f200",
                "sha256": "6f34453ef3496ca3462f30435bf85f535f9550392987341f9ccc92c102825a79"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "d5d1b4805e03e04f8c19f5dd0843f200",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1507502,
            "upload_time": "2024-08-19T07:18:06",
            "upload_time_iso_8601": "2024-08-19T07:18:06.064484Z",
            "url": "https://files.pythonhosted.org/packages/95/06/af96f2ebe638872af78e25f13fdfe43df1d6e8dc668f2a978ef4369318c6/pyzmq-26.1.1-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9ff091f53f61d0e69b6c551ebe48fccc13a0f04cceaa064e1394b5d58048838b",
                "md5": "f9ea1c04fdf6c0b34c444858de06e911",
                "sha256": "50f0669324e27cc2091ef6ab76ca7112f364b6249691790b4cffce31e73fda28"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f9ea1c04fdf6c0b34c444858de06e911",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1406558,
            "upload_time": "2024-08-19T07:18:07",
            "upload_time_iso_8601": "2024-08-19T07:18:07.533622Z",
            "url": "https://files.pythonhosted.org/packages/9f/f0/91f53f61d0e69b6c551ebe48fccc13a0f04cceaa064e1394b5d58048838b/pyzmq-26.1.1-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1a75995c5ebb4bf06447d477a90ac090e78a39eb482567462bfa88e6351fc4ba",
                "md5": "c33700d218dfb870ac928bcb9b98cdbf",
                "sha256": "3ee5cbf2625b94de21c68d0cefd35327c8dfdbd6a98fcc41682b4e8bb00d841f"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "c33700d218dfb870ac928bcb9b98cdbf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 584275,
            "upload_time": "2024-08-19T07:18:10",
            "upload_time_iso_8601": "2024-08-19T07:18:10.160503Z",
            "url": "https://files.pythonhosted.org/packages/1a/75/995c5ebb4bf06447d477a90ac090e78a39eb482567462bfa88e6351fc4ba/pyzmq-26.1.1-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dc083e37b0c3c5e4a554e3aface4d6cf272a1b0156e376c5e667725c767ad4be",
                "md5": "d4dd71bee2521e4a6e0a6fdf61c855ee",
                "sha256": "75bd448a28b1001b6928679015bc95dd5f172703ed30135bb9e34fc9cda0a3e7"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d4dd71bee2521e4a6e0a6fdf61c855ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 646907,
            "upload_time": "2024-08-19T07:18:11",
            "upload_time_iso_8601": "2024-08-19T07:18:11.676501Z",
            "url": "https://files.pythonhosted.org/packages/dc/08/3e37b0c3c5e4a554e3aface4d6cf272a1b0156e376c5e667725c767ad4be/pyzmq-26.1.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "765408e0ab926a2228a3285eec873574ab100c25a86c84844bda933048d97b80",
                "md5": "364c729d0260cde7ba44788d04a18e96",
                "sha256": "4350233569b4bbef88595c5e77ee38995a6f1f1790fae148b578941bfffd1c24"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp312-cp312-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "364c729d0260cde7ba44788d04a18e96",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 548851,
            "upload_time": "2024-08-19T07:18:13",
            "upload_time_iso_8601": "2024-08-19T07:18:13.316109Z",
            "url": "https://files.pythonhosted.org/packages/76/54/08e0ab926a2228a3285eec873574ab100c25a86c84844bda933048d97b80/pyzmq-26.1.1-cp312-cp312-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0e0192221845d28c7e0f7432cfaa2babbcf4bda5df1803402e063d17a8fbdc15",
                "md5": "d30b2029a9014134cdd23832193816b3",
                "sha256": "6c8087a3281c20b1d11042d372ed5a47734af05975d78e4d1d6e7bd1018535f3"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d30b2029a9014134cdd23832193816b3",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 1006634,
            "upload_time": "2024-08-19T07:18:15",
            "upload_time_iso_8601": "2024-08-19T07:18:15.054523Z",
            "url": "https://files.pythonhosted.org/packages/0e/01/92221845d28c7e0f7432cfaa2babbcf4bda5df1803402e063d17a8fbdc15/pyzmq-26.1.1-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7bccacce3be8787fb316d52402f58340c2bf288d24b3242dff4c9c4c0c597f99",
                "md5": "b4d025cc7ac74d887b9d8e1e27e88b57",
                "sha256": "ebef7d3fe11fe4c688f08bc0211a976c3318c097057f258428200737b9fff4da"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp313-cp313-macosx_10_15_universal2.whl",
            "has_sig": false,
            "md5_digest": "b4d025cc7ac74d887b9d8e1e27e88b57",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 1340519,
            "upload_time": "2024-08-19T07:18:16",
            "upload_time_iso_8601": "2024-08-19T07:18:16.866546Z",
            "url": "https://files.pythonhosted.org/packages/7b/cc/acce3be8787fb316d52402f58340c2bf288d24b3242dff4c9c4c0c597f99/pyzmq-26.1.1-cp313-cp313-macosx_10_15_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "65aa49a4f33dc23982eb3edd197e099f1ca67be251afb0e23388adb0f6253aab",
                "md5": "4f77df9f34ddd1e143653619658a6801",
                "sha256": "7a5342110510045a47de1e87f5f1dcc1d9d90109522316dc9830cfc6157c800f"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4f77df9f34ddd1e143653619658a6801",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 665538,
            "upload_time": "2024-08-19T07:18:18",
            "upload_time_iso_8601": "2024-08-19T07:18:18.823142Z",
            "url": "https://files.pythonhosted.org/packages/65/aa/49a4f33dc23982eb3edd197e099f1ca67be251afb0e23388adb0f6253aab/pyzmq-26.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "caf82181c0f52344da3ffcc0a7888c21be77775480ce21a720715284c51f398b",
                "md5": "6b829fb6996daa8c22508705378b40f8",
                "sha256": "af690ea4be6ca92a67c2b44a779a023bf0838e92d48497a2268175dc4a505691"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "6b829fb6996daa8c22508705378b40f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 903542,
            "upload_time": "2024-08-19T07:18:20",
            "upload_time_iso_8601": "2024-08-19T07:18:20.376182Z",
            "url": "https://files.pythonhosted.org/packages/ca/f8/2181c0f52344da3ffcc0a7888c21be77775480ce21a720715284c51f398b/pyzmq-26.1.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "31ef7497fbb7738db2dc93d6a04e42ddd240567d5ff7270f52b934b58536805e",
                "md5": "7ed7f0cce40a3288e3f9fe72f70052bd",
                "sha256": "bc994e220c1403ae087d7f0fa45129d583e46668a019e389060da811a5a9320e"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7ed7f0cce40a3288e3f9fe72f70052bd",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 860042,
            "upload_time": "2024-08-19T07:18:21",
            "upload_time_iso_8601": "2024-08-19T07:18:21.854476Z",
            "url": "https://files.pythonhosted.org/packages/31/ef/7497fbb7738db2dc93d6a04e42ddd240567d5ff7270f52b934b58536805e/pyzmq-26.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aeb2ce67ad15dac58d4d2e8747dee6211bf761f620394cd51a59d40fa8ff2727",
                "md5": "45998b5a3e08947b08803fa930856491",
                "sha256": "b8e153f5dffb0310af71fc6fc9cd8174f4c8ea312c415adcb815d786fee78179"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp313-cp313-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "45998b5a3e08947b08803fa930856491",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 860391,
            "upload_time": "2024-08-19T07:18:23",
            "upload_time_iso_8601": "2024-08-19T07:18:23.454123Z",
            "url": "https://files.pythonhosted.org/packages/ae/b2/ce67ad15dac58d4d2e8747dee6211bf761f620394cd51a59d40fa8ff2727/pyzmq-26.1.1-cp313-cp313-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "534965a008ba7b9101d163abbcce43e914d620c6d47763d4abeab522fc1bd501",
                "md5": "b552c3d5bb80718118f7d7528566ec8d",
                "sha256": "0065026e624052a51033857e5cd45a94b52946b44533f965f0bdf182460e965d"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp313-cp313-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b552c3d5bb80718118f7d7528566ec8d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 1196235,
            "upload_time": "2024-08-19T07:18:25",
            "upload_time_iso_8601": "2024-08-19T07:18:25.256852Z",
            "url": "https://files.pythonhosted.org/packages/53/49/65a008ba7b9101d163abbcce43e914d620c6d47763d4abeab522fc1bd501/pyzmq-26.1.1-cp313-cp313-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "49ae43ca5a12eaae55ffe76ef5c0a21bb5ea2e9f29bb2810a2fe747e2d173372",
                "md5": "618eb36df94f7128633fe7724ce96cba",
                "sha256": "63351392f948b5d50b9f55161994bc4feedbfb3f3cfe393d2f503dea2c3ec445"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp313-cp313-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "618eb36df94f7128633fe7724ce96cba",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 1507727,
            "upload_time": "2024-08-19T07:18:26",
            "upload_time_iso_8601": "2024-08-19T07:18:26.795679Z",
            "url": "https://files.pythonhosted.org/packages/49/ae/43ca5a12eaae55ffe76ef5c0a21bb5ea2e9f29bb2810a2fe747e2d173372/pyzmq-26.1.1-cp313-cp313-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5e197f1d1c4777742c5abadbccfac64b170b63f003ef391d7f87de7a0ac88cbd",
                "md5": "b799779097e51089d14ee25367956631",
                "sha256": "ffecc43b3c18e36b62fcec995761829b6ac325d8dd74a4f2c5c1653afbb4495a"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp313-cp313-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b799779097e51089d14ee25367956631",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 1406599,
            "upload_time": "2024-08-19T07:18:28",
            "upload_time_iso_8601": "2024-08-19T07:18:28.222561Z",
            "url": "https://files.pythonhosted.org/packages/5e/19/7f1d1c4777742c5abadbccfac64b170b63f003ef391d7f87de7a0ac88cbd/pyzmq-26.1.1-cp313-cp313-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1d3608357e1e4df430313292b908fc7338f818ac42d3860b6d38a307fd39a205",
                "md5": "6f9191e0c1b1e819ff98799727edc42b",
                "sha256": "bc904e86de98f8fc5bd41597da5d61232d2d6d60c4397f26efffabb961b2b245"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp313-cp313t-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6f9191e0c1b1e819ff98799727edc42b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 1007452,
            "upload_time": "2024-08-19T07:18:34",
            "upload_time_iso_8601": "2024-08-19T07:18:34.150201Z",
            "url": "https://files.pythonhosted.org/packages/1d/36/08357e1e4df430313292b908fc7338f818ac42d3860b6d38a307fd39a205/pyzmq-26.1.1-cp313-cp313t-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "99f969a8d2010fa8dbb719b78f7c1c68d1e8d414c9a9e51a22c872624dda5231",
                "md5": "58baa05548a67b51ee4bdbe167afcd00",
                "sha256": "00f39c367bbd6aa8e4bc36af6510561944c619b58eb36199fa334b594a18f615"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp313-cp313t-macosx_10_15_universal2.whl",
            "has_sig": false,
            "md5_digest": "58baa05548a67b51ee4bdbe167afcd00",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 1329613,
            "upload_time": "2024-08-19T07:18:36",
            "upload_time_iso_8601": "2024-08-19T07:18:36.171975Z",
            "url": "https://files.pythonhosted.org/packages/99/f9/69a8d2010fa8dbb719b78f7c1c68d1e8d414c9a9e51a22c872624dda5231/pyzmq-26.1.1-cp313-cp313t-macosx_10_15_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0f02a9477dd620115ca3f5f2e90bdd2ab84236808ee510d20136bb8103204193",
                "md5": "a9398da9382c28e6435cf5d736136442",
                "sha256": "de6f384864a959866b782e6a3896538d1424d183f2d3c7ef079f71dcecde7284"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a9398da9382c28e6435cf5d736136442",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 653296,
            "upload_time": "2024-08-19T07:18:38",
            "upload_time_iso_8601": "2024-08-19T07:18:38.186954Z",
            "url": "https://files.pythonhosted.org/packages/0f/02/a9477dd620115ca3f5f2e90bdd2ab84236808ee510d20136bb8103204193/pyzmq-26.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d35df4e179aba55479648851b133b01e4546d3d06aa9a508f09cc7f3846c70fe",
                "md5": "92fa12d5a14fd25c31d285c54b43c87a",
                "sha256": "3abb15df0c763339edb27a644c19381b2425ddd1aea3dbd77c1601a3b31867b8"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "92fa12d5a14fd25c31d285c54b43c87a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 888472,
            "upload_time": "2024-08-19T07:18:39",
            "upload_time_iso_8601": "2024-08-19T07:18:39.736158Z",
            "url": "https://files.pythonhosted.org/packages/d3/5d/f4e179aba55479648851b133b01e4546d3d06aa9a508f09cc7f3846c70fe/pyzmq-26.1.1-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2bee616c52d252267cf239e0061e91e67d75732e689ff53a9391637994e96d5b",
                "md5": "d37efdd86761c469da420212f67c50f0",
                "sha256": "40908ec2dd3b29bbadc0916a0d3c87f8dbeebbd8fead8e618539f09e0506dec4"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d37efdd86761c469da420212f67c50f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 845918,
            "upload_time": "2024-08-19T07:18:41",
            "upload_time_iso_8601": "2024-08-19T07:18:41.816210Z",
            "url": "https://files.pythonhosted.org/packages/2b/ee/616c52d252267cf239e0061e91e67d75732e689ff53a9391637994e96d5b/pyzmq-26.1.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "78b7e09f159fe998cc6115fdc91665955e3ce2ac69c40b31aca25bf645b400a6",
                "md5": "2fbd5a65154beb88d08d10f0c582dbbb",
                "sha256": "c11a95d3f6fc7e714ccd1066f68f9c1abd764a8b3596158be92f46dd49f41e03"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp313-cp313t-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2fbd5a65154beb88d08d10f0c582dbbb",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 847437,
            "upload_time": "2024-08-19T07:18:43",
            "upload_time_iso_8601": "2024-08-19T07:18:43.501611Z",
            "url": "https://files.pythonhosted.org/packages/78/b7/e09f159fe998cc6115fdc91665955e3ce2ac69c40b31aca25bf645b400a6/pyzmq-26.1.1-cp313-cp313t-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c9137b3e09e88e847cc05122284d8d0bb44d3293b54a899b2703b1d65b043695",
                "md5": "31428a96a574b1295e370f3c2c765709",
                "sha256": "4437af9fee7a58302dbd511cc49f0cc2b35c112a33a1111fb123cf0be45205ca"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp313-cp313t-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "31428a96a574b1295e370f3c2c765709",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 1183545,
            "upload_time": "2024-08-19T07:18:45",
            "upload_time_iso_8601": "2024-08-19T07:18:45.254645Z",
            "url": "https://files.pythonhosted.org/packages/c9/13/7b3e09e88e847cc05122284d8d0bb44d3293b54a899b2703b1d65b043695/pyzmq-26.1.1-cp313-cp313t-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "72ca89d6b6cc86b77fb8fa0d18662e1da4f8a1dada9304c26547fef1b2860336",
                "md5": "037c0d61e2241ff7134444cbb8119921",
                "sha256": "76390d3d66406cb01b9681c382874400e9dfd77f30ecdea4bd1bf5226dd4aff0"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp313-cp313t-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "037c0d61e2241ff7134444cbb8119921",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 1492993,
            "upload_time": "2024-08-19T07:18:46",
            "upload_time_iso_8601": "2024-08-19T07:18:46.907798Z",
            "url": "https://files.pythonhosted.org/packages/72/ca/89d6b6cc86b77fb8fa0d18662e1da4f8a1dada9304c26547fef1b2860336/pyzmq-26.1.1-cp313-cp313t-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "edc3ddc57994e7730a2840941228add6fe6c55d7e3199c9ca8266640cf8d53f8",
                "md5": "b6ee28560f2cbb75c9ce936f71ee5f33",
                "sha256": "4d4c7fe5e50e269f9c63a260638488fec194a73993008618a59b54c47ef6ae72"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp313-cp313t-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b6ee28560f2cbb75c9ce936f71ee5f33",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 1392544,
            "upload_time": "2024-08-19T07:18:48",
            "upload_time_iso_8601": "2024-08-19T07:18:48.498126Z",
            "url": "https://files.pythonhosted.org/packages/ed/c3/ddc57994e7730a2840941228add6fe6c55d7e3199c9ca8266640cf8d53f8/pyzmq-26.1.1-cp313-cp313t-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f9cd5feb4af7cb3839ba6a62c284398e5777e2fb61e52236d95931093d759a4d",
                "md5": "07c7cc5e6896e2227bfd48df1dcc7c9a",
                "sha256": "6ff14c2fae6c0c2c1c02590c5c5d75aa1db35b859971b3ca2fcd28f983d9f2b6"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "07c7cc5e6896e2227bfd48df1dcc7c9a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 584230,
            "upload_time": "2024-08-19T07:18:29",
            "upload_time_iso_8601": "2024-08-19T07:18:29.738057Z",
            "url": "https://files.pythonhosted.org/packages/f9/cd/5feb4af7cb3839ba6a62c284398e5777e2fb61e52236d95931093d759a4d/pyzmq-26.1.1-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ecbcd34e344b4e4c2c10f76da0c1a5b1f8bcef48c86e1972bfbe9f7d6ef1eaf5",
                "md5": "ea1138f6ae885469b2341af936da1b2f",
                "sha256": "85f2d2ee5ea9a8f1de86a300e1062fbab044f45b5ce34d20580c0198a8196db0"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ea1138f6ae885469b2341af936da1b2f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 646848,
            "upload_time": "2024-08-19T07:18:31",
            "upload_time_iso_8601": "2024-08-19T07:18:31.185527Z",
            "url": "https://files.pythonhosted.org/packages/ec/bc/d34e344b4e4c2c10f76da0c1a5b1f8bcef48c86e1972bfbe9f7d6ef1eaf5/pyzmq-26.1.1-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "46269bed841b00d372083730bcb8eeb86f2ee0beff456ff07ff3eb0e92aa087a",
                "md5": "ce0eff917304a794a96df98ccacf1349",
                "sha256": "cc09b1de8b985ca5a0ca343dd7fb007267c6b329347a74e200f4654268084239"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp313-cp313-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "ce0eff917304a794a96df98ccacf1349",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 548564,
            "upload_time": "2024-08-19T07:18:32",
            "upload_time_iso_8601": "2024-08-19T07:18:32.648886Z",
            "url": "https://files.pythonhosted.org/packages/46/26/9bed841b00d372083730bcb8eeb86f2ee0beff456ff07ff3eb0e92aa087a/pyzmq-26.1.1-cp313-cp313-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7c43ddc139037d0937822003028c82993960241151187f0c9d9a0c4131c14353",
                "md5": "fa353eb7a17f5ff516173745503adc71",
                "sha256": "25d128524207f53f7aae7c5abdc2b63f8957a060b00521af5ffcd20986b5d8f4"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fa353eb7a17f5ff516173745503adc71",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1006478,
            "upload_time": "2024-08-19T07:18:49",
            "upload_time_iso_8601": "2024-08-19T07:18:49.980660Z",
            "url": "https://files.pythonhosted.org/packages/7c/43/ddc139037d0937822003028c82993960241151187f0c9d9a0c4131c14353/pyzmq-26.1.1-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dc8d47c1edc109f900feac3522ca1a7e2784c7e3969adbd45c27174d2746f68f",
                "md5": "1702a2ebf32468fc2bc65e74f55bd71f",
                "sha256": "d74b925d997e4f92b042bdd7085cd0a309ee0fd7cb4dc376059bbff6b32ff34f"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "1702a2ebf32468fc2bc65e74f55bd71f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 906126,
            "upload_time": "2024-08-19T07:18:52",
            "upload_time_iso_8601": "2024-08-19T07:18:52.211198Z",
            "url": "https://files.pythonhosted.org/packages/dc/8d/47c1edc109f900feac3522ca1a7e2784c7e3969adbd45c27174d2746f68f/pyzmq-26.1.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "91b413b77603b872358cc61a774cb99e9806b00d2a730c8c8f058c2b80316243",
                "md5": "fe98cba86de64e9ebb4184c22d0373b0",
                "sha256": "732f957441e5b1c65a7509395e6b6cafee9e12df9aa5f4bf92ed266fe0ba70ee"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fe98cba86de64e9ebb4184c22d0373b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 858618,
            "upload_time": "2024-08-19T07:18:54",
            "upload_time_iso_8601": "2024-08-19T07:18:54.373955Z",
            "url": "https://files.pythonhosted.org/packages/91/b4/13b77603b872358cc61a774cb99e9806b00d2a730c8c8f058c2b80316243/pyzmq-26.1.1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2ab2e8eed8b5a6c484cf7d7bb5da03bf5b16ece3f13203c45d537359f879c0c0",
                "md5": "5d739a1719cb443f23c9b73fd0e4a10b",
                "sha256": "f0a45102ad7ed9f9ddf2bd699cc5df37742cf7301111cba06001b927efecb120"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5d739a1719cb443f23c9b73fd0e4a10b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 673470,
            "upload_time": "2024-08-19T07:18:56",
            "upload_time_iso_8601": "2024-08-19T07:18:56.112197Z",
            "url": "https://files.pythonhosted.org/packages/2a/b2/e8eed8b5a6c484cf7d7bb5da03bf5b16ece3f13203c45d537359f879c0c0/pyzmq-26.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "590b6d941586177bc331c66216378c2e820132d1b494a885daca86d174e2d008",
                "md5": "e07079ad2351f1e9603b0bb17a0e9bae",
                "sha256": "9f380d5333fc7cd17423f486125dcc073918676e33db70a6a8172b19fc78d23d"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e07079ad2351f1e9603b0bb17a0e9bae",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1205591,
            "upload_time": "2024-08-19T07:18:58",
            "upload_time_iso_8601": "2024-08-19T07:18:58.115734Z",
            "url": "https://files.pythonhosted.org/packages/59/0b/6d941586177bc331c66216378c2e820132d1b494a885daca86d174e2d008/pyzmq-26.1.1-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "14d6dad2da6f17d3c2981eb2440df97b13af1cf8281231156d2cc9f6cdbab1aa",
                "md5": "a6407b0ca39f47c366271e7ad5f596fd",
                "sha256": "8eaffcd6bf6a9d00b66a2052a33fa7e6a6575427e9644395f13c3d070f2918dc"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "a6407b0ca39f47c366271e7ad5f596fd",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1516127,
            "upload_time": "2024-08-19T07:19:01",
            "upload_time_iso_8601": "2024-08-19T07:19:01.137331Z",
            "url": "https://files.pythonhosted.org/packages/14/d6/dad2da6f17d3c2981eb2440df97b13af1cf8281231156d2cc9f6cdbab1aa/pyzmq-26.1.1-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e62b1fb144465fe4fda863a73e9beab1c46b1c2278d8a337ff1c8e402246bda4",
                "md5": "645834d1d46247ddbb9686757f6e9775",
                "sha256": "f1483d4975ae1b387b39bb8e23d1ff32fe5621aa9e4ed3055d05e9c5613fea53"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "645834d1d46247ddbb9686757f6e9775",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1415460,
            "upload_time": "2024-08-19T07:19:02",
            "upload_time_iso_8601": "2024-08-19T07:19:02.773736Z",
            "url": "https://files.pythonhosted.org/packages/e6/2b/1fb144465fe4fda863a73e9beab1c46b1c2278d8a337ff1c8e402246bda4/pyzmq-26.1.1-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "046d928fc63fb6747dc022034f4558f09f973394a6d7551c01df053b52ac3293",
                "md5": "ffe0b001bdc2122f71d1fdf1056a8ccb",
                "sha256": "a83653c6bbe5887caea55e49fbd2909c14b73acf43bcc051eb60b2d514bbd46e"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "ffe0b001bdc2122f71d1fdf1056a8ccb",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 585690,
            "upload_time": "2024-08-19T07:19:04",
            "upload_time_iso_8601": "2024-08-19T07:19:04.964686Z",
            "url": "https://files.pythonhosted.org/packages/04/6d/928fc63fb6747dc022034f4558f09f973394a6d7551c01df053b52ac3293/pyzmq-26.1.1-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "24b3be041bfed171630f6ea74d63590ddfd563fd113bf5787c49051397222683",
                "md5": "318bf0fe25a3bcdd94d968b83e3c6291",
                "sha256": "9763a8d3f5f74ef679989b373c37cc22e8d07e56d26439205cb83edb7722357f"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "318bf0fe25a3bcdd94d968b83e3c6291",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 649792,
            "upload_time": "2024-08-19T07:19:06",
            "upload_time_iso_8601": "2024-08-19T07:19:06.750204Z",
            "url": "https://files.pythonhosted.org/packages/24/b3/be041bfed171630f6ea74d63590ddfd563fd113bf5787c49051397222683/pyzmq-26.1.1-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d1750da38a06a7fb88798df2524e24965bd26172293f08e810d06e0286f5579a",
                "md5": "084d1ac8fc7e5d6304a42d44ab433e79",
                "sha256": "2b045647caf620ce0ed6c8fd9fb6a73116f99aceed966b152a5ba1b416d25311"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp38-cp38-macosx_10_15_universal2.whl",
            "has_sig": false,
            "md5_digest": "084d1ac8fc7e5d6304a42d44ab433e79",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1340563,
            "upload_time": "2024-08-19T07:19:08",
            "upload_time_iso_8601": "2024-08-19T07:19:08.886220Z",
            "url": "https://files.pythonhosted.org/packages/d1/75/0da38a06a7fb88798df2524e24965bd26172293f08e810d06e0286f5579a/pyzmq-26.1.1-cp38-cp38-macosx_10_15_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "40afbfb2ff8df31fc480bba5ac2554e25f44a78f34421430e360a4790ff18d7d",
                "md5": "620f822c3e1d4a876f376b61119a9501",
                "sha256": "f66dcb6625c002f209cdc12cae1a1fec926493cd2262efe37dc6b25a30cea863"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "620f822c3e1d4a876f376b61119a9501",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1008329,
            "upload_time": "2024-08-19T07:19:10",
            "upload_time_iso_8601": "2024-08-19T07:19:10.510906Z",
            "url": "https://files.pythonhosted.org/packages/40/af/bfb2ff8df31fc480bba5ac2554e25f44a78f34421430e360a4790ff18d7d/pyzmq-26.1.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "798ba9f9e22d9cc21411ca4568d2faf96b9b0fb7c02b250c8210be32127506c8",
                "md5": "dddf5e62b875adf74b17580967a189b4",
                "sha256": "0cf1d980c969fb9e538f52abd2227f09e015096bc5c3ef7aa26e0d64051c1db8"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "dddf5e62b875adf74b17580967a189b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 907656,
            "upload_time": "2024-08-19T07:19:12",
            "upload_time_iso_8601": "2024-08-19T07:19:12.416129Z",
            "url": "https://files.pythonhosted.org/packages/79/8b/a9f9e22d9cc21411ca4568d2faf96b9b0fb7c02b250c8210be32127506c8/pyzmq-26.1.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7d868b60eb978b93c715a6911d559fb43d23c3fb0017516155bacc4d9c17fd56",
                "md5": "d57889a2c1898446155ac77d6e480dc8",
                "sha256": "443ebf5e261a95ee9725693f2a5a71401f89b89df0e0ea58844b074067aac2f1"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d57889a2c1898446155ac77d6e480dc8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 862348,
            "upload_time": "2024-08-19T07:19:14",
            "upload_time_iso_8601": "2024-08-19T07:19:14.666999Z",
            "url": "https://files.pythonhosted.org/packages/7d/86/8b60eb978b93c715a6911d559fb43d23c3fb0017516155bacc4d9c17fd56/pyzmq-26.1.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a15333806c1f474bdcf83eb1a0b6254b89285c28979f0d5793c5bcba1d5df669",
                "md5": "7f343ec29b2555956fce12017b0b925d",
                "sha256": "29de77ba1b1877fe7defc1b9140e65cbd35f72a63bc501e56c2eae55bde5fff4"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7f343ec29b2555956fce12017b0b925d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 673933,
            "upload_time": "2024-08-19T07:19:16",
            "upload_time_iso_8601": "2024-08-19T07:19:16.141453Z",
            "url": "https://files.pythonhosted.org/packages/a1/53/33806c1f474bdcf83eb1a0b6254b89285c28979f0d5793c5bcba1d5df669/pyzmq-26.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "00a5385b86684650a349fe68cd8312754294e0bb005f89d6d21ad144cbd43468",
                "md5": "21066556ae29e34bd7ebb9ab3fec24ec",
                "sha256": "2f6071ec95af145d7b659dae6786871cd85f0acc599286b6f8ba0c74592d83dd"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "21066556ae29e34bd7ebb9ab3fec24ec",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1207066,
            "upload_time": "2024-08-19T07:19:17",
            "upload_time_iso_8601": "2024-08-19T07:19:17.912842Z",
            "url": "https://files.pythonhosted.org/packages/00/a5/385b86684650a349fe68cd8312754294e0bb005f89d6d21ad144cbd43468/pyzmq-26.1.1-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a7a85b5bfe4ede7743ad7798d06bce5e0d4d994324e88a78c7c5c52205ece088",
                "md5": "e5552ab208876d9e58786e8feb11685f",
                "sha256": "6f0512fc87629ad968889176bf2165d721cd817401a281504329e2a2ed0ca6a3"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "e5552ab208876d9e58786e8feb11685f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1516244,
            "upload_time": "2024-08-19T07:19:19",
            "upload_time_iso_8601": "2024-08-19T07:19:19.579975Z",
            "url": "https://files.pythonhosted.org/packages/a7/a8/5b5bfe4ede7743ad7798d06bce5e0d4d994324e88a78c7c5c52205ece088/pyzmq-26.1.1-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c3f40f9002789ad884140c16a4bb1b237db9617df834dc64efbec35c752fbc73",
                "md5": "a440b6c1a65ce495e4da6d4ed5efdbe2",
                "sha256": "5ccfcf13e80719f6a2d9c0a021d9e47d4550907a29253554be2c09582f6d7963"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a440b6c1a65ce495e4da6d4ed5efdbe2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1417540,
            "upload_time": "2024-08-19T07:19:21",
            "upload_time_iso_8601": "2024-08-19T07:19:21.572186Z",
            "url": "https://files.pythonhosted.org/packages/c3/f4/0f9002789ad884140c16a4bb1b237db9617df834dc64efbec35c752fbc73/pyzmq-26.1.1-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9a59b1d0e48a3e1422ea5c6fbb48b29c5c77ad39552194283e42e98743873408",
                "md5": "4571ef400109c5e9d9631c332f9ac419",
                "sha256": "809673947e95752e407aaaaf03f205ee86ebfff9ca51db6d4003dfd87b8428d1"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "4571ef400109c5e9d9631c332f9ac419",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 586096,
            "upload_time": "2024-08-19T07:19:23",
            "upload_time_iso_8601": "2024-08-19T07:19:23.536050Z",
            "url": "https://files.pythonhosted.org/packages/9a/59/b1d0e48a3e1422ea5c6fbb48b29c5c77ad39552194283e42e98743873408/pyzmq-26.1.1-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "90a0147239e8c700c03ed2b4b01d611991421bae7d8eaeffcb3703d2171fa879",
                "md5": "89615182f2c97e078fa51a97e777b402",
                "sha256": "62b5180e23e6f581600459cd983473cd723fdc64350f606d21407c99832aaf5f"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "89615182f2c97e078fa51a97e777b402",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 651148,
            "upload_time": "2024-08-19T07:19:25",
            "upload_time_iso_8601": "2024-08-19T07:19:25.411969Z",
            "url": "https://files.pythonhosted.org/packages/90/a0/147239e8c700c03ed2b4b01d611991421bae7d8eaeffcb3703d2171fa879/pyzmq-26.1.1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1cd461de45fde5089c9f0b2df20717b8a99d69abc7dea391826fdf9ae9d518aa",
                "md5": "6910863eb71551b4e8fa92261a9bc58f",
                "sha256": "fe73d7c89d6f803bed122135ff5783364e8cdb479cf6fe2d764a44b6349e7e0f"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp39-cp39-macosx_10_15_universal2.whl",
            "has_sig": false,
            "md5_digest": "6910863eb71551b4e8fa92261a9bc58f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1341333,
            "upload_time": "2024-08-19T07:19:27",
            "upload_time_iso_8601": "2024-08-19T07:19:27.565248Z",
            "url": "https://files.pythonhosted.org/packages/1c/d4/61de45fde5089c9f0b2df20717b8a99d69abc7dea391826fdf9ae9d518aa/pyzmq-26.1.1-cp39-cp39-macosx_10_15_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b36444014bcb4497a7d92439f5ef90e4ba38133f89985998c295b5fcc7e8de82",
                "md5": "bbc1d6e21e98992e464e9f945770cc17",
                "sha256": "db1b7e2b50ef21f398036786da4c153db63203a402396d9f21e08ea61f3f8dba"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bbc1d6e21e98992e464e9f945770cc17",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1009460,
            "upload_time": "2024-08-19T07:19:29",
            "upload_time_iso_8601": "2024-08-19T07:19:29.280325Z",
            "url": "https://files.pythonhosted.org/packages/b3/64/44014bcb4497a7d92439f5ef90e4ba38133f89985998c295b5fcc7e8de82/pyzmq-26.1.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ff1174603d4833c76059d671105f68a4abed53afaaa387945ae9c35056a3f91d",
                "md5": "bf3b597f5afb47a1f0d0fb821181ec88",
                "sha256": "7c506a51cb01bb997a3f6440db0d121e5e7a32396e9948b1fdb6a7bfa67243f4"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "bf3b597f5afb47a1f0d0fb821181ec88",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 908062,
            "upload_time": "2024-08-19T07:19:33",
            "upload_time_iso_8601": "2024-08-19T07:19:33.529928Z",
            "url": "https://files.pythonhosted.org/packages/ff/11/74603d4833c76059d671105f68a4abed53afaaa387945ae9c35056a3f91d/pyzmq-26.1.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d4e500ca0324b8b0992492ea68b0a2eabaac06344c9454d7df6f152188bd3573",
                "md5": "43e02815b39a7feca123265e301dd145",
                "sha256": "92eca4f80e8a748d880e55d3cf57ef487692e439f12d5c5a2e1cce84aaa7f6cb"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "43e02815b39a7feca123265e301dd145",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 862137,
            "upload_time": "2024-08-19T07:19:35",
            "upload_time_iso_8601": "2024-08-19T07:19:35.646478Z",
            "url": "https://files.pythonhosted.org/packages/d4/e5/00ca0324b8b0992492ea68b0a2eabaac06344c9454d7df6f152188bd3573/pyzmq-26.1.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7488e2473a3e7bf306471223faea6cc167a2359034969b1d739b941507c15657",
                "md5": "8ec8bc4fe2ca193f2b86e34ace994200",
                "sha256": "14bdbae02f72f4716b0ffe7500e9da303d719ddde1f3dcfb4c4f6cc1cf73bb02"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8ec8bc4fe2ca193f2b86e34ace994200",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 673807,
            "upload_time": "2024-08-19T07:19:37",
            "upload_time_iso_8601": "2024-08-19T07:19:37.559246Z",
            "url": "https://files.pythonhosted.org/packages/74/88/e2473a3e7bf306471223faea6cc167a2359034969b1d739b941507c15657/pyzmq-26.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1bff476d9b3590e6b75c12f0a79176a8618b355344628668bb01ee1e6b3a76de",
                "md5": "a8a026216e537e09d9732221b19963eb",
                "sha256": "e03be7ed17836c9434cce0668ac1e2cc9143d7169f90f46a0167f6155e176e32"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a8a026216e537e09d9732221b19963eb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1203738,
            "upload_time": "2024-08-19T07:19:39",
            "upload_time_iso_8601": "2024-08-19T07:19:39.103760Z",
            "url": "https://files.pythonhosted.org/packages/1b/ff/476d9b3590e6b75c12f0a79176a8618b355344628668bb01ee1e6b3a76de/pyzmq-26.1.1-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "131f0052449bd1e00434cad7ba92e735238db0d6c3cb3585928e72c4a4cc8a42",
                "md5": "08abc5835dc70c16244e836d61bc057e",
                "sha256": "bc5df31e36e4fddd4c8b5c42daee8d54d7b529e898ac984be97bf5517de166a7"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "08abc5835dc70c16244e836d61bc057e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1515923,
            "upload_time": "2024-08-19T07:19:40",
            "upload_time_iso_8601": "2024-08-19T07:19:40.940582Z",
            "url": "https://files.pythonhosted.org/packages/13/1f/0052449bd1e00434cad7ba92e735238db0d6c3cb3585928e72c4a4cc8a42/pyzmq-26.1.1-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "767b89b97e83173d9beb0e3f948a711bc491e7814c7052a1fb9ebd51dfe43b21",
                "md5": "147b4437eb20abc9920a87fc34a94004",
                "sha256": "f218179c90a12d660906e04b25a340dd63e9743000ba16232ddaf46888f269da"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "147b4437eb20abc9920a87fc34a94004",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1415443,
            "upload_time": "2024-08-19T07:19:42",
            "upload_time_iso_8601": "2024-08-19T07:19:42.648666Z",
            "url": "https://files.pythonhosted.org/packages/76/7b/89b97e83173d9beb0e3f948a711bc491e7814c7052a1fb9ebd51dfe43b21/pyzmq-26.1.1-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6bc888194123c18f191502c51a2e2d79bee01996683248067a6af5fcf00fa453",
                "md5": "e9b361c53a97f3fc1344e15305924ada",
                "sha256": "7dfabc180a4da422a4b349c63077347392463a75fa07aa3be96712ed6d42c547"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "e9b361c53a97f3fc1344e15305924ada",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 586510,
            "upload_time": "2024-08-19T07:19:44",
            "upload_time_iso_8601": "2024-08-19T07:19:44.224956Z",
            "url": "https://files.pythonhosted.org/packages/6b/c8/88194123c18f191502c51a2e2d79bee01996683248067a6af5fcf00fa453/pyzmq-26.1.1-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6951bccf56f2a84e1855d89bf9cfb1be440c00aa6eeff8130cc4abc522f39ae4",
                "md5": "612ce959b2d8c075b642bd0c386babb7",
                "sha256": "c5248e6e0fcbbbc912982e99cdd51c342601f495b0fa5bd667f3bdbdbf3e170f"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "612ce959b2d8c075b642bd0c386babb7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 650753,
            "upload_time": "2024-08-19T07:19:46",
            "upload_time_iso_8601": "2024-08-19T07:19:46.027341Z",
            "url": "https://files.pythonhosted.org/packages/69/51/bccf56f2a84e1855d89bf9cfb1be440c00aa6eeff8130cc4abc522f39ae4/pyzmq-26.1.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8de86fc8cbd71cb901587df85cb12fe886aad793c65306d9f1a49bfbca902f1b",
                "md5": "832df653c0e6c8c87bf46491812c5b62",
                "sha256": "2ae7aa1408778dc74582a1226052b930f9083b54b64d7e6ef6ec0466cfdcdec2"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-cp39-cp39-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "832df653c0e6c8c87bf46491812c5b62",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 552890,
            "upload_time": "2024-08-19T07:19:47",
            "upload_time_iso_8601": "2024-08-19T07:19:47.513090Z",
            "url": "https://files.pythonhosted.org/packages/8d/e8/6fc8cbd71cb901587df85cb12fe886aad793c65306d9f1a49bfbca902f1b/pyzmq-26.1.1-cp39-cp39-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4471c1d407a442179359a7cf437aa4c94b1c0f31233181f05a76370bc4cc7f3c",
                "md5": "6f65073b8b170d352a3522e7db87f028",
                "sha256": "be3fc2b11c0c384949cf1f01f9a48555039408b0f3e877863b1754225635953e"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6f65073b8b170d352a3522e7db87f028",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 907001,
            "upload_time": "2024-08-19T07:19:49",
            "upload_time_iso_8601": "2024-08-19T07:19:49.232555Z",
            "url": "https://files.pythonhosted.org/packages/44/71/c1d407a442179359a7cf437aa4c94b1c0f31233181f05a76370bc4cc7f3c/pyzmq-26.1.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "79fcf550c6ccbf859e266b85a1a8daf3e93ce3a238e05413300c74610bfe9a78",
                "md5": "e1b1999898c0b79054262a185d5b4f0c",
                "sha256": "48dee75c2a9fa4f4a583d4028d564a0453447ee1277a29b07acc3743c092e259"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e1b1999898c0b79054262a185d5b4f0c",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 565754,
            "upload_time": "2024-08-19T07:19:51",
            "upload_time_iso_8601": "2024-08-19T07:19:51.362803Z",
            "url": "https://files.pythonhosted.org/packages/79/fc/f550c6ccbf859e266b85a1a8daf3e93ce3a238e05413300c74610bfe9a78/pyzmq-26.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "90e5eee9c82203d398664db7ed357efe89fb3fb7eb02aa383e052b9aa3e1b2da",
                "md5": "0230ad7257383dcbab4117fc344f7ef9",
                "sha256": "23f2fe4fb567e8098ebaa7204819658195b10ddd86958a97a6058eed2901eed3"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "0230ad7257383dcbab4117fc344f7ef9",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 794374,
            "upload_time": "2024-08-19T07:19:53",
            "upload_time_iso_8601": "2024-08-19T07:19:53.292776Z",
            "url": "https://files.pythonhosted.org/packages/90/e5/eee9c82203d398664db7ed357efe89fb3fb7eb02aa383e052b9aa3e1b2da/pyzmq-26.1.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "25c5404cbc8949e1f3ce785f23c7624a3502767f45df04a54b406625473fdb22",
                "md5": "7f215a3cc97259e22c7ef4550d7ab0ed",
                "sha256": "472cacd16f627c06d3c8b2d374345ab74446bae913584a6245e2aa935336d929"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7f215a3cc97259e22c7ef4550d7ab0ed",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 752835,
            "upload_time": "2024-08-19T07:19:55",
            "upload_time_iso_8601": "2024-08-19T07:19:55.045596Z",
            "url": "https://files.pythonhosted.org/packages/25/c5/404cbc8949e1f3ce785f23c7624a3502767f45df04a54b406625473fdb22/pyzmq-26.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0659aaf876e51d6307da4ffc3e870f699d65f4487913c80e926c05f5d8a30311",
                "md5": "444b21b396841fba3b9c920c96937f66",
                "sha256": "8285b25aa20fcc46f1ca4afbc39fd3d5f2fe4c4bbf7f2c7f907a214e87a70024"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "444b21b396841fba3b9c920c96937f66",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 559602,
            "upload_time": "2024-08-19T07:19:56",
            "upload_time_iso_8601": "2024-08-19T07:19:56.675370Z",
            "url": "https://files.pythonhosted.org/packages/06/59/aaf876e51d6307da4ffc3e870f699d65f4487913c80e926c05f5d8a30311/pyzmq-26.1.1-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d58a510bb8598fab8d62d256670300ffc91abefd978e1d75688bcdc2fc7413bf",
                "md5": "29f92eb36d571869f9f38f8ce5799742",
                "sha256": "2067e63fd9d5c13cfe12624dab0366053e523b37a7a01678ce4321f839398939"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "29f92eb36d571869f9f38f8ce5799742",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 906992,
            "upload_time": "2024-08-19T07:19:58",
            "upload_time_iso_8601": "2024-08-19T07:19:58.852025Z",
            "url": "https://files.pythonhosted.org/packages/d5/8a/510bb8598fab8d62d256670300ffc91abefd978e1d75688bcdc2fc7413bf/pyzmq-26.1.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a78eaa02b924f79f68b6993853217fc47c1c05e45c33ec8bfae56c31a087957f",
                "md5": "7d76bb0d97c1ac81020cde22a984799e",
                "sha256": "cc109be2ee3638035d276e18eaf66a1e1f44201c0c4bea4ee0c692766bbd3570"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "7d76bb0d97c1ac81020cde22a984799e",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 802083,
            "upload_time": "2024-08-19T07:20:00",
            "upload_time_iso_8601": "2024-08-19T07:20:00.760287Z",
            "url": "https://files.pythonhosted.org/packages/a7/8e/aa02b924f79f68b6993853217fc47c1c05e45c33ec8bfae56c31a087957f/pyzmq-26.1.1-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "34a1f06ad693397076fc204e84476ed35c8e1c803b6fc1697d3821fd78acf40b",
                "md5": "5da8556cb980b95322ee196b87e40090",
                "sha256": "d0da97e65ee73261dba70469cc8f63d8da3a8a825337a2e3d246b9e95141cdd0"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5da8556cb980b95322ee196b87e40090",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 756879,
            "upload_time": "2024-08-19T07:20:02",
            "upload_time_iso_8601": "2024-08-19T07:20:02.514010Z",
            "url": "https://files.pythonhosted.org/packages/34/a1/f06ad693397076fc204e84476ed35c8e1c803b6fc1697d3821fd78acf40b/pyzmq-26.1.1-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9c509f26d5cb3919122b74feb424177d9523aebf9e25eb9fda574efc37fa866b",
                "md5": "da3d7311078f71b56d4add0394d3073c",
                "sha256": "aa79c528706561306938b275f89bb2c6985ce08469c27e5de05bc680df5e826f"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "da3d7311078f71b56d4add0394d3073c",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 565750,
            "upload_time": "2024-08-19T07:20:04",
            "upload_time_iso_8601": "2024-08-19T07:20:04.297611Z",
            "url": "https://files.pythonhosted.org/packages/9c/50/9f26d5cb3919122b74feb424177d9523aebf9e25eb9fda574efc37fa866b/pyzmq-26.1.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2aeb90a7b357b1819dad1df2aefa7e41a666b386b26f41c01295a21882eeb499",
                "md5": "1c5a0db687dd427af4aa48ee2db59fbc",
                "sha256": "3ddbd851a3a2651fdc5065a2804d50cf2f4b13b1bcd66de8e9e855d0217d4fcd"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1c5a0db687dd427af4aa48ee2db59fbc",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 559598,
            "upload_time": "2024-08-19T07:20:06",
            "upload_time_iso_8601": "2024-08-19T07:20:06.505669Z",
            "url": "https://files.pythonhosted.org/packages/2a/eb/90a7b357b1819dad1df2aefa7e41a666b386b26f41c01295a21882eeb499/pyzmq-26.1.1-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "40c58c54b8b54569801c67ef4088d26f73794640a9e0759ffcf0cd565e280c57",
                "md5": "e177f677bd76616d52b89c40a6cc0112",
                "sha256": "d3df226ab7464684ae6706e20a5cbab717c3735a7e409b3fa598b754d49f1946"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e177f677bd76616d52b89c40a6cc0112",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 906993,
            "upload_time": "2024-08-19T07:20:08",
            "upload_time_iso_8601": "2024-08-19T07:20:08.223209Z",
            "url": "https://files.pythonhosted.org/packages/40/c5/8c54b8b54569801c67ef4088d26f73794640a9e0759ffcf0cd565e280c57/pyzmq-26.1.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "75136bc516fd111bb09b8a0c2ea235329ac49a334459393f7a04f9c93d2ac60c",
                "md5": "112b2c8fa7c42ad06c8f85b24e9c4f2e",
                "sha256": "abad7b897e960d577eb4a0f3f789c1780bc3ffe2e7c27cf317e7c90ad26acf12"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "112b2c8fa7c42ad06c8f85b24e9c4f2e",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 802079,
            "upload_time": "2024-08-19T07:20:09",
            "upload_time_iso_8601": "2024-08-19T07:20:09.987333Z",
            "url": "https://files.pythonhosted.org/packages/75/13/6bc516fd111bb09b8a0c2ea235329ac49a334459393f7a04f9c93d2ac60c/pyzmq-26.1.1-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e7f83f32a7c6d3ed33c27754ea65f1644e5c3fde01249b08dc4e7f33fa49bb10",
                "md5": "74093bab24241825d98db37f0d95b247",
                "sha256": "c513d829a548c2d5c88983167be2b3aa537f6d1191edcdc6fcd8999e18bdd994"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "74093bab24241825d98db37f0d95b247",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 756880,
            "upload_time": "2024-08-19T07:20:11",
            "upload_time_iso_8601": "2024-08-19T07:20:11.655703Z",
            "url": "https://files.pythonhosted.org/packages/e7/f8/3f32a7c6d3ed33c27754ea65f1644e5c3fde01249b08dc4e7f33fa49bb10/pyzmq-26.1.1-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0ed432cf5c9b42a0d3aa8579b93faa1168a18899e9246d7cc49f168273d09fd5",
                "md5": "8bef5c793327bea03c84b98443fdc55d",
                "sha256": "70af4c9c991714ef1c65957605a8de42ef0d0620dd5f125953c8e682281bdb80"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8bef5c793327bea03c84b98443fdc55d",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 565753,
            "upload_time": "2024-08-19T07:20:13",
            "upload_time_iso_8601": "2024-08-19T07:20:13.390265Z",
            "url": "https://files.pythonhosted.org/packages/0e/d4/32cf5c9b42a0d3aa8579b93faa1168a18899e9246d7cc49f168273d09fd5/pyzmq-26.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ac90bcc5bc8be6646cffda68f3d1b76dcce20b1dcd1e33fb2b5197cad4367a9a",
                "md5": "592c8de1171dcaf1f7d314dbd6cd9a15",
                "sha256": "8d4234f335b0d0842f7d661d8cd50cbad0729be58f1c4deb85cd96b38fe95025"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "592c8de1171dcaf1f7d314dbd6cd9a15",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 559597,
            "upload_time": "2024-08-19T07:20:15",
            "upload_time_iso_8601": "2024-08-19T07:20:15.055700Z",
            "url": "https://files.pythonhosted.org/packages/ac/90/bcc5bc8be6646cffda68f3d1b76dcce20b1dcd1e33fb2b5197cad4367a9a/pyzmq-26.1.1-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "55c273d7473421631392b4d3eb19ec141a83bb9428177130b491e302bd00b857",
                "md5": "abf50e1dc13a875589d1da7594b1e76f",
                "sha256": "2c0fdb7b758e0e1605157e480b00b3a599073068a37091a1c75ec65bf7498645"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "abf50e1dc13a875589d1da7594b1e76f",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 906992,
            "upload_time": "2024-08-19T07:20:17",
            "upload_time_iso_8601": "2024-08-19T07:20:17.163584Z",
            "url": "https://files.pythonhosted.org/packages/55/c2/73d7473421631392b4d3eb19ec141a83bb9428177130b491e302bd00b857/pyzmq-26.1.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "63b876b8af86348e863f0bca41be7eeb8e3527fa5b6e9c46004475174971e247",
                "md5": "d75da24b9ad6bee81018a65ae67d115a",
                "sha256": "fc657577f057d60dd3642c9f95f28b432889b73143140061f7c1331d02f03df6"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d75da24b9ad6bee81018a65ae67d115a",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 565751,
            "upload_time": "2024-08-19T07:20:18",
            "upload_time_iso_8601": "2024-08-19T07:20:18.844854Z",
            "url": "https://files.pythonhosted.org/packages/63/b8/76b8af86348e863f0bca41be7eeb8e3527fa5b6e9c46004475174971e247/pyzmq-26.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aee3eac466d2659a2a4279e9567db9ad13f1798a16d1bed1370d35ab14ce1b96",
                "md5": "05e6eb68d76573fb70221ea8ccb99f68",
                "sha256": "3e3b66fe6131b4f33d239f7d4c3bfb2f8532d8644bae3b3da4f3987073edac55"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "05e6eb68d76573fb70221ea8ccb99f68",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 794367,
            "upload_time": "2024-08-19T07:20:20",
            "upload_time_iso_8601": "2024-08-19T07:20:20.869290Z",
            "url": "https://files.pythonhosted.org/packages/ae/e3/eac466d2659a2a4279e9567db9ad13f1798a16d1bed1370d35ab14ce1b96/pyzmq-26.1.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6e27a829037ca613ebab7fafe10643b8f1c196af9b72f4421fccbdae4cb24e6a",
                "md5": "e4890e19f89a073d1b82480558158d96",
                "sha256": "59b57e912feef6951aec8bb03fe0faa5ad5f36962883c72a30a9c965e6d988fd"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e4890e19f89a073d1b82480558158d96",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 752828,
            "upload_time": "2024-08-19T07:20:22",
            "upload_time_iso_8601": "2024-08-19T07:20:22.779335Z",
            "url": "https://files.pythonhosted.org/packages/6e/27/a829037ca613ebab7fafe10643b8f1c196af9b72f4421fccbdae4cb24e6a/pyzmq-26.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "43e152461face7fc77266ba6fdde25b14e231935c02930ea1f965b1f6c6265c5",
                "md5": "a0ef2c3ac712f0ab0b6f2744b66d14f6",
                "sha256": "146956aec7d947c5afc5e7da0841423d7a53f84fd160fff25e682361dcfb32cb"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a0ef2c3ac712f0ab0b6f2744b66d14f6",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 751393,
            "upload_time": "2024-08-19T07:20:24",
            "upload_time_iso_8601": "2024-08-19T07:20:24.988045Z",
            "url": "https://files.pythonhosted.org/packages/43/e1/52461face7fc77266ba6fdde25b14e231935c02930ea1f965b1f6c6265c5/pyzmq-26.1.1-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ea65e34ff0f0a71f410cbb7288cadc5ab51eeb2a3e1a7cc32813d3cbb8ab2cf6",
                "md5": "894ba325679bf0d7e0c7da9a0f724e33",
                "sha256": "9521b874fd489495865172f344e46e0159095d1f161858e3fc6e28e43ca15160"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "894ba325679bf0d7e0c7da9a0f724e33",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 559598,
            "upload_time": "2024-08-19T07:20:26",
            "upload_time_iso_8601": "2024-08-19T07:20:26.712734Z",
            "url": "https://files.pythonhosted.org/packages/ea/65/e34ff0f0a71f410cbb7288cadc5ab51eeb2a3e1a7cc32813d3cbb8ab2cf6/pyzmq-26.1.1-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fcc701a2dd24d3f54012a85af44474cc2eb5bb40c991d5c25e0572e4cb5135a7",
                "md5": "ac2ab356f96ee1fa4f900c7295f73d9f",
                "sha256": "a7db05d8b7cd1a8c6610e9e9aa55d525baae7a44a43e18bc3260eb3f92de96c6"
            },
            "downloads": -1,
            "filename": "pyzmq-26.1.1.tar.gz",
            "has_sig": false,
            "md5_digest": "ac2ab356f96ee1fa4f900c7295f73d9f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 271185,
            "upload_time": "2024-08-19T07:20:28",
            "upload_time_iso_8601": "2024-08-19T07:20:28.511694Z",
            "url": "https://files.pythonhosted.org/packages/fc/c7/01a2dd24d3f54012a85af44474cc2eb5bb40c991d5c25e0572e4cb5135a7/pyzmq-26.1.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-08-19 07:20:28",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "zeromq",
    "github_project": "pyzmq",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "circle": true,
    "lcname": "pyzmq"
}
        
Elapsed time: 0.32040s