pyzmq


Namepyzmq JSON
Version 26.2.1 PyPI version JSON
download
home_pageNone
SummaryPython bindings for 0MQ
upload_time2025-01-30 11:42:00
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/5a/e3/8d0382cb59feb111c252b54e8728257416a38ffcb2243c4e4775a3c990fe/pyzmq-26.2.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\n        \n        Copyright (c) 2009-2012, Brian Granger, Min Ragan-Kelley\n        \n        All rights reserved.\n        \n        Redistribution and use in source and binary forms, with or without\n        modification, are permitted provided that the following conditions are met:\n        \n        1. Redistributions of source code must retain the above copyright notice, this\n           list of conditions and the following disclaimer.\n        \n        2. Redistributions in binary form must reproduce the above copyright notice,\n           this list of conditions and the following disclaimer in the documentation\n           and/or other materials provided with the distribution.\n        \n        3. Neither the name of the copyright holder nor the names of its\n           contributors may be used to endorse or promote products derived from\n           this software without specific prior written permission.\n        \n        THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n        AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n        IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n        DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n        FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n        DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n        SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n        CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n        OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n        OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.",
    "summary": "Python bindings for 0MQ",
    "version": "26.2.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": null,
            "digests": {
                "blake2b_256": "703dc2d9d46c033d1b51692ea49a22439f7f66d91d5c938e8b5c56ed7a2151c2",
                "md5": "44588e8307a852be8cc4df3fcd14923f",
                "sha256": "f39d1227e8256d19899d953e6e19ed2ccb689102e6d85e024da5acf410f301eb"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp310-cp310-macosx_10_15_universal2.whl",
            "has_sig": false,
            "md5_digest": "44588e8307a852be8cc4df3fcd14923f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1345451,
            "upload_time": "2025-01-30T11:37:48",
            "upload_time_iso_8601": "2025-01-30T11:37:48.675321Z",
            "url": "https://files.pythonhosted.org/packages/70/3d/c2d9d46c033d1b51692ea49a22439f7f66d91d5c938e8b5c56ed7a2151c2/pyzmq-26.2.1-cp310-cp310-macosx_10_15_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0edf4754a8abcdeef280651f9bb51446c47659910940b392a66acff7c37f5cef",
                "md5": "785af3506df1339404b358561a505e62",
                "sha256": "a23948554c692df95daed595fdd3b76b420a4939d7a8a28d6d7dea9711878641"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "785af3506df1339404b358561a505e62",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 942766,
            "upload_time": "2025-01-30T11:37:51",
            "upload_time_iso_8601": "2025-01-30T11:37:51.691905Z",
            "url": "https://files.pythonhosted.org/packages/0e/df/4754a8abcdeef280651f9bb51446c47659910940b392a66acff7c37f5cef/pyzmq-26.2.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "74dae6053a3b13c912eded6c2cdeee22ff3a4c33820d17f9eb24c7b6e957ffe7",
                "md5": "514f7d46537b39522116fd2e7299a4b3",
                "sha256": "95f5728b367a042df146cec4340d75359ec6237beebf4a8f5cf74657c65b9257"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "514f7d46537b39522116fd2e7299a4b3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 678488,
            "upload_time": "2025-01-30T11:37:55",
            "upload_time_iso_8601": "2025-01-30T11:37:55.009926Z",
            "url": "https://files.pythonhosted.org/packages/74/da/e6053a3b13c912eded6c2cdeee22ff3a4c33820d17f9eb24c7b6e957ffe7/pyzmq-26.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9e50614934145244142401ca174ca81071777ab93aa88173973ba0154f491e09",
                "md5": "30341d63a94cdc27ec5f542ec62a409d",
                "sha256": "95f7b01b3f275504011cf4cf21c6b885c8d627ce0867a7e83af1382ebab7b3ff"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "30341d63a94cdc27ec5f542ec62a409d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 917115,
            "upload_time": "2025-01-30T11:37:58",
            "upload_time_iso_8601": "2025-01-30T11:37:58.279209Z",
            "url": "https://files.pythonhosted.org/packages/9e/50/614934145244142401ca174ca81071777ab93aa88173973ba0154f491e09/pyzmq-26.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "802bebeb7bc4fc8e9e61650b2e09581597355a4341d413fa9b2947d7a6558119",
                "md5": "8bc88a7ef0022e6b5f43a40650730292",
                "sha256": "80a00370a2ef2159c310e662c7c0f2d030f437f35f478bb8b2f70abd07e26b24"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8bc88a7ef0022e6b5f43a40650730292",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 874162,
            "upload_time": "2025-01-30T11:38:00",
            "upload_time_iso_8601": "2025-01-30T11:38:00.079044Z",
            "url": "https://files.pythonhosted.org/packages/80/2b/ebeb7bc4fc8e9e61650b2e09581597355a4341d413fa9b2947d7a6558119/pyzmq-26.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "794893210621c331ad16313dc2849801411fbae10d91d878853933f2a85df8e7",
                "md5": "a7ad1332a27607d1a9e7d3f467cbd7b4",
                "sha256": "8531ed35dfd1dd2af95f5d02afd6545e8650eedbf8c3d244a554cf47d8924459"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp310-cp310-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a7ad1332a27607d1a9e7d3f467cbd7b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 874180,
            "upload_time": "2025-01-30T11:38:02",
            "upload_time_iso_8601": "2025-01-30T11:38:02.205992Z",
            "url": "https://files.pythonhosted.org/packages/79/48/93210621c331ad16313dc2849801411fbae10d91d878853933f2a85df8e7/pyzmq-26.2.1-cp310-cp310-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f08b40924b4d8e33bfdd54c1970fb50f327e39b90b902f897cf09b30b2e9ac48",
                "md5": "7f1ee879dc857902a0ce46a681131bb4",
                "sha256": "cdb69710e462a38e6039cf17259d328f86383a06c20482cc154327968712273c"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7f1ee879dc857902a0ce46a681131bb4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1208139,
            "upload_time": "2025-01-30T11:38:05",
            "upload_time_iso_8601": "2025-01-30T11:38:05.387807Z",
            "url": "https://files.pythonhosted.org/packages/f0/8b/40924b4d8e33bfdd54c1970fb50f327e39b90b902f897cf09b30b2e9ac48/pyzmq-26.2.1-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c8b282d6675fc89bd965eae13c45002c792d33f06824589844b03f8ea8fc6d86",
                "md5": "83224a9cc861630c04970606faa8baad",
                "sha256": "e7eeaef81530d0b74ad0d29eec9997f1c9230c2f27242b8d17e0ee67662c8f6e"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "83224a9cc861630c04970606faa8baad",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1520666,
            "upload_time": "2025-01-30T11:38:07",
            "upload_time_iso_8601": "2025-01-30T11:38:07.497303Z",
            "url": "https://files.pythonhosted.org/packages/c8/b2/82d6675fc89bd965eae13c45002c792d33f06824589844b03f8ea8fc6d86/pyzmq-26.2.1-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9de25ff15f2d3f920dcc559d477bd9bb3faacd6d79fcf7c5448e585c78f84849",
                "md5": "7e910660b3d0b47b5a8c27e8dcf5e7ee",
                "sha256": "361edfa350e3be1f987e592e834594422338d7174364763b7d3de5b0995b16f3"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7e910660b3d0b47b5a8c27e8dcf5e7ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1420056,
            "upload_time": "2025-01-30T11:38:09",
            "upload_time_iso_8601": "2025-01-30T11:38:09.231171Z",
            "url": "https://files.pythonhosted.org/packages/9d/e2/5ff15f2d3f920dcc559d477bd9bb3faacd6d79fcf7c5448e585c78f84849/pyzmq-26.2.1-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "40a2f9bbeccf7f75aa0d8963e224e5730abcefbf742e1f2ae9ea60fd9d6ff72b",
                "md5": "7503285b54f328e22ebdc2a476bd8452",
                "sha256": "637536c07d2fb6a354988b2dd1d00d02eb5dd443f4bbee021ba30881af1c28aa"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "7503285b54f328e22ebdc2a476bd8452",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 583874,
            "upload_time": "2025-01-30T11:38:10",
            "upload_time_iso_8601": "2025-01-30T11:38:10.921926Z",
            "url": "https://files.pythonhosted.org/packages/40/a2/f9bbeccf7f75aa0d8963e224e5730abcefbf742e1f2ae9ea60fd9d6ff72b/pyzmq-26.2.1-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "56b144f513135843272f0e12f5aebf4af35839e2a88eb45411f2c8c010d8c856",
                "md5": "5ac43eee9d702b29584567f59b827ee6",
                "sha256": "45fad32448fd214fbe60030aa92f97e64a7140b624290834cc9b27b3a11f9473"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5ac43eee9d702b29584567f59b827ee6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 647367,
            "upload_time": "2025-01-30T11:38:12",
            "upload_time_iso_8601": "2025-01-30T11:38:12.664178Z",
            "url": "https://files.pythonhosted.org/packages/56/b1/44f513135843272f0e12f5aebf4af35839e2a88eb45411f2c8c010d8c856/pyzmq-26.2.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "279c1bef14a37b02d651a462811bbdb1390b61cd4a5b5e95cbd7cc2d60ef848c",
                "md5": "84d24384c7143a4deb0048fe4e62776e",
                "sha256": "d9da0289d8201c8a29fd158aaa0dfe2f2e14a181fd45e2dc1fbf969a62c1d594"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp310-cp310-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "84d24384c7143a4deb0048fe4e62776e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 561784,
            "upload_time": "2025-01-30T11:38:14",
            "upload_time_iso_8601": "2025-01-30T11:38:14.868436Z",
            "url": "https://files.pythonhosted.org/packages/27/9c/1bef14a37b02d651a462811bbdb1390b61cd4a5b5e95cbd7cc2d60ef848c/pyzmq-26.2.1-cp310-cp310-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b9035ecc46a6ed5971299f5c03e016ca637802d8660e44392bea774fb7797405",
                "md5": "b570030579ccf6a1b05ee50f3f2ce35c",
                "sha256": "c059883840e634a21c5b31d9b9a0e2b48f991b94d60a811092bc37992715146a"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp311-cp311-macosx_10_15_universal2.whl",
            "has_sig": false,
            "md5_digest": "b570030579ccf6a1b05ee50f3f2ce35c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1346032,
            "upload_time": "2025-01-30T11:38:17",
            "upload_time_iso_8601": "2025-01-30T11:38:17.357377Z",
            "url": "https://files.pythonhosted.org/packages/b9/03/5ecc46a6ed5971299f5c03e016ca637802d8660e44392bea774fb7797405/pyzmq-26.2.1-cp311-cp311-macosx_10_15_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "405148fec8f990ee644f461ff14c8fe5caa341b0b9b3a0ad7544f8ef17d6f528",
                "md5": "e9f68fc4f2ff48d2f9ebc923797dbf60",
                "sha256": "ed038a921df836d2f538e509a59cb638df3e70ca0fcd70d0bf389dfcdf784d2a"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e9f68fc4f2ff48d2f9ebc923797dbf60",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 943324,
            "upload_time": "2025-01-30T11:38:19",
            "upload_time_iso_8601": "2025-01-30T11:38:19.942959Z",
            "url": "https://files.pythonhosted.org/packages/40/51/48fec8f990ee644f461ff14c8fe5caa341b0b9b3a0ad7544f8ef17d6f528/pyzmq-26.2.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c1f4f322b389727c687845e38470b48d7a43c18a83f26d4d5084603c6c3f79ca",
                "md5": "2c0ba09163288e6272af5860e7da473f",
                "sha256": "9027a7fcf690f1a3635dc9e55e38a0d6602dbbc0548935d08d46d2e7ec91f454"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2c0ba09163288e6272af5860e7da473f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 678418,
            "upload_time": "2025-01-30T11:38:21",
            "upload_time_iso_8601": "2025-01-30T11:38:21.806272Z",
            "url": "https://files.pythonhosted.org/packages/c1/f4/f322b389727c687845e38470b48d7a43c18a83f26d4d5084603c6c3f79ca/pyzmq-26.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a8df2834e3202533bd05032d83e02db7ac09fa1be853bbef59974f2b2e3a8557",
                "md5": "094aa6521c74a4c849e71d841163cb75",
                "sha256": "6d75fcb00a1537f8b0c0bb05322bc7e35966148ffc3e0362f0369e44a4a1de99"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "094aa6521c74a4c849e71d841163cb75",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 915466,
            "upload_time": "2025-01-30T11:38:23",
            "upload_time_iso_8601": "2025-01-30T11:38:23.963288Z",
            "url": "https://files.pythonhosted.org/packages/a8/df/2834e3202533bd05032d83e02db7ac09fa1be853bbef59974f2b2e3a8557/pyzmq-26.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b5e245c0f6e122b562cb8c6c45c0dcac1160a4e2207385ef9b13463e74f93031",
                "md5": "6478a86f1b882067e331d51be1645217",
                "sha256": "f0019cc804ac667fb8c8eaecdb66e6d4a68acf2e155d5c7d6381a5645bd93ae4"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6478a86f1b882067e331d51be1645217",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 873347,
            "upload_time": "2025-01-30T11:38:26",
            "upload_time_iso_8601": "2025-01-30T11:38:26.496810Z",
            "url": "https://files.pythonhosted.org/packages/b5/e2/45c0f6e122b562cb8c6c45c0dcac1160a4e2207385ef9b13463e74f93031/pyzmq-26.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "deb93e0fbddf8b87454e914501d368171466a12550c70355b3844115947d68ea",
                "md5": "daa694593466205084682f64eddb8d09",
                "sha256": "f19dae58b616ac56b96f2e2290f2d18730a898a171f447f491cc059b073ca1fa"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp311-cp311-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "daa694593466205084682f64eddb8d09",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 874545,
            "upload_time": "2025-01-30T11:38:28",
            "upload_time_iso_8601": "2025-01-30T11:38:28.428956Z",
            "url": "https://files.pythonhosted.org/packages/de/b9/3e0fbddf8b87454e914501d368171466a12550c70355b3844115947d68ea/pyzmq-26.2.1-cp311-cp311-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1f1c1ee41d6e10b2127263b1994bc53b9e74ece015b0d2c0a30e0afaf69b78b2",
                "md5": "b0f4fbe98f00d77a05860e49e6940fbe",
                "sha256": "f5eeeb82feec1fc5cbafa5ee9022e87ffdb3a8c48afa035b356fcd20fc7f533f"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b0f4fbe98f00d77a05860e49e6940fbe",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1208630,
            "upload_time": "2025-01-30T11:38:30",
            "upload_time_iso_8601": "2025-01-30T11:38:30.960190Z",
            "url": "https://files.pythonhosted.org/packages/1f/1c/1ee41d6e10b2127263b1994bc53b9e74ece015b0d2c0a30e0afaf69b78b2/pyzmq-26.2.1-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3da950228465c625851a06aeee97c74f253631f509213f979166e83796299c60",
                "md5": "99ebbd112c4848ff9ff06990ddceded5",
                "sha256": "000760e374d6f9d1a3478a42ed0c98604de68c9e94507e5452951e598ebecfba"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "99ebbd112c4848ff9ff06990ddceded5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1519568,
            "upload_time": "2025-01-30T11:38:32",
            "upload_time_iso_8601": "2025-01-30T11:38:32.813480Z",
            "url": "https://files.pythonhosted.org/packages/3d/a9/50228465c625851a06aeee97c74f253631f509213f979166e83796299c60/pyzmq-26.2.1-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c6f26360b619e69da78863c2108beb5196ae8b955fe1e161c0b886b95dc6b1ac",
                "md5": "50dab435362f2d07b88d8b88ff65ad1b",
                "sha256": "817fcd3344d2a0b28622722b98500ae9c8bfee0f825b8450932ff19c0b15bebd"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "50dab435362f2d07b88d8b88ff65ad1b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1419677,
            "upload_time": "2025-01-30T11:38:35",
            "upload_time_iso_8601": "2025-01-30T11:38:35.902385Z",
            "url": "https://files.pythonhosted.org/packages/c6/f2/6360b619e69da78863c2108beb5196ae8b955fe1e161c0b886b95dc6b1ac/pyzmq-26.2.1-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dad5f179da989168f5dfd1be8103ef508ade1d38a8078dda4f10ebae3131a490",
                "md5": "401a86aa44d0a1312d3ce941d21c06d2",
                "sha256": "88812b3b257f80444a986b3596e5ea5c4d4ed4276d2b85c153a6fbc5ca457ae7"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "401a86aa44d0a1312d3ce941d21c06d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 582682,
            "upload_time": "2025-01-30T11:38:38",
            "upload_time_iso_8601": "2025-01-30T11:38:38.556800Z",
            "url": "https://files.pythonhosted.org/packages/da/d5/f179da989168f5dfd1be8103ef508ade1d38a8078dda4f10ebae3131a490/pyzmq-26.2.1-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6050e5b2e9de3ffab73ff92bee736216cf209381081fa6ab6ba96427777d98b1",
                "md5": "0d06ca99019ab771e0aad850b577c9ea",
                "sha256": "ef29630fde6022471d287c15c0a2484aba188adbfb978702624ba7a54ddfa6c1"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0d06ca99019ab771e0aad850b577c9ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 648128,
            "upload_time": "2025-01-30T11:38:40",
            "upload_time_iso_8601": "2025-01-30T11:38:40.427884Z",
            "url": "https://files.pythonhosted.org/packages/60/50/e5b2e9de3ffab73ff92bee736216cf209381081fa6ab6ba96427777d98b1/pyzmq-26.2.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d9fe7bb93476dd8405b0fc9cab1fd921a08bd22d5e3016aa6daea1a78d54129b",
                "md5": "6472267eb52533b379867028f420a1e7",
                "sha256": "f32718ee37c07932cc336096dc7403525301fd626349b6eff8470fe0f996d8d7"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp311-cp311-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "6472267eb52533b379867028f420a1e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 562465,
            "upload_time": "2025-01-30T11:38:41",
            "upload_time_iso_8601": "2025-01-30T11:38:41.994129Z",
            "url": "https://files.pythonhosted.org/packages/d9/fe/7bb93476dd8405b0fc9cab1fd921a08bd22d5e3016aa6daea1a78d54129b/pyzmq-26.2.1-cp311-cp311-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9cb9260a74786f162c7f521f5f891584a51d5a42fd15f5dcaa5c9226b2865fcc",
                "md5": "50257766dfb736ff3539fd20a37299da",
                "sha256": "a6549ecb0041dafa55b5932dcbb6c68293e0bd5980b5b99f5ebb05f9a3b8a8f3"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp312-cp312-macosx_10_15_universal2.whl",
            "has_sig": false,
            "md5_digest": "50257766dfb736ff3539fd20a37299da",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1348495,
            "upload_time": "2025-01-30T11:38:44",
            "upload_time_iso_8601": "2025-01-30T11:38:44.299108Z",
            "url": "https://files.pythonhosted.org/packages/9c/b9/260a74786f162c7f521f5f891584a51d5a42fd15f5dcaa5c9226b2865fcc/pyzmq-26.2.1-cp312-cp312-macosx_10_15_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bf738a0757e4b68f5a8ccb90ddadbb76c6a5f880266cdb18be38c99bcdc17aaa",
                "md5": "c5095d92b50b183c9fa6abff284560ba",
                "sha256": "0250c94561f388db51fd0213cdccbd0b9ef50fd3c57ce1ac937bf3034d92d72e"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c5095d92b50b183c9fa6abff284560ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 945035,
            "upload_time": "2025-01-30T11:38:46",
            "upload_time_iso_8601": "2025-01-30T11:38:46.303952Z",
            "url": "https://files.pythonhosted.org/packages/bf/73/8a0757e4b68f5a8ccb90ddadbb76c6a5f880266cdb18be38c99bcdc17aaa/pyzmq-26.2.1-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cfdef02ec973cd33155bb772bae33ace774acc7cc71b87b25c4829068bec35de",
                "md5": "8fac4aac6d2c90c2f0ae96256606beea",
                "sha256": "36ee4297d9e4b34b5dc1dd7ab5d5ea2cbba8511517ef44104d2915a917a56dc8"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8fac4aac6d2c90c2f0ae96256606beea",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 671213,
            "upload_time": "2025-01-30T11:38:48",
            "upload_time_iso_8601": "2025-01-30T11:38:48.334938Z",
            "url": "https://files.pythonhosted.org/packages/cf/de/f02ec973cd33155bb772bae33ace774acc7cc71b87b25c4829068bec35de/pyzmq-26.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d1808fc583085f85ac91682744efc916888dd9f11f9f75a31aef1b78a5486c6c",
                "md5": "d4a920947b855b0f77423ad9c7f03be9",
                "sha256": "c2a9cb17fd83b7a3a3009901aca828feaf20aa2451a8a487b035455a86549c09"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d4a920947b855b0f77423ad9c7f03be9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 908750,
            "upload_time": "2025-01-30T11:38:50",
            "upload_time_iso_8601": "2025-01-30T11:38:50.398472Z",
            "url": "https://files.pythonhosted.org/packages/d1/80/8fc583085f85ac91682744efc916888dd9f11f9f75a31aef1b78a5486c6c/pyzmq-26.2.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c3250b4824596f261a3cc512ab152448b383047ff5f143a6906a36876415981c",
                "md5": "b9d56e2d587fb37409ab6648825f3d9a",
                "sha256": "786dd8a81b969c2081b31b17b326d3a499ddd1856e06d6d79ad41011a25148da"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b9d56e2d587fb37409ab6648825f3d9a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 865416,
            "upload_time": "2025-01-30T11:38:52",
            "upload_time_iso_8601": "2025-01-30T11:38:52.301095Z",
            "url": "https://files.pythonhosted.org/packages/c3/25/0b4824596f261a3cc512ab152448b383047ff5f143a6906a36876415981c/pyzmq-26.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a1d16fda77a034d02034367b040973fd3861d945a5347e607bd2e98c99f20599",
                "md5": "48135e3235c204d21aabc0397fc1e174",
                "sha256": "2d88ba221a07fc2c5581565f1d0fe8038c15711ae79b80d9462e080a1ac30435"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp312-cp312-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "48135e3235c204d21aabc0397fc1e174",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 865922,
            "upload_time": "2025-01-30T11:38:54",
            "upload_time_iso_8601": "2025-01-30T11:38:54.332823Z",
            "url": "https://files.pythonhosted.org/packages/a1/d1/6fda77a034d02034367b040973fd3861d945a5347e607bd2e98c99f20599/pyzmq-26.2.1-cp312-cp312-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ad8148f7fd8a71c427412e739ce576fc1ee14f3dc34527ca9b0076e471676183",
                "md5": "4a43218d0a15d0ec137425620db1d2e4",
                "sha256": "1c84c1297ff9f1cd2440da4d57237cb74be21fdfe7d01a10810acba04e79371a"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4a43218d0a15d0ec137425620db1d2e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1201526,
            "upload_time": "2025-01-30T11:38:57",
            "upload_time_iso_8601": "2025-01-30T11:38:57.162072Z",
            "url": "https://files.pythonhosted.org/packages/ad/81/48f7fd8a71c427412e739ce576fc1ee14f3dc34527ca9b0076e471676183/pyzmq-26.2.1-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c7d8818f15c6ef36b5450e435cbb0d3a51599fc884a5d2b27b46b9c00af68ef1",
                "md5": "a4a18e328672d73547356ea64ba76292",
                "sha256": "46d4ebafc27081a7f73a0f151d0c38d4291656aa134344ec1f3d0199ebfbb6d4"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "a4a18e328672d73547356ea64ba76292",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1512808,
            "upload_time": "2025-01-30T11:38:59",
            "upload_time_iso_8601": "2025-01-30T11:38:59.137094Z",
            "url": "https://files.pythonhosted.org/packages/c7/d8/818f15c6ef36b5450e435cbb0d3a51599fc884a5d2b27b46b9c00af68ef1/pyzmq-26.2.1-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d9c4b3edb7d0ae82ad6fb1a8cdb191a4113c427a01e85139906f3b655b07f4f8",
                "md5": "397ffe4c6f1994320a25b14907ba3d45",
                "sha256": "91e2bfb8e9a29f709d51b208dd5f441dc98eb412c8fe75c24ea464734ccdb48e"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "397ffe4c6f1994320a25b14907ba3d45",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1411836,
            "upload_time": "2025-01-30T11:39:01",
            "upload_time_iso_8601": "2025-01-30T11:39:01.157244Z",
            "url": "https://files.pythonhosted.org/packages/d9/c4/b3edb7d0ae82ad6fb1a8cdb191a4113c427a01e85139906f3b655b07f4f8/pyzmq-26.2.1-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "691c151e3d42048f02cc5cd6dfc241d9d36b38375b4dee2e728acb5c353a6d52",
                "md5": "8c90a510e3e05f618a22cb69905974a1",
                "sha256": "4a98898fdce380c51cc3e38ebc9aa33ae1e078193f4dc641c047f88b8c690c9a"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "8c90a510e3e05f618a22cb69905974a1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 581378,
            "upload_time": "2025-01-30T11:39:02",
            "upload_time_iso_8601": "2025-01-30T11:39:02.858778Z",
            "url": "https://files.pythonhosted.org/packages/69/1c/151e3d42048f02cc5cd6dfc241d9d36b38375b4dee2e728acb5c353a6d52/pyzmq-26.2.1-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b6b9d59a7462848aaab7277fddb253ae134a570520115d80afa85e952287e6bc",
                "md5": "9741633a40f06b4a40f4b0090d832f8c",
                "sha256": "a0741edbd0adfe5f30bba6c5223b78c131b5aa4a00a223d631e5ef36e26e6d13"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9741633a40f06b4a40f4b0090d832f8c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 643737,
            "upload_time": "2025-01-30T11:39:05",
            "upload_time_iso_8601": "2025-01-30T11:39:05.495753Z",
            "url": "https://files.pythonhosted.org/packages/b6/b9/d59a7462848aaab7277fddb253ae134a570520115d80afa85e952287e6bc/pyzmq-26.2.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5509f37e707937cce328944c1d57e5e50ab905011d35252a0745c4f7e5822a76",
                "md5": "9203b8a8720ffa8cd0eb64affecceddb",
                "sha256": "e5e33b1491555843ba98d5209439500556ef55b6ab635f3a01148545498355e5"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp312-cp312-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "9203b8a8720ffa8cd0eb64affecceddb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 558303,
            "upload_time": "2025-01-30T11:39:08",
            "upload_time_iso_8601": "2025-01-30T11:39:08.163405Z",
            "url": "https://files.pythonhosted.org/packages/55/09/f37e707937cce328944c1d57e5e50ab905011d35252a0745c4f7e5822a76/pyzmq-26.2.1-cp312-cp312-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4f2efa7a91ce349975971d6aa925b4c7e1a05abaae99b97ade5ace758160c43d",
                "md5": "edee16b42c87cd2007e1a6720af3365c",
                "sha256": "099b56ef464bc355b14381f13355542e452619abb4c1e57a534b15a106bf8e23"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "edee16b42c87cd2007e1a6720af3365c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 942331,
            "upload_time": "2025-01-30T11:39:10",
            "upload_time_iso_8601": "2025-01-30T11:39:10.936030Z",
            "url": "https://files.pythonhosted.org/packages/4f/2e/fa7a91ce349975971d6aa925b4c7e1a05abaae99b97ade5ace758160c43d/pyzmq-26.2.1-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "642b1f10b34b6dc7ff4b40f668ea25ba9b8093ce61d874c784b90229b367707b",
                "md5": "d81728378b9c918f9f3061f664fdd02f",
                "sha256": "651726f37fcbce9f8dd2a6dab0f024807929780621890a4dc0c75432636871be"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp313-cp313-macosx_10_15_universal2.whl",
            "has_sig": false,
            "md5_digest": "d81728378b9c918f9f3061f664fdd02f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 1345831,
            "upload_time": "2025-01-30T11:39:14",
            "upload_time_iso_8601": "2025-01-30T11:39:14.136151Z",
            "url": "https://files.pythonhosted.org/packages/64/2b/1f10b34b6dc7ff4b40f668ea25ba9b8093ce61d874c784b90229b367707b/pyzmq-26.2.1-cp313-cp313-macosx_10_15_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4c8d34884cbd4a8ec050841b5fb58d37af136766a9f95b0b2634c2971deb09da",
                "md5": "5ea5716f203bc84cd2ccd2e2a677321a",
                "sha256": "57dd4d91b38fa4348e237a9388b4423b24ce9c1695bbd4ba5a3eada491e09399"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5ea5716f203bc84cd2ccd2e2a677321a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 670773,
            "upload_time": "2025-01-30T11:39:16",
            "upload_time_iso_8601": "2025-01-30T11:39:16.881809Z",
            "url": "https://files.pythonhosted.org/packages/4c/8d/34884cbd4a8ec050841b5fb58d37af136766a9f95b0b2634c2971deb09da/pyzmq-26.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0ff4d4becfcf9e416ad2564f18a6653f7c6aa917da08df5c3760edb0baa1c863",
                "md5": "f3f6ab880ff49249171b0c75b5eb2edb",
                "sha256": "d51a7bfe01a48e1064131f3416a5439872c533d756396be2b39e3977b41430f9"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "f3f6ab880ff49249171b0c75b5eb2edb",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 908836,
            "upload_time": "2025-01-30T11:39:19",
            "upload_time_iso_8601": "2025-01-30T11:39:19.680662Z",
            "url": "https://files.pythonhosted.org/packages/0f/f4/d4becfcf9e416ad2564f18a6653f7c6aa917da08df5c3760edb0baa1c863/pyzmq-26.2.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "07faab105f1b86b85cb2e821239f1d0900fccd66192a91d97ee04661b5436b4d",
                "md5": "468b8e6361782f0e572ea09bfddc24e0",
                "sha256": "c7154d228502e18f30f150b7ce94f0789d6b689f75261b623f0fdc1eec642aab"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "468b8e6361782f0e572ea09bfddc24e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 865369,
            "upload_time": "2025-01-30T11:39:23",
            "upload_time_iso_8601": "2025-01-30T11:39:23.038223Z",
            "url": "https://files.pythonhosted.org/packages/07/fa/ab105f1b86b85cb2e821239f1d0900fccd66192a91d97ee04661b5436b4d/pyzmq-26.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c94815d5f415504572dd4b92b52db5de7a5befc76bb75340ba9f36f71306a66d",
                "md5": "0ebf9813a010f4d330532b0b3093bae4",
                "sha256": "f1f31661a80cc46aba381bed475a9135b213ba23ca7ff6797251af31510920ce"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp313-cp313-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0ebf9813a010f4d330532b0b3093bae4",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 865676,
            "upload_time": "2025-01-30T11:39:25",
            "upload_time_iso_8601": "2025-01-30T11:39:25.173249Z",
            "url": "https://files.pythonhosted.org/packages/c9/48/15d5f415504572dd4b92b52db5de7a5befc76bb75340ba9f36f71306a66d/pyzmq-26.2.1-cp313-cp313-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7e352d91bcc7ccbb56043dd4d2c1763f24a8de5f05e06a134f767a7fb38e149c",
                "md5": "1cac3aece4c6263015e0092296f56fa9",
                "sha256": "290c96f479504439b6129a94cefd67a174b68ace8a8e3f551b2239a64cfa131a"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp313-cp313-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1cac3aece4c6263015e0092296f56fa9",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 1201457,
            "upload_time": "2025-01-30T11:39:27",
            "upload_time_iso_8601": "2025-01-30T11:39:27.022276Z",
            "url": "https://files.pythonhosted.org/packages/7e/35/2d91bcc7ccbb56043dd4d2c1763f24a8de5f05e06a134f767a7fb38e149c/pyzmq-26.2.1-cp313-cp313-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6dbbaa7c5119307a5762b8dca6c9db73e3ab4bccf32b15d7c4f376271ff72b2b",
                "md5": "953fed8716c030c2f2f8e38f4625c55a",
                "sha256": "f2c307fbe86e18ab3c885b7e01de942145f539165c3360e2af0f094dd440acd9"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp313-cp313-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "953fed8716c030c2f2f8e38f4625c55a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 1513035,
            "upload_time": "2025-01-30T11:39:29",
            "upload_time_iso_8601": "2025-01-30T11:39:29.756652Z",
            "url": "https://files.pythonhosted.org/packages/6d/bb/aa7c5119307a5762b8dca6c9db73e3ab4bccf32b15d7c4f376271ff72b2b/pyzmq-26.2.1-cp313-cp313-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4f4c527e6650c2fccec7750b783301329c8a8716d59423818afb67282304ce5a",
                "md5": "4b7c6b2ceef7214bcf2c2b7ae4bbdfcb",
                "sha256": "b314268e716487bfb86fcd6f84ebbe3e5bec5fac75fdf42bc7d90fdb33f618ad"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp313-cp313-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4b7c6b2ceef7214bcf2c2b7ae4bbdfcb",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 1411881,
            "upload_time": "2025-01-30T11:39:32",
            "upload_time_iso_8601": "2025-01-30T11:39:32.631432Z",
            "url": "https://files.pythonhosted.org/packages/4f/4c/527e6650c2fccec7750b783301329c8a8716d59423818afb67282304ce5a/pyzmq-26.2.1-cp313-cp313-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "060b63b6d7a2f07a77dbc9768c6302ae2d7518bed0c6cee515669ca0d8ec743e",
                "md5": "48fc80ccb3f2a14db9c225ec2b60d45c",
                "sha256": "25e720dba5b3a3bb2ad0ad5d33440babd1b03438a7a5220511d0c8fa677e102e"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp313-cp313t-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "48fc80ccb3f2a14db9c225ec2b60d45c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 938580,
            "upload_time": "2025-01-30T11:39:40",
            "upload_time_iso_8601": "2025-01-30T11:39:40.536362Z",
            "url": "https://files.pythonhosted.org/packages/06/0b/63b6d7a2f07a77dbc9768c6302ae2d7518bed0c6cee515669ca0d8ec743e/pyzmq-26.2.1-cp313-cp313t-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8538e5e2c3ffa23ea5f95f1c904014385a55902a11a67cd43c10edf61a653467",
                "md5": "89b48af3d908d0c135674b929070a781",
                "sha256": "9ec6abfb701437142ce9544bd6a236addaf803a32628d2260eb3dbd9a60e2891"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp313-cp313t-macosx_10_15_universal2.whl",
            "has_sig": false,
            "md5_digest": "89b48af3d908d0c135674b929070a781",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 1339670,
            "upload_time": "2025-01-30T11:39:42",
            "upload_time_iso_8601": "2025-01-30T11:39:42.492247Z",
            "url": "https://files.pythonhosted.org/packages/85/38/e5e2c3ffa23ea5f95f1c904014385a55902a11a67cd43c10edf61a653467/pyzmq-26.2.1-cp313-cp313t-macosx_10_15_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d287da5519ed7f8b31e4beee8f57311ec02926822fe23a95120877354cd80144",
                "md5": "83563365909b5d75b8ead967e06f340d",
                "sha256": "2e1eb9d2bfdf5b4e21165b553a81b2c3bd5be06eeddcc4e08e9692156d21f1f6"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "83563365909b5d75b8ead967e06f340d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 660983,
            "upload_time": "2025-01-30T11:39:44",
            "upload_time_iso_8601": "2025-01-30T11:39:44.503804Z",
            "url": "https://files.pythonhosted.org/packages/d2/87/da5519ed7f8b31e4beee8f57311ec02926822fe23a95120877354cd80144/pyzmq-26.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f6e81ca6a2d59562e04d326a026c9e3f791a6f1a276ebde29da478843a566fdb",
                "md5": "f66c37705ee041b7643231ed567ed572",
                "sha256": "90dc731d8e3e91bcd456aa7407d2eba7ac6f7860e89f3766baabb521f2c1de4a"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "f66c37705ee041b7643231ed567ed572",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 896509,
            "upload_time": "2025-01-30T11:39:46",
            "upload_time_iso_8601": "2025-01-30T11:39:46.388484Z",
            "url": "https://files.pythonhosted.org/packages/f6/e8/1ca6a2d59562e04d326a026c9e3f791a6f1a276ebde29da478843a566fdb/pyzmq-26.2.1-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5ce50b4688f7c74bea7e4f1e920da973fcd7d20175f4f1181cb9b692429c6bb9",
                "md5": "3d72a02aea7005c66ae39e79943e0696",
                "sha256": "0b6a93d684278ad865fc0b9e89fe33f6ea72d36da0e842143891278ff7fd89c3"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3d72a02aea7005c66ae39e79943e0696",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 853196,
            "upload_time": "2025-01-30T11:39:48",
            "upload_time_iso_8601": "2025-01-30T11:39:48.192404Z",
            "url": "https://files.pythonhosted.org/packages/5c/e5/0b4688f7c74bea7e4f1e920da973fcd7d20175f4f1181cb9b692429c6bb9/pyzmq-26.2.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8f35c17241da01195001828319e98517683dad0ac4df6fcba68763d61b630390",
                "md5": "22e85b5e5cea9f652772d974f0565452",
                "sha256": "c1bb37849e2294d519117dd99b613c5177934e5c04a5bb05dd573fa42026567e"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp313-cp313t-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "22e85b5e5cea9f652772d974f0565452",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 855133,
            "upload_time": "2025-01-30T11:39:50",
            "upload_time_iso_8601": "2025-01-30T11:39:50.097893Z",
            "url": "https://files.pythonhosted.org/packages/8f/35/c17241da01195001828319e98517683dad0ac4df6fcba68763d61b630390/pyzmq-26.2.1-cp313-cp313t-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d214268ee49bbecc3f72e225addeac7f0e2bd5808747b78c7bf7f87ed9f9d5a8",
                "md5": "04bee4dceb3e0282bcd3f380850e33d2",
                "sha256": "632a09c6d8af17b678d84df442e9c3ad8e4949c109e48a72f805b22506c4afa7"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp313-cp313t-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "04bee4dceb3e0282bcd3f380850e33d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 1191612,
            "upload_time": "2025-01-30T11:39:52",
            "upload_time_iso_8601": "2025-01-30T11:39:52.050915Z",
            "url": "https://files.pythonhosted.org/packages/d2/14/268ee49bbecc3f72e225addeac7f0e2bd5808747b78c7bf7f87ed9f9d5a8/pyzmq-26.2.1-cp313-cp313t-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5e026394498620b1b4349b95c534f3ebc3aef95f39afbdced5ed7ee315c49c14",
                "md5": "84a27e2b68dbd8ba2b7269129fd9d3bb",
                "sha256": "fc409c18884eaf9ddde516d53af4f2db64a8bc7d81b1a0c274b8aa4e929958e8"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp313-cp313t-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "84a27e2b68dbd8ba2b7269129fd9d3bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 1500824,
            "upload_time": "2025-01-30T11:39:54",
            "upload_time_iso_8601": "2025-01-30T11:39:54.148102Z",
            "url": "https://files.pythonhosted.org/packages/5e/02/6394498620b1b4349b95c534f3ebc3aef95f39afbdced5ed7ee315c49c14/pyzmq-26.2.1-cp313-cp313t-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "17fcb79f0b72891cbb9917698add0fede71dfb64e83fa3481a02ed0e78c34be7",
                "md5": "d94f5c63296090e991cc2de3644f6e9a",
                "sha256": "17f88622b848805d3f6427ce1ad5a2aa3cf61f12a97e684dab2979802024d460"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp313-cp313t-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d94f5c63296090e991cc2de3644f6e9a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 1399943,
            "upload_time": "2025-01-30T11:39:58",
            "upload_time_iso_8601": "2025-01-30T11:39:58.293143Z",
            "url": "https://files.pythonhosted.org/packages/17/fc/b79f0b72891cbb9917698add0fede71dfb64e83fa3481a02ed0e78c34be7/pyzmq-26.2.1-cp313-cp313t-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "899fe4412ea1b3e220acc21777a5edba8885856403d29c6999aaf00a9459eb03",
                "md5": "e94def798802d4e681d021c50df30c57",
                "sha256": "edb550616f567cd5603b53bb52a5f842c0171b78852e6fc7e392b02c2a1504bb"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "e94def798802d4e681d021c50df30c57",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 581354,
            "upload_time": "2025-01-30T11:39:34",
            "upload_time_iso_8601": "2025-01-30T11:39:34.568849Z",
            "url": "https://files.pythonhosted.org/packages/89/9f/e4412ea1b3e220acc21777a5edba8885856403d29c6999aaf00a9459eb03/pyzmq-26.2.1-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "55cdf89dd3e9fc2da0d1619a82c4afb600c86b52bc72d7584953d460bc8d5027",
                "md5": "166d76891192f5b22930a1ac677c1635",
                "sha256": "100a826a029c8ef3d77a1d4c97cbd6e867057b5806a7276f2bac1179f893d3bf"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "166d76891192f5b22930a1ac677c1635",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 643560,
            "upload_time": "2025-01-30T11:39:36",
            "upload_time_iso_8601": "2025-01-30T11:39:36.905437Z",
            "url": "https://files.pythonhosted.org/packages/55/cd/f89dd3e9fc2da0d1619a82c4afb600c86b52bc72d7584953d460bc8d5027/pyzmq-26.2.1-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a7995de4f8912860013f1116f818a0047659bc20d71d1bc1d48f874bdc2d7b9c",
                "md5": "fe9dcbaa5708ec4b7c5e538acb2e295e",
                "sha256": "6991ee6c43e0480deb1b45d0c7c2bac124a6540cba7db4c36345e8e092da47ce"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp313-cp313-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "fe9dcbaa5708ec4b7c5e538acb2e295e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 558037,
            "upload_time": "2025-01-30T11:39:38",
            "upload_time_iso_8601": "2025-01-30T11:39:38.753402Z",
            "url": "https://files.pythonhosted.org/packages/a7/99/5de4f8912860013f1116f818a0047659bc20d71d1bc1d48f874bdc2d7b9c/pyzmq-26.2.1-cp313-cp313-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a9e5642c57d4db61fa6e40b95414f25a7826f32b84db6b4c344f58b9596ed825",
                "md5": "4e1d975c2aa338e6a69a5e69246bbff0",
                "sha256": "3ef584f13820d2629326fe20cc04069c21c5557d84c26e277cfa6235e523b10f"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4e1d975c2aa338e6a69a5e69246bbff0",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 941711,
            "upload_time": "2025-01-30T11:40:00",
            "upload_time_iso_8601": "2025-01-30T11:40:00.534808Z",
            "url": "https://files.pythonhosted.org/packages/a9/e5/642c57d4db61fa6e40b95414f25a7826f32b84db6b4c344f58b9596ed825/pyzmq-26.2.1-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b69460a9d6a8182b1eef8b0b0c4c87bf4e81374bead08d44a8519440df3e3084",
                "md5": "955acc4579e528ef8b21614fe7ea1952",
                "sha256": "160194d1034902937359c26ccfa4e276abffc94937e73add99d9471e9f555dd6"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "955acc4579e528ef8b21614fe7ea1952",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 911485,
            "upload_time": "2025-01-30T11:40:02",
            "upload_time_iso_8601": "2025-01-30T11:40:02.453273Z",
            "url": "https://files.pythonhosted.org/packages/b6/94/60a9d6a8182b1eef8b0b0c4c87bf4e81374bead08d44a8519440df3e3084/pyzmq-26.2.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c0db9e88ba9a2565deb576b52a1003dcd7f3cb72e8db55ed6ba1c89bd4c7c49d",
                "md5": "1623cb3d531323371fbb885c3fa5ec28",
                "sha256": "574b285150afdbf0a0424dddf7ef9a0d183988eb8d22feacb7160f7515e032cb"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1623cb3d531323371fbb885c3fa5ec28",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 863954,
            "upload_time": "2025-01-30T11:40:05",
            "upload_time_iso_8601": "2025-01-30T11:40:05.095371Z",
            "url": "https://files.pythonhosted.org/packages/c0/db/9e88ba9a2565deb576b52a1003dcd7f3cb72e8db55ed6ba1c89bd4c7c49d/pyzmq-26.2.1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "da570db10804ee30d07e0155c0736e10b931ffa74f6aa9b6b9973b20dfac30dd",
                "md5": "205d4765fcf1a62cb8e08dc8d5cf85e5",
                "sha256": "44dba28c34ce527cf687156c81f82bf1e51f047838d5964f6840fd87dfecf9fe"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "205d4765fcf1a62cb8e08dc8d5cf85e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 678705,
            "upload_time": "2025-01-30T11:40:06",
            "upload_time_iso_8601": "2025-01-30T11:40:06.992057Z",
            "url": "https://files.pythonhosted.org/packages/da/57/0db10804ee30d07e0155c0736e10b931ffa74f6aa9b6b9973b20dfac30dd/pyzmq-26.2.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "563ec4ccf4e214a05e0bf0bdc2f8ecbcf6b4a5e3134b5da520842bd5b8fdd2aa",
                "md5": "83d8106257d0468f4d28888ac01004bf",
                "sha256": "9fbdb90b85c7624c304f72ec7854659a3bd901e1c0ffb2363163779181edeb68"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "83d8106257d0468f4d28888ac01004bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1210814,
            "upload_time": "2025-01-30T11:40:09",
            "upload_time_iso_8601": "2025-01-30T11:40:09.204596Z",
            "url": "https://files.pythonhosted.org/packages/56/3e/c4ccf4e214a05e0bf0bdc2f8ecbcf6b4a5e3134b5da520842bd5b8fdd2aa/pyzmq-26.2.1-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f9345cfbc17413b1356496b5c5342e35a0b2287678c2cf339f6dd29c2595b2a4",
                "md5": "cd08309ca7172611bd99dd1356fdd3fe",
                "sha256": "a7ad34a2921e8f76716dc7205c9bf46a53817e22b9eec2e8a3e08ee4f4a72468"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "cd08309ca7172611bd99dd1356fdd3fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1521430,
            "upload_time": "2025-01-30T11:40:11",
            "upload_time_iso_8601": "2025-01-30T11:40:11.271336Z",
            "url": "https://files.pythonhosted.org/packages/f9/34/5cfbc17413b1356496b5c5342e35a0b2287678c2cf339f6dd29c2595b2a4/pyzmq-26.2.1-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "24e795087841fa493883683527b6b48ce0e37a98fa8832b0f2f5080f102f34d1",
                "md5": "c16fe43746088d725d68d4283e30ac65",
                "sha256": "866c12b7c90dd3a86983df7855c6f12f9407c8684db6aa3890fc8027462bda82"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c16fe43746088d725d68d4283e30ac65",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1420747,
            "upload_time": "2025-01-30T11:40:13",
            "upload_time_iso_8601": "2025-01-30T11:40:13.105114Z",
            "url": "https://files.pythonhosted.org/packages/24/e7/95087841fa493883683527b6b48ce0e37a98fa8832b0f2f5080f102f34d1/pyzmq-26.2.1-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "29c124243cdcc4bdfa377ee852c3fac35e52ebdbf101e41416a344d51a280055",
                "md5": "bddb99414cef96884d133075f0e0a75c",
                "sha256": "eeb37f65350d5c5870517f02f8bbb2ac0fbec7b416c0f4875219fef305a89a45"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "bddb99414cef96884d133075f0e0a75c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 582773,
            "upload_time": "2025-01-30T11:40:14",
            "upload_time_iso_8601": "2025-01-30T11:40:14.895490Z",
            "url": "https://files.pythonhosted.org/packages/29/c1/24243cdcc4bdfa377ee852c3fac35e52ebdbf101e41416a344d51a280055/pyzmq-26.2.1-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a2ce6f3592b84ba9b8d99e60ff791224e27c3945653816596615135f5b1ce9c1",
                "md5": "cd03c3ea1e208f9f174983a106f99413",
                "sha256": "4eb3197f694dfb0ee6af29ef14a35f30ae94ff67c02076eef8125e2d98963cd0"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "cd03c3ea1e208f9f174983a106f99413",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 646070,
            "upload_time": "2025-01-30T11:40:17",
            "upload_time_iso_8601": "2025-01-30T11:40:17.567833Z",
            "url": "https://files.pythonhosted.org/packages/a2/ce/6f3592b84ba9b8d99e60ff791224e27c3945653816596615135f5b1ce9c1/pyzmq-26.2.1-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d2bbfe5b78f58dd7846a8a5255d74c3aa475ed6450c68338554222a929695b29",
                "md5": "07460fae3848425b41f630de344fc9b8",
                "sha256": "36d4e7307db7c847fe37413f333027d31c11d5e6b3bacbb5022661ac635942ba"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp38-cp38-macosx_10_15_universal2.whl",
            "has_sig": false,
            "md5_digest": "07460fae3848425b41f630de344fc9b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1345877,
            "upload_time": "2025-01-30T11:40:20",
            "upload_time_iso_8601": "2025-01-30T11:40:20.712862Z",
            "url": "https://files.pythonhosted.org/packages/d2/bb/fe5b78f58dd7846a8a5255d74c3aa475ed6450c68338554222a929695b29/pyzmq-26.2.1-cp38-cp38-macosx_10_15_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cd74b77cab27649917e8a7304c0a4b57f138a092177106a680cccc541189af40",
                "md5": "bcd1c82b7f46affd6e7b8c84f59e5c28",
                "sha256": "1c6ae0e95d0a4b0cfe30f648a18e764352d5415279bdf34424decb33e79935b8"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bcd1c82b7f46affd6e7b8c84f59e5c28",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 942846,
            "upload_time": "2025-01-30T11:40:22",
            "upload_time_iso_8601": "2025-01-30T11:40:22.711631Z",
            "url": "https://files.pythonhosted.org/packages/cd/74/b77cab27649917e8a7304c0a4b57f138a092177106a680cccc541189af40/pyzmq-26.2.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8c18aae170eb81d5b4d65082ffc7a115487d5985e0733d053b67a2320cf9065e",
                "md5": "150eea202df1115621c86a7062367c07",
                "sha256": "5b4fc44f5360784cc02392f14235049665caaf7c0fe0b04d313e763d3338e463"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "150eea202df1115621c86a7062367c07",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 913016,
            "upload_time": "2025-01-30T11:40:24",
            "upload_time_iso_8601": "2025-01-30T11:40:24.607570Z",
            "url": "https://files.pythonhosted.org/packages/8c/18/aae170eb81d5b4d65082ffc7a115487d5985e0733d053b67a2320cf9065e/pyzmq-26.2.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6c15d333cb6d96b3740b5b3fba6ff48fb9076266a85da140b02d435429d93779",
                "md5": "7eb3dd2f13cac8814f1e720e6e9ba683",
                "sha256": "51431f6b2750eb9b9d2b2952d3cc9b15d0215e1b8f37b7a3239744d9b487325d"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7eb3dd2f13cac8814f1e720e6e9ba683",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 867683,
            "upload_time": "2025-01-30T11:40:26",
            "upload_time_iso_8601": "2025-01-30T11:40:26.599383Z",
            "url": "https://files.pythonhosted.org/packages/6c/15/d333cb6d96b3740b5b3fba6ff48fb9076266a85da140b02d435429d93779/pyzmq-26.2.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2b21bf8e5e27abc0b08416544fc4563d45052ba9219b794d76c83b7e5e026f8e",
                "md5": "1eb64d1318e1a45d5af67468fc2ebf88",
                "sha256": "bdbc78ae2065042de48a65f1421b8af6b76a0386bb487b41955818c3c1ce7bed"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1eb64d1318e1a45d5af67468fc2ebf88",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 679167,
            "upload_time": "2025-01-30T11:40:29",
            "upload_time_iso_8601": "2025-01-30T11:40:29.666576Z",
            "url": "https://files.pythonhosted.org/packages/2b/21/bf8e5e27abc0b08416544fc4563d45052ba9219b794d76c83b7e5e026f8e/pyzmq-26.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7de179b567380a967cd525bac814a68585a8cdd5c5ba5bff3c890d3ed559e55c",
                "md5": "0318fa399dd240381c6f0bb8ac6a8410",
                "sha256": "d14f50d61a89b0925e4d97a0beba6053eb98c426c5815d949a43544f05a0c7ec"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0318fa399dd240381c6f0bb8ac6a8410",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1212285,
            "upload_time": "2025-01-30T11:40:31",
            "upload_time_iso_8601": "2025-01-30T11:40:31.854201Z",
            "url": "https://files.pythonhosted.org/packages/7d/e1/79b567380a967cd525bac814a68585a8cdd5c5ba5bff3c890d3ed559e55c/pyzmq-26.2.1-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a5c1339456da6fded90d05c7930686bed1ae6cb5d42fcdb4619ee959cb81eb18",
                "md5": "35fbbf765de8cc6bdaae5eda959892e3",
                "sha256": "004837cb958988c75d8042f5dac19a881f3d9b3b75b2f574055e22573745f841"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "35fbbf765de8cc6bdaae5eda959892e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1521549,
            "upload_time": "2025-01-30T11:40:34",
            "upload_time_iso_8601": "2025-01-30T11:40:34.858655Z",
            "url": "https://files.pythonhosted.org/packages/a5/c1/339456da6fded90d05c7930686bed1ae6cb5d42fcdb4619ee959cb81eb18/pyzmq-26.2.1-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b2264b1d9ce3152658535c43b4dc8d0d107c534ba3ef0cf9d4e46b1f87f46e6e",
                "md5": "291fd9fd0f6a435b1b00f27f00c089aa",
                "sha256": "0b2007f28ce1b8acebdf4812c1aab997a22e57d6a73b5f318b708ef9bcabbe95"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "291fd9fd0f6a435b1b00f27f00c089aa",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1422824,
            "upload_time": "2025-01-30T11:40:36",
            "upload_time_iso_8601": "2025-01-30T11:40:36.882549Z",
            "url": "https://files.pythonhosted.org/packages/b2/26/4b1d9ce3152658535c43b4dc8d0d107c534ba3ef0cf9d4e46b1f87f46e6e/pyzmq-26.2.1-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b51aeea539099f165c9e9a496eeadc181091022a8e401554eaa7a1e8eb056235",
                "md5": "e12147806731b6c4ce6fc9c62e348ba1",
                "sha256": "269c14904da971cb5f013100d1aaedb27c0a246728c341d5d61ddd03f463f2f3"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "e12147806731b6c4ce6fc9c62e348ba1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 583745,
            "upload_time": "2025-01-30T11:40:39",
            "upload_time_iso_8601": "2025-01-30T11:40:39.148260Z",
            "url": "https://files.pythonhosted.org/packages/b5/1a/eea539099f165c9e9a496eeadc181091022a8e401554eaa7a1e8eb056235/pyzmq-26.2.1-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "95747dddec65ba0df90489a16221ca4db4616bf4b0aac42650d3708b54007286",
                "md5": "67cae4239b26ae5b6109f053258ba54b",
                "sha256": "31fff709fef3b991cfe7189d2cfe0c413a1d0e82800a182cfa0c2e3668cd450f"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "67cae4239b26ae5b6109f053258ba54b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 648270,
            "upload_time": "2025-01-30T11:40:41",
            "upload_time_iso_8601": "2025-01-30T11:40:41.785846Z",
            "url": "https://files.pythonhosted.org/packages/95/74/7dddec65ba0df90489a16221ca4db4616bf4b0aac42650d3708b54007286/pyzmq-26.2.1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8da442e404040ccb3f65bd3b40e368dc96fb04b8e7eea1ecd3ac2ef0e70c51f3",
                "md5": "b03a6264231de76baf2213f05cc86eb4",
                "sha256": "a4bffcadfd40660f26d1b3315a6029fd4f8f5bf31a74160b151f5c577b2dc81b"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp39-cp39-macosx_10_15_universal2.whl",
            "has_sig": false,
            "md5_digest": "b03a6264231de76baf2213f05cc86eb4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1346647,
            "upload_time": "2025-01-30T11:40:44",
            "upload_time_iso_8601": "2025-01-30T11:40:44.018638Z",
            "url": "https://files.pythonhosted.org/packages/8d/a4/42e404040ccb3f65bd3b40e368dc96fb04b8e7eea1ecd3ac2ef0e70c51f3/pyzmq-26.2.1-cp39-cp39-macosx_10_15_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d5d9045ee93500e3f8cbd2a7b30a9533cba7b857b51b3bb4ec44fa61eb6d36ef",
                "md5": "3efa29c3239fe78672b3c853b5c37282",
                "sha256": "e76ad4729c2f1cf74b6eb1bdd05f6aba6175999340bd51e6caee49a435a13bf5"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3efa29c3239fe78672b3c853b5c37282",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 943305,
            "upload_time": "2025-01-30T11:40:46",
            "upload_time_iso_8601": "2025-01-30T11:40:46.012663Z",
            "url": "https://files.pythonhosted.org/packages/d5/d9/045ee93500e3f8cbd2a7b30a9533cba7b857b51b3bb4ec44fa61eb6d36ef/pyzmq-26.2.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5c3b9437cae0bfd3889dc7741ed9c132dc09c2a1fcae05a2e1b1af41a23a77a2",
                "md5": "142fc325f9b7fe4964d92fa1f95bc11f",
                "sha256": "8b0f5bab40a16e708e78a0c6ee2425d27e1a5d8135c7a203b4e977cee37eb4aa"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "142fc325f9b7fe4964d92fa1f95bc11f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 913424,
            "upload_time": "2025-01-30T11:40:47",
            "upload_time_iso_8601": "2025-01-30T11:40:47.902279Z",
            "url": "https://files.pythonhosted.org/packages/5c/3b/9437cae0bfd3889dc7741ed9c132dc09c2a1fcae05a2e1b1af41a23a77a2/pyzmq-26.2.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5c16f1f0e36c9c15247901379b45bd3f7cc15f540b62c9c34c28e735550014b4",
                "md5": "49639aa86d1390899ebb95182270e6a7",
                "sha256": "e8e47050412f0ad3a9b2287779758073cbf10e460d9f345002d4779e43bb0136"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "49639aa86d1390899ebb95182270e6a7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 867471,
            "upload_time": "2025-01-30T11:40:50",
            "upload_time_iso_8601": "2025-01-30T11:40:50.076134Z",
            "url": "https://files.pythonhosted.org/packages/5c/16/f1f0e36c9c15247901379b45bd3f7cc15f540b62c9c34c28e735550014b4/pyzmq-26.2.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "70683a0dd3b6386d725ffb98378cd046e15333fbcc1e2b3b48dbcda73259a752",
                "md5": "540db8e00d2501b6c86a0882208f9755",
                "sha256": "7f18ce33f422d119b13c1363ed4cce245b342b2c5cbbb76753eabf6aa6f69c7d"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "540db8e00d2501b6c86a0882208f9755",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 679051,
            "upload_time": "2025-01-30T11:40:51",
            "upload_time_iso_8601": "2025-01-30T11:40:51.984235Z",
            "url": "https://files.pythonhosted.org/packages/70/68/3a0dd3b6386d725ffb98378cd046e15333fbcc1e2b3b48dbcda73259a752/pyzmq-26.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "469a0c57cd9c0aae885a096f0c7ebd658f6c7fda49973e484bf7f1c47288beae",
                "md5": "e52fe28dc35d3278aad418b5b6c0b825",
                "sha256": "ceb0d78b7ef106708a7e2c2914afe68efffc0051dc6a731b0dbacd8b4aee6d68"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e52fe28dc35d3278aad418b5b6c0b825",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1208959,
            "upload_time": "2025-01-30T11:40:54",
            "upload_time_iso_8601": "2025-01-30T11:40:54.083234Z",
            "url": "https://files.pythonhosted.org/packages/46/9a/0c57cd9c0aae885a096f0c7ebd658f6c7fda49973e484bf7f1c47288beae/pyzmq-26.2.1-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "61f722dcf86ab2a4d458a300698972212be327a66e35785649e9f4bad2260f1c",
                "md5": "5d3edd80f6db3894e3975f30ed0fb952",
                "sha256": "7ebdd96bd637fd426d60e86a29ec14b8c1ab64b8d972f6a020baf08a30d1cf46"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "5d3edd80f6db3894e3975f30ed0fb952",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1521237,
            "upload_time": "2025-01-30T11:40:56",
            "upload_time_iso_8601": "2025-01-30T11:40:56.619992Z",
            "url": "https://files.pythonhosted.org/packages/61/f7/22dcf86ab2a4d458a300698972212be327a66e35785649e9f4bad2260f1c/pyzmq-26.2.1-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b420854bb34ac377efbe15d791d6e0bf991d8127cc6d471cd9a2666a13b4f3ba",
                "md5": "c82735ba1587719857694419330a5e94",
                "sha256": "03719e424150c6395b9513f53a5faadcc1ce4b92abdf68987f55900462ac7eec"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c82735ba1587719857694419330a5e94",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1420720,
            "upload_time": "2025-01-30T11:40:58",
            "upload_time_iso_8601": "2025-01-30T11:40:58.844065Z",
            "url": "https://files.pythonhosted.org/packages/b4/20/854bb34ac377efbe15d791d6e0bf991d8127cc6d471cd9a2666a13b4f3ba/pyzmq-26.2.1-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6de307816d8b50a506f6f59d0023b8fefa109d5549a874b9d250137e85dc4305",
                "md5": "b65430e18f4882a69c304045ce473aa1",
                "sha256": "ef5479fac31df4b304e96400fc67ff08231873ee3537544aa08c30f9d22fce38"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "b65430e18f4882a69c304045ce473aa1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 584311,
            "upload_time": "2025-01-30T11:41:01",
            "upload_time_iso_8601": "2025-01-30T11:41:01.713489Z",
            "url": "https://files.pythonhosted.org/packages/6d/e3/07816d8b50a506f6f59d0023b8fefa109d5549a874b9d250137e85dc4305/pyzmq-26.2.1-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9f78eeb040669d0ac1fc3c061c8053e96a49e5c612041f462b026ad154001ac1",
                "md5": "1b22f5023a442e19088b170513ac2b38",
                "sha256": "f92a002462154c176dac63a8f1f6582ab56eb394ef4914d65a9417f5d9fde218"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1b22f5023a442e19088b170513ac2b38",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 647856,
            "upload_time": "2025-01-30T11:41:03",
            "upload_time_iso_8601": "2025-01-30T11:41:03.714586Z",
            "url": "https://files.pythonhosted.org/packages/9f/78/eeb040669d0ac1fc3c061c8053e96a49e5c612041f462b026ad154001ac1/pyzmq-26.2.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2cc955eb55eda712573ca759e17b9018a2f9dbc4dd34bc7c862c36d574a40b1f",
                "md5": "7a98be4f157955892ac0359a7207023a",
                "sha256": "1fd4b3efc6f62199886440d5e27dd3ccbcb98dfddf330e7396f1ff421bfbb3c2"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-cp39-cp39-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "7a98be4f157955892ac0359a7207023a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 562372,
            "upload_time": "2025-01-30T11:41:05",
            "upload_time_iso_8601": "2025-01-30T11:41:05.748709Z",
            "url": "https://files.pythonhosted.org/packages/2c/c9/55eb55eda712573ca759e17b9018a2f9dbc4dd34bc7c862c36d574a40b1f/pyzmq-26.2.1-cp39-cp39-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "65d1e630a75cfb2534574a1258fda54d02f13cf80b576d4ce6d2aa478dc67829",
                "md5": "df77742c8937fb0f264ab88944c61e4d",
                "sha256": "380816d298aed32b1a97b4973a4865ef3be402a2e760204509b52b6de79d755d"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "df77742c8937fb0f264ab88944c61e4d",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 847743,
            "upload_time": "2025-01-30T11:41:10",
            "upload_time_iso_8601": "2025-01-30T11:41:10.214648Z",
            "url": "https://files.pythonhosted.org/packages/65/d1/e630a75cfb2534574a1258fda54d02f13cf80b576d4ce6d2aa478dc67829/pyzmq-26.2.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "27dff94a711b4f6c4b41e227f9a938103f52acf4c2e949d91cbc682495a48155",
                "md5": "e7f37469c25d8c6a9f51c4d348c5e29c",
                "sha256": "97cbb368fd0debdbeb6ba5966aa28e9a1ae3396c7386d15569a6ca4be4572b99"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e7f37469c25d8c6a9f51c4d348c5e29c",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 570991,
            "upload_time": "2025-01-30T11:41:12",
            "upload_time_iso_8601": "2025-01-30T11:41:12.232684Z",
            "url": "https://files.pythonhosted.org/packages/27/df/f94a711b4f6c4b41e227f9a938103f52acf4c2e949d91cbc682495a48155/pyzmq-26.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bf080c6f97fb3c9dbfa23382f0efaf8f9aa1396a08a3358974eaae3ee659ed5c",
                "md5": "8d2b0da900fd3372e9d3ac43b11ee282",
                "sha256": "abf7b5942c6b0dafcc2823ddd9154f419147e24f8df5b41ca8ea40a6db90615c"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "8d2b0da900fd3372e9d3ac43b11ee282",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 799664,
            "upload_time": "2025-01-30T11:41:14",
            "upload_time_iso_8601": "2025-01-30T11:41:14.291237Z",
            "url": "https://files.pythonhosted.org/packages/bf/08/0c6f97fb3c9dbfa23382f0efaf8f9aa1396a08a3358974eaae3ee659ed5c/pyzmq-26.2.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0514f4d4fd8bb8988c667845734dd756e9ee65b9a17a010d5f288dfca14a572d",
                "md5": "75cd8823f8473b49efd73926a39e55cc",
                "sha256": "3fe6e28a8856aea808715f7a4fc11f682b9d29cac5d6262dd8fe4f98edc12d53"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "75cd8823f8473b49efd73926a39e55cc",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 758156,
            "upload_time": "2025-01-30T11:41:17",
            "upload_time_iso_8601": "2025-01-30T11:41:17.049235Z",
            "url": "https://files.pythonhosted.org/packages/05/14/f4d4fd8bb8988c667845734dd756e9ee65b9a17a010d5f288dfca14a572d/pyzmq-26.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e3fe72e7e166bda3885810bee7b23049133e142f7c80c295bae02c562caeea16",
                "md5": "40eefb62dcb4de3aa1cd24ab84166cd4",
                "sha256": "bd8fdee945b877aa3bffc6a5a8816deb048dab0544f9df3731ecd0e54d8c84c9"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "40eefb62dcb4de3aa1cd24ab84166cd4",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 556563,
            "upload_time": "2025-01-30T11:41:19",
            "upload_time_iso_8601": "2025-01-30T11:41:19.140418Z",
            "url": "https://files.pythonhosted.org/packages/e3/fe/72e7e166bda3885810bee7b23049133e142f7c80c295bae02c562caeea16/pyzmq-26.2.1-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f2a9ece8fdac952d121f29571361514d398aa8f40fd6134a9d7154dac51a5b65",
                "md5": "33c45d1355eba699b513fa26e4d527ab",
                "sha256": "ee7152f32c88e0e1b5b17beb9f0e2b14454235795ef68c0c120b6d3d23d12833"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "33c45d1355eba699b513fa26e4d527ab",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 847717,
            "upload_time": "2025-01-30T11:41:22",
            "upload_time_iso_8601": "2025-01-30T11:41:22.008317Z",
            "url": "https://files.pythonhosted.org/packages/f2/a9/ece8fdac952d121f29571361514d398aa8f40fd6134a9d7154dac51a5b65/pyzmq-26.2.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "96f10e73524e54d59f48219379c63e62108ec384d3e88b9b00ffd529582b330a",
                "md5": "5e9d0e763ce33a7e12927a64eea386fb",
                "sha256": "baa1da72aecf6a490b51fba7a51f1ce298a1e0e86d0daef8265c8f8f9848eb77"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "5e9d0e763ce33a7e12927a64eea386fb",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 807440,
            "upload_time": "2025-01-30T11:41:24",
            "upload_time_iso_8601": "2025-01-30T11:41:24.071883Z",
            "url": "https://files.pythonhosted.org/packages/96/f1/0e73524e54d59f48219379c63e62108ec384d3e88b9b00ffd529582b330a/pyzmq-26.2.1-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cb89f20b9f8a0f3dbeee68986107805d49883b41b397e820e088297a5cb6f8ff",
                "md5": "31057cc92af4e118328d6473140d5c26",
                "sha256": "49135bb327fca159262d8fd14aa1f4a919fe071b04ed08db4c7c37d2f0647162"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "31057cc92af4e118328d6473140d5c26",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 762211,
            "upload_time": "2025-01-30T11:41:26",
            "upload_time_iso_8601": "2025-01-30T11:41:26.350545Z",
            "url": "https://files.pythonhosted.org/packages/cb/89/f20b9f8a0f3dbeee68986107805d49883b41b397e820e088297a5cb6f8ff/pyzmq-26.2.1-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "19656b1b3db9334819fdb224d309bb71474d57ff523c317c51a9b2edd9db5253",
                "md5": "9deea30703d29ac73eeffbb1d670f101",
                "sha256": "8bacc1a10c150d58e8a9ee2b2037a70f8d903107e0f0b6e079bf494f2d09c091"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9deea30703d29ac73eeffbb1d670f101",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 570985,
            "upload_time": "2025-01-30T11:41:28",
            "upload_time_iso_8601": "2025-01-30T11:41:28.629793Z",
            "url": "https://files.pythonhosted.org/packages/19/65/6b1b3db9334819fdb224d309bb71474d57ff523c317c51a9b2edd9db5253/pyzmq-26.2.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "54c167e1df44d421c357503140dd3497317fa641f1c3f683b7b2e24909012221",
                "md5": "c205203ad0a2c408b43c0ecdb4f87d25",
                "sha256": "09dac387ce62d69bec3f06d51610ca1d660e7849eb45f68e38e7f5cf1f49cbcb"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c205203ad0a2c408b43c0ecdb4f87d25",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 556557,
            "upload_time": "2025-01-30T11:41:30",
            "upload_time_iso_8601": "2025-01-30T11:41:30.904069Z",
            "url": "https://files.pythonhosted.org/packages/54/c1/67e1df44d421c357503140dd3497317fa641f1c3f683b7b2e24909012221/pyzmq-26.2.1-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c9e9892d0c9654a7ec5ea0b06b40f87b3f255d1440d8b5500dc9bf4b7079de95",
                "md5": "3774541c1b7436006f3a379b3f199e8f",
                "sha256": "70b3a46ecd9296e725ccafc17d732bfc3cdab850b54bd913f843a0a54dfb2c04"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3774541c1b7436006f3a379b3f199e8f",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 847718,
            "upload_time": "2025-01-30T11:41:33",
            "upload_time_iso_8601": "2025-01-30T11:41:33.048634Z",
            "url": "https://files.pythonhosted.org/packages/c9/e9/892d0c9654a7ec5ea0b06b40f87b3f255d1440d8b5500dc9bf4b7079de95/pyzmq-26.2.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b14f1e820f2706df3940f1a1bcbc072515ac5346f2c0e20c300623cf968eb35a",
                "md5": "23f7ea66d0514cc9b6d2b8d20f18146a",
                "sha256": "59660e15c797a3b7a571c39f8e0b62a1f385f98ae277dfe95ca7eaf05b5a0f12"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "23f7ea66d0514cc9b6d2b8d20f18146a",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 807438,
            "upload_time": "2025-01-30T11:41:35",
            "upload_time_iso_8601": "2025-01-30T11:41:35.965463Z",
            "url": "https://files.pythonhosted.org/packages/b1/4f/1e820f2706df3940f1a1bcbc072515ac5346f2c0e20c300623cf968eb35a/pyzmq-26.2.1-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ffcea575e9dedc47a83425faa7be99154bf206b3924c5acb0f76212f45933d2d",
                "md5": "63dd0dfb33b832677f7afc55246dd708",
                "sha256": "0f50db737d688e96ad2a083ad2b453e22865e7e19c7f17d17df416e91ddf67eb"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "63dd0dfb33b832677f7afc55246dd708",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 762214,
            "upload_time": "2025-01-30T11:41:38",
            "upload_time_iso_8601": "2025-01-30T11:41:38.848034Z",
            "url": "https://files.pythonhosted.org/packages/ff/ce/a575e9dedc47a83425faa7be99154bf206b3924c5acb0f76212f45933d2d/pyzmq-26.2.1-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ed89641e79c58155d8093e4f9acce823121d2402b5ed8a6bf1b5f3c47a2586fa",
                "md5": "7a80aa615ee10f5c2177d050855ec6fc",
                "sha256": "a003200b6cd64e89b5725ff7e284a93ab24fd54bbac8b4fa46b1ed57be693c27"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7a80aa615ee10f5c2177d050855ec6fc",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 570989,
            "upload_time": "2025-01-30T11:41:40",
            "upload_time_iso_8601": "2025-01-30T11:41:40.938367Z",
            "url": "https://files.pythonhosted.org/packages/ed/89/641e79c58155d8093e4f9acce823121d2402b5ed8a6bf1b5f3c47a2586fa/pyzmq-26.2.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3ab2439341a8304f4a99027a4170349638e9ff0063bbc97bbf2104d53b7e13b3",
                "md5": "20b3068ddbb70835aff7fa1fdecc6995",
                "sha256": "f9ba5def063243793dec6603ad1392f735255cbc7202a3a484c14f99ec290705"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "20b3068ddbb70835aff7fa1fdecc6995",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 556559,
            "upload_time": "2025-01-30T11:41:43",
            "upload_time_iso_8601": "2025-01-30T11:41:43.884558Z",
            "url": "https://files.pythonhosted.org/packages/3a/b2/439341a8304f4a99027a4170349638e9ff0063bbc97bbf2104d53b7e13b3/pyzmq-26.2.1-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d96bf27dfd4b7b3d6a8bd39ab1469fb8f8685c597d6772cbf3b39b1c4d798eee",
                "md5": "bdad122557eb444149e2b18c71ba55cf",
                "sha256": "1238c2448c58b9c8d6565579393148414a42488a5f916b3f322742e561f6ae0d"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bdad122557eb444149e2b18c71ba55cf",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 847735,
            "upload_time": "2025-01-30T11:41:45",
            "upload_time_iso_8601": "2025-01-30T11:41:45.985873Z",
            "url": "https://files.pythonhosted.org/packages/d9/6b/f27dfd4b7b3d6a8bd39ab1469fb8f8685c597d6772cbf3b39b1c4d798eee/pyzmq-26.2.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f51ffe0698f36c619bc960e97efe9a8ece412a7dc4c80e0bd603cde81731c6ca",
                "md5": "71e9270187c0849a1c766b09abeceed6",
                "sha256": "8eddb3784aed95d07065bcf94d07e8c04024fdb6b2386f08c197dfe6b3528fda"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "71e9270187c0849a1c766b09abeceed6",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 570986,
            "upload_time": "2025-01-30T11:41:48",
            "upload_time_iso_8601": "2025-01-30T11:41:48.160826Z",
            "url": "https://files.pythonhosted.org/packages/f5/1f/fe0698f36c619bc960e97efe9a8ece412a7dc4c80e0bd603cde81731c6ca/pyzmq-26.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "912ef7f6c00d16db2b1936f3cd3b8362c391e40dd16a646b92ebf2f3b28206ee",
                "md5": "f460e75394cd496a535df33228e42a99",
                "sha256": "f0f19c2097fffb1d5b07893d75c9ee693e9cbc809235cf3f2267f0ef6b015f24"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "f460e75394cd496a535df33228e42a99",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 799658,
            "upload_time": "2025-01-30T11:41:50",
            "upload_time_iso_8601": "2025-01-30T11:41:50.349739Z",
            "url": "https://files.pythonhosted.org/packages/91/2e/f7f6c00d16db2b1936f3cd3b8362c391e40dd16a646b92ebf2f3b28206ee/pyzmq-26.2.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5098aa114911fcb65645099d6db5694a49975ef442f2c34532ea5365b6ec6da8",
                "md5": "5b62be29ebd18244866a262aa32a67ef",
                "sha256": "0995fd3530f2e89d6b69a2202e340bbada3191014352af978fa795cb7a446331"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5b62be29ebd18244866a262aa32a67ef",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 758151,
            "upload_time": "2025-01-30T11:41:52",
            "upload_time_iso_8601": "2025-01-30T11:41:52.702892Z",
            "url": "https://files.pythonhosted.org/packages/50/98/aa114911fcb65645099d6db5694a49975ef442f2c34532ea5365b6ec6da8/pyzmq-26.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "53589909ad7a3112999a30464c5c92937c9eec5f5e6905a1eee45fd99788ce56",
                "md5": "5e5e2bdeec41a1b950e5b7e95c1fbd35",
                "sha256": "7c6160fe513654e65665332740f63de29ce0d165e053c0c14a161fa60dd0da01"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5e5e2bdeec41a1b950e5b7e95c1fbd35",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 756685,
            "upload_time": "2025-01-30T11:41:55",
            "upload_time_iso_8601": "2025-01-30T11:41:55.737779Z",
            "url": "https://files.pythonhosted.org/packages/53/58/9909ad7a3112999a30464c5c92937c9eec5f5e6905a1eee45fd99788ce56/pyzmq-26.2.1-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "01281c0f44e609b91a1168aaf4ac38511645fd725593b41cd54ef06744d502ff",
                "md5": "670edce297f3c275574c6ce261addbba",
                "sha256": "8ec8e3aea6146b761d6c57fcf8f81fcb19f187afecc19bf1701a48db9617a217"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "670edce297f3c275574c6ce261addbba",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 556558,
            "upload_time": "2025-01-30T11:41:57",
            "upload_time_iso_8601": "2025-01-30T11:41:57.950130Z",
            "url": "https://files.pythonhosted.org/packages/01/28/1c0f44e609b91a1168aaf4ac38511645fd725593b41cd54ef06744d502ff/pyzmq-26.2.1-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5ae38d0382cb59feb111c252b54e8728257416a38ffcb2243c4e4775a3c990fe",
                "md5": "9b3f424e2ffabd33fb32de70e678667e",
                "sha256": "17d72a74e5e9ff3829deb72897a175333d3ef5b5413948cae3cf7ebf0b02ecca"
            },
            "downloads": -1,
            "filename": "pyzmq-26.2.1.tar.gz",
            "has_sig": false,
            "md5_digest": "9b3f424e2ffabd33fb32de70e678667e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 278433,
            "upload_time": "2025-01-30T11:42:00",
            "upload_time_iso_8601": "2025-01-30T11:42:00.757608Z",
            "url": "https://files.pythonhosted.org/packages/5a/e3/8d0382cb59feb111c252b54e8728257416a38ffcb2243c4e4775a3c990fe/pyzmq-26.2.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-01-30 11:42:00",
    "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.40016s