pyzmq


Namepyzmq JSON
Version 27.0.2 PyPI version JSON
download
home_pageNone
SummaryPython bindings for 0MQ
upload_time2025-08-21 04:23:26
maintainerNone
docs_urlNone
authorBrian E. Granger, Min Ragan-Kelley
requires_python>=3.8
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.8), as well as PyPy.
PyZMQ 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 stable (not DRAFT) 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.

## 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.8",
    "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/f8/66/159f38d184f08b5f971b467f87b1ab142ab1320d5200825c824b32b84b66/pyzmq-27.0.2.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.8), as well as PyPy.\nPyZMQ 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 stable (not DRAFT) 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\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.\n         ",
    "summary": "Python bindings for 0MQ",
    "version": "27.0.2",
    "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": "834d2081cd7e41e340004d2051821efe1d0d67d31bdb5ac33bffc7e628d5f1bd",
                "md5": "1662bbdba7fe3beceb97c78f68c1f798",
                "sha256": "8b32c4636ced87dce0ac3d671e578b3400215efab372f1b4be242e8cf0b11384"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp310-cp310-macosx_10_15_universal2.whl",
            "has_sig": false,
            "md5_digest": "1662bbdba7fe3beceb97c78f68c1f798",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1329839,
            "upload_time": "2025-08-21T04:20:55",
            "upload_time_iso_8601": "2025-08-21T04:20:55.800685Z",
            "url": "https://files.pythonhosted.org/packages/83/4d/2081cd7e41e340004d2051821efe1d0d67d31bdb5ac33bffc7e628d5f1bd/pyzmq-27.0.2-cp310-cp310-macosx_10_15_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "adf11300b7e932671e31accb3512c19b43e6a3e8d08c54ab8b920308e53427ce",
                "md5": "3d8da8fc0ced28920dac8ed6f68d7077",
                "sha256": "f9528a4b3e24189cb333a9850fddbbafaa81df187297cfbddee50447cdb042cf"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl",
            "has_sig": false,
            "md5_digest": "3d8da8fc0ced28920dac8ed6f68d7077",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 906367,
            "upload_time": "2025-08-21T04:20:58",
            "upload_time_iso_8601": "2025-08-21T04:20:58.476768Z",
            "url": "https://files.pythonhosted.org/packages/ad/f1/1300b7e932671e31accb3512c19b43e6a3e8d08c54ab8b920308e53427ce/pyzmq-27.0.2-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e68061662db85eb3255a58c1bb59f6d4fc0d31c9c75b9a14983deafab12b2329",
                "md5": "88bcfae471d22456aecd6c5f5de92014",
                "sha256": "3b02ba0c0b2b9ebe74688002e6c56c903429924a25630804b9ede1f178aa5a3f"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "88bcfae471d22456aecd6c5f5de92014",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 666545,
            "upload_time": "2025-08-21T04:20:59",
            "upload_time_iso_8601": "2025-08-21T04:20:59.775226Z",
            "url": "https://files.pythonhosted.org/packages/e6/80/61662db85eb3255a58c1bb59f6d4fc0d31c9c75b9a14983deafab12b2329/pyzmq-27.0.2-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5c6e49fb9c75b039978cbb1f3657811d8056b0ebe6ecafd78a4457fc6de19799",
                "md5": "9ee1be7003fe575d18c76aa527c657bf",
                "sha256": "9e4dc5c9a6167617251dea0d024d67559795761aabb4b7ea015518be898be076"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9ee1be7003fe575d18c76aa527c657bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 854219,
            "upload_time": "2025-08-21T04:21:01",
            "upload_time_iso_8601": "2025-08-21T04:21:01.807938Z",
            "url": "https://files.pythonhosted.org/packages/5c/6e/49fb9c75b039978cbb1f3657811d8056b0ebe6ecafd78a4457fc6de19799/pyzmq-27.0.2-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b03c9951b302d221e471b7c659e70f9cb64db5f68fa3b7da45809ec4e6c6ef17",
                "md5": "8f2cbe4963400eb1d9a1433e8f7110fa",
                "sha256": "f1151b33aaf3b4fa9da26f4d696e38eebab67d1b43c446184d733c700b3ff8ce"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8f2cbe4963400eb1d9a1433e8f7110fa",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1655103,
            "upload_time": "2025-08-21T04:21:03",
            "upload_time_iso_8601": "2025-08-21T04:21:03.239979Z",
            "url": "https://files.pythonhosted.org/packages/b0/3c/9951b302d221e471b7c659e70f9cb64db5f68fa3b7da45809ec4e6c6ef17/pyzmq-27.0.2-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "88cad7adea6100fdf7f87f3856db02d2a0a45ce2764b9f60ba08c48c655b762f",
                "md5": "0d60f93987d8171092a03fad509610a1",
                "sha256": "4ecfc7999ac44c9ef92b5ae8f0b44fb935297977df54d8756b195a3cd12f38f0"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "0d60f93987d8171092a03fad509610a1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2033712,
            "upload_time": "2025-08-21T04:21:05",
            "upload_time_iso_8601": "2025-08-21T04:21:05.121755Z",
            "url": "https://files.pythonhosted.org/packages/88/ca/d7adea6100fdf7f87f3856db02d2a0a45ce2764b9f60ba08c48c655b762f/pyzmq-27.0.2-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e963b34e601b36ba4864d02ac1460443fc39bf533dedbdeead2a4e0df7dfc8ee",
                "md5": "5fd48ca9e798910c592e87617f2ac132",
                "sha256": "31c26a5d0b00befcaeeb600d8b15ad09f5604b6f44e2057ec5e521a9e18dcd9a"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5fd48ca9e798910c592e87617f2ac132",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1891847,
            "upload_time": "2025-08-21T04:21:06",
            "upload_time_iso_8601": "2025-08-21T04:21:06.586887Z",
            "url": "https://files.pythonhosted.org/packages/e9/63/b34e601b36ba4864d02ac1460443fc39bf533dedbdeead2a4e0df7dfc8ee/pyzmq-27.0.2-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cfa29479e6af779da44f788d5fcda5f77dff1af988351ef91682b92524eab2db",
                "md5": "28f04a5ece092c0a3ab2c28e1379db5a",
                "sha256": "25a100d2de2ac0c644ecf4ce0b509a720d12e559c77aff7e7e73aa684f0375bc"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "28f04a5ece092c0a3ab2c28e1379db5a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 567136,
            "upload_time": "2025-08-21T04:21:07",
            "upload_time_iso_8601": "2025-08-21T04:21:07.885827Z",
            "url": "https://files.pythonhosted.org/packages/cf/a2/9479e6af779da44f788d5fcda5f77dff1af988351ef91682b92524eab2db/pyzmq-27.0.2-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5846e1c2be469781fc56ba092fecb1bb336cedde0fd87d9e1a547aaeb5d1a968",
                "md5": "b8864d192dc8a64c8a4986f11c6014ae",
                "sha256": "a1acf091f53bb406e9e5e7383e467d1dd1b94488b8415b890917d30111a1fef3"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b8864d192dc8a64c8a4986f11c6014ae",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 631969,
            "upload_time": "2025-08-21T04:21:09",
            "upload_time_iso_8601": "2025-08-21T04:21:09.500310Z",
            "url": "https://files.pythonhosted.org/packages/58/46/e1c2be469781fc56ba092fecb1bb336cedde0fd87d9e1a547aaeb5d1a968/pyzmq-27.0.2-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d58dd20a62f1f77e3f04633a80bb83df085e4314f0e9404619cc458d0005d6ab",
                "md5": "46d88675a39971dfa344e28993e3d004",
                "sha256": "b38e01f11e9e95f6668dc8a62dccf9483f454fed78a77447507a0e8dcbd19a63"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp310-cp310-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "46d88675a39971dfa344e28993e3d004",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 559459,
            "upload_time": "2025-08-21T04:21:11",
            "upload_time_iso_8601": "2025-08-21T04:21:11.208052Z",
            "url": "https://files.pythonhosted.org/packages/d5/8d/d20a62f1f77e3f04633a80bb83df085e4314f0e9404619cc458d0005d6ab/pyzmq-27.0.2-cp310-cp310-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4273034429ab0f4316bf433eb6c20c3f49d1dc13b2ed4e4d951b283d300a0f35",
                "md5": "606b81244a591630b5c75b3527b86104",
                "sha256": "063845960df76599ad4fad69fa4d884b3ba38304272104fdcd7e3af33faeeb1d"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp311-cp311-macosx_10_15_universal2.whl",
            "has_sig": false,
            "md5_digest": "606b81244a591630b5c75b3527b86104",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1333169,
            "upload_time": "2025-08-21T04:21:12",
            "upload_time_iso_8601": "2025-08-21T04:21:12.483431Z",
            "url": "https://files.pythonhosted.org/packages/42/73/034429ab0f4316bf433eb6c20c3f49d1dc13b2ed4e4d951b283d300a0f35/pyzmq-27.0.2-cp311-cp311-macosx_10_15_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3502c42b3b526eb03a570c889eea85a5602797f800a50ba8b09ddbf7db568b78",
                "md5": "67fdba44638e6e6a17a30136833ca4c8",
                "sha256": "845a35fb21b88786aeb38af8b271d41ab0967985410f35411a27eebdc578a076"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.whl",
            "has_sig": false,
            "md5_digest": "67fdba44638e6e6a17a30136833ca4c8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 909176,
            "upload_time": "2025-08-21T04:21:13",
            "upload_time_iso_8601": "2025-08-21T04:21:13.835417Z",
            "url": "https://files.pythonhosted.org/packages/35/02/c42b3b526eb03a570c889eea85a5602797f800a50ba8b09ddbf7db568b78/pyzmq-27.0.2-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1b35a1c0b988fabbdf2dc5fe94b7c2bcfd61e3533e5109297b8e0daf1d7a8d2d",
                "md5": "1c4c5a91d7631d05f03afdd41a7560ae",
                "sha256": "515d20b5c3c86db95503faa989853a8ab692aab1e5336db011cd6d35626c4cb1"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1c4c5a91d7631d05f03afdd41a7560ae",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 668972,
            "upload_time": "2025-08-21T04:21:15",
            "upload_time_iso_8601": "2025-08-21T04:21:15.315825Z",
            "url": "https://files.pythonhosted.org/packages/1b/35/a1c0b988fabbdf2dc5fe94b7c2bcfd61e3533e5109297b8e0daf1d7a8d2d/pyzmq-27.0.2-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a063908ac865da32ceaeecea72adceadad28ca25b23a2ca5ff018e5bff30116f",
                "md5": "43fc6b78de6a4440b88de06a4ca7b5b1",
                "sha256": "862aedec0b0684a5050cdb5ec13c2da96d2f8dffda48657ed35e312a4e31553b"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "43fc6b78de6a4440b88de06a4ca7b5b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 856962,
            "upload_time": "2025-08-21T04:21:16",
            "upload_time_iso_8601": "2025-08-21T04:21:16.652114Z",
            "url": "https://files.pythonhosted.org/packages/a0/63/908ac865da32ceaeecea72adceadad28ca25b23a2ca5ff018e5bff30116f/pyzmq-27.0.2-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2f5a90b3cc20b65cdf9391896fcfc15d8db21182eab810b7ea05a2986912fbe2",
                "md5": "cfe57ab027b62307477c3ec65287b0ec",
                "sha256": "2cb5bcfc51c7a4fce335d3bc974fd1d6a916abbcdd2b25f6e89d37b8def25f57"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cfe57ab027b62307477c3ec65287b0ec",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1657712,
            "upload_time": "2025-08-21T04:21:18",
            "upload_time_iso_8601": "2025-08-21T04:21:18.666268Z",
            "url": "https://files.pythonhosted.org/packages/2f/5a/90b3cc20b65cdf9391896fcfc15d8db21182eab810b7ea05a2986912fbe2/pyzmq-27.0.2-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c43c32a5a80f9be4759325b8d7b22ce674bb87e586b4c80c6a9d77598b60d6f0",
                "md5": "753400f242d05d06732ab78574d701a3",
                "sha256": "38ff75b2a36e3a032e9fef29a5871e3e1301a37464e09ba364e3c3193f62982a"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "753400f242d05d06732ab78574d701a3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2035054,
            "upload_time": "2025-08-21T04:21:20",
            "upload_time_iso_8601": "2025-08-21T04:21:20.073559Z",
            "url": "https://files.pythonhosted.org/packages/c4/3c/32a5a80f9be4759325b8d7b22ce674bb87e586b4c80c6a9d77598b60d6f0/pyzmq-27.0.2-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "136171084fe2ff2d7dc5713f8740d735336e87544845dae1207a8e2e16d9af90",
                "md5": "3e2edd9afda78177bd16c1762446b412",
                "sha256": "7a5709abe8d23ca158a9d0a18c037f4193f5b6afeb53be37173a41e9fb885792"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3e2edd9afda78177bd16c1762446b412",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1894010,
            "upload_time": "2025-08-21T04:21:21",
            "upload_time_iso_8601": "2025-08-21T04:21:21.960673Z",
            "url": "https://files.pythonhosted.org/packages/13/61/71084fe2ff2d7dc5713f8740d735336e87544845dae1207a8e2e16d9af90/pyzmq-27.0.2-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cb6b77169cfb13b696e50112ca496b2ed23c4b7d8860a1ec0ff3e4b9f9926221",
                "md5": "3d049b83ebf5f7bee37fcd5a613f15b9",
                "sha256": "47c5dda2018c35d87be9b83de0890cb92ac0791fd59498847fc4eca6ff56671d"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "3d049b83ebf5f7bee37fcd5a613f15b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 566819,
            "upload_time": "2025-08-21T04:21:23",
            "upload_time_iso_8601": "2025-08-21T04:21:23.310258Z",
            "url": "https://files.pythonhosted.org/packages/cb/6b/77169cfb13b696e50112ca496b2ed23c4b7d8860a1ec0ff3e4b9f9926221/pyzmq-27.0.2-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "37cd86c4083e0f811f48f11bc0ddf1e7d13ef37adfd2fd4f78f2445f1cc5dec0",
                "md5": "6edbf2809167183b663e222ab5ef2ef0",
                "sha256": "f54ca3e98f8f4d23e989c7d0edcf9da7a514ff261edaf64d1d8653dd5feb0a8b"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6edbf2809167183b663e222ab5ef2ef0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 633264,
            "upload_time": "2025-08-21T04:21:24",
            "upload_time_iso_8601": "2025-08-21T04:21:24.761808Z",
            "url": "https://files.pythonhosted.org/packages/37/cd/86c4083e0f811f48f11bc0ddf1e7d13ef37adfd2fd4f78f2445f1cc5dec0/pyzmq-27.0.2-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a0695b8bb6a19a36a569fac02153a9e083738785892636270f5f68a915956aea",
                "md5": "4834076b2dbea410e85721247f610d91",
                "sha256": "2ef3067cb5b51b090fb853f423ad7ed63836ec154374282780a62eb866bf5768"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp311-cp311-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "4834076b2dbea410e85721247f610d91",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 559316,
            "upload_time": "2025-08-21T04:21:26",
            "upload_time_iso_8601": "2025-08-21T04:21:26.100712Z",
            "url": "https://files.pythonhosted.org/packages/a0/69/5b8bb6a19a36a569fac02153a9e083738785892636270f5f68a915956aea/pyzmq-27.0.2-cp311-cp311-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6869b3a729e7b03e412bee2b1823ab8d22e20a92593634f664afd04c6c9d9ac0",
                "md5": "cab41c17c79f18c1b2d268f111b8f8b3",
                "sha256": "5da05e3c22c95e23bfc4afeee6ff7d4be9ff2233ad6cb171a0e8257cd46b169a"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp312-abi3-macosx_10_15_universal2.whl",
            "has_sig": false,
            "md5_digest": "cab41c17c79f18c1b2d268f111b8f8b3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1305910,
            "upload_time": "2025-08-21T04:21:27",
            "upload_time_iso_8601": "2025-08-21T04:21:27.609505Z",
            "url": "https://files.pythonhosted.org/packages/68/69/b3a729e7b03e412bee2b1823ab8d22e20a92593634f664afd04c6c9d9ac0/pyzmq-27.0.2-cp312-abi3-macosx_10_15_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "15b7f6a6a285193d489b223c340b38ee03a673467cb54914da21c3d7849f1b10",
                "md5": "a702ff32d6f33de110bf35a39d35b390",
                "sha256": "4e4520577971d01d47e2559bb3175fce1be9103b18621bf0b241abe0a933d040"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp312-abi3-manylinux2014_i686.manylinux_2_17_i686.whl",
            "has_sig": false,
            "md5_digest": "a702ff32d6f33de110bf35a39d35b390",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 895507,
            "upload_time": "2025-08-21T04:21:29",
            "upload_time_iso_8601": "2025-08-21T04:21:29.005258Z",
            "url": "https://files.pythonhosted.org/packages/15/b7/f6a6a285193d489b223c340b38ee03a673467cb54914da21c3d7849f1b10/pyzmq-27.0.2-cp312-abi3-manylinux2014_i686.manylinux_2_17_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "17e6c4ed2da5ef9182cde1b1f5d0051a986e76339d71720ec1a00be0b49275ad",
                "md5": "b8ba4821dc6222d08f653f1791a50b9d",
                "sha256": "56d7de7bf73165b90bd25a8668659ccb134dd28449116bf3c7e9bab5cf8a8ec9"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp312-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b8ba4821dc6222d08f653f1791a50b9d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 652670,
            "upload_time": "2025-08-21T04:21:30",
            "upload_time_iso_8601": "2025-08-21T04:21:30.710180Z",
            "url": "https://files.pythonhosted.org/packages/17/e6/c4ed2da5ef9182cde1b1f5d0051a986e76339d71720ec1a00be0b49275ad/pyzmq-27.0.2-cp312-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0e66d781ab0636570d32c745c4e389b1c6b713115905cca69ab6233508622edd",
                "md5": "3eea8e30b3c2a50a97d5c10cc207afe8",
                "sha256": "340e7cddc32f147c6c00d116a3f284ab07ee63dbd26c52be13b590520434533c"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp312-abi3-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3eea8e30b3c2a50a97d5c10cc207afe8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 840581,
            "upload_time": "2025-08-21T04:21:32",
            "upload_time_iso_8601": "2025-08-21T04:21:32.008633Z",
            "url": "https://files.pythonhosted.org/packages/0e/66/d781ab0636570d32c745c4e389b1c6b713115905cca69ab6233508622edd/pyzmq-27.0.2-cp312-abi3-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a6dff24790caf565d72544f5c8d8500960b9562c1dc848d6f22f3c7e122e73d4",
                "md5": "f402f4941e7197dc1abdaa3dd89a87d2",
                "sha256": "ba95693f9df8bb4a9826464fb0fe89033936f35fd4a8ff1edff09a473570afa0"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp312-abi3-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f402f4941e7197dc1abdaa3dd89a87d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1641931,
            "upload_time": "2025-08-21T04:21:33",
            "upload_time_iso_8601": "2025-08-21T04:21:33.371228Z",
            "url": "https://files.pythonhosted.org/packages/a6/df/f24790caf565d72544f5c8d8500960b9562c1dc848d6f22f3c7e122e73d4/pyzmq-27.0.2-cp312-abi3-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "656577d27b19fc5e845367f9100db90b9fce924f611b14770db480615944c9c9",
                "md5": "bce8e58c6a3c264b8e961b6d52b44a73",
                "sha256": "ca42a6ce2d697537da34f77a1960d21476c6a4af3e539eddb2b114c3cf65a78c"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp312-abi3-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "bce8e58c6a3c264b8e961b6d52b44a73",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2021226,
            "upload_time": "2025-08-21T04:21:35",
            "upload_time_iso_8601": "2025-08-21T04:21:35.301156Z",
            "url": "https://files.pythonhosted.org/packages/65/65/77d27b19fc5e845367f9100db90b9fce924f611b14770db480615944c9c9/pyzmq-27.0.2-cp312-abi3-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5b651ed14421ba27a4207fa694772003a311d1142b7f543179e4d1099b7eb746",
                "md5": "6820442824a49a8024adaaac0b62ce46",
                "sha256": "3e44e665d78a07214b2772ccbd4b9bcc6d848d7895f1b2d7653f047b6318a4f6"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp312-abi3-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6820442824a49a8024adaaac0b62ce46",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1878047,
            "upload_time": "2025-08-21T04:21:36",
            "upload_time_iso_8601": "2025-08-21T04:21:36.749529Z",
            "url": "https://files.pythonhosted.org/packages/5b/65/1ed14421ba27a4207fa694772003a311d1142b7f543179e4d1099b7eb746/pyzmq-27.0.2-cp312-abi3-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dddce578549b89b40dc78a387ec471c2a360766690c0a045cd8d1877d401012d",
                "md5": "7bdd80ad39aebaac7613ecaacd276d84",
                "sha256": "272d772d116615397d2be2b1417b3b8c8bc8671f93728c2f2c25002a4530e8f6"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp312-abi3-win32.whl",
            "has_sig": false,
            "md5_digest": "7bdd80ad39aebaac7613ecaacd276d84",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 558757,
            "upload_time": "2025-08-21T04:21:38",
            "upload_time_iso_8601": "2025-08-21T04:21:38.200959Z",
            "url": "https://files.pythonhosted.org/packages/dd/dc/e578549b89b40dc78a387ec471c2a360766690c0a045cd8d1877d401012d/pyzmq-27.0.2-cp312-abi3-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b58906600980aefcc535c758414da969f37a5194ea4cdb73b745223f6af3acfb",
                "md5": "59e278e90aa3e9f350bb20ee23606078",
                "sha256": "734be4f44efba0aa69bf5f015ed13eb69ff29bf0d17ea1e21588b095a3147b8e"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp312-abi3-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "59e278e90aa3e9f350bb20ee23606078",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 619281,
            "upload_time": "2025-08-21T04:21:39",
            "upload_time_iso_8601": "2025-08-21T04:21:39.909298Z",
            "url": "https://files.pythonhosted.org/packages/b5/89/06600980aefcc535c758414da969f37a5194ea4cdb73b745223f6af3acfb/pyzmq-27.0.2-cp312-abi3-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3084df8a5c089552d17c9941d1aea4314b606edf1b1622361dae89aacedc6467",
                "md5": "25c96bdfaa6f50baf6a8619e4267b010",
                "sha256": "41f0bd56d9279392810950feb2785a419c2920bbf007fdaaa7f4a07332ae492d"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp312-abi3-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "25c96bdfaa6f50baf6a8619e4267b010",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 552680,
            "upload_time": "2025-08-21T04:21:41",
            "upload_time_iso_8601": "2025-08-21T04:21:41.571192Z",
            "url": "https://files.pythonhosted.org/packages/30/84/df8a5c089552d17c9941d1aea4314b606edf1b1622361dae89aacedc6467/pyzmq-27.0.2-cp312-abi3-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b47bb79e976508517ab80dc800f7021ef1fb602a6d55e4caa2d47fb3dca5d8b6",
                "md5": "81e4803e03e84ec733d645543dfe4fc0",
                "sha256": "7f01118133427cd7f34ee133b5098e2af5f70303fa7519785c007bca5aa6f96a"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp313-cp313-android_24_arm64_v8a.whl",
            "has_sig": false,
            "md5_digest": "81e4803e03e84ec733d645543dfe4fc0",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1122259,
            "upload_time": "2025-08-21T04:21:43",
            "upload_time_iso_8601": "2025-08-21T04:21:43.063822Z",
            "url": "https://files.pythonhosted.org/packages/b4/7b/b79e976508517ab80dc800f7021ef1fb602a6d55e4caa2d47fb3dca5d8b6/pyzmq-27.0.2-cp313-cp313-android_24_arm64_v8a.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2b1c777217b9940ebcb7e71c924184ca5f31e410580a58d9fd93798589f0d31c",
                "md5": "e661de8e660f0aa8e5732c68e2b0cf30",
                "sha256": "e4b860edf6379a7234ccbb19b4ed2c57e3ff569c3414fadfb49ae72b61a8ef07"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp313-cp313-android_24_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e661de8e660f0aa8e5732c68e2b0cf30",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1156113,
            "upload_time": "2025-08-21T04:21:44",
            "upload_time_iso_8601": "2025-08-21T04:21:44.566966Z",
            "url": "https://files.pythonhosted.org/packages/2b/1c/777217b9940ebcb7e71c924184ca5f31e410580a58d9fd93798589f0d31c/pyzmq-27.0.2-cp313-cp313-android_24_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "597d654657a4c6435f41538182e71b61eac386a789a2bbb6f30171915253a9a7",
                "md5": "a7b8e3f24998bd388098442108784fe8",
                "sha256": "cb77923ea163156da14295c941930bd525df0d29c96c1ec2fe3c3806b1e17cb3"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp313-cp313t-macosx_10_15_universal2.whl",
            "has_sig": false,
            "md5_digest": "a7b8e3f24998bd388098442108784fe8",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1341437,
            "upload_time": "2025-08-21T04:21:46",
            "upload_time_iso_8601": "2025-08-21T04:21:46.019649Z",
            "url": "https://files.pythonhosted.org/packages/59/7d/654657a4c6435f41538182e71b61eac386a789a2bbb6f30171915253a9a7/pyzmq-27.0.2-cp313-cp313t-macosx_10_15_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "20a05ed7710037f9c096017adc748bcb1698674a2d297f8b9422d38816f7b56a",
                "md5": "c85d04d03fa534c2b64f50a89392e57e",
                "sha256": "61678b7407b04df8f9423f188156355dc94d0fb52d360ae79d02ed7e0d431eea"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp313-cp313t-manylinux2014_i686.manylinux_2_17_i686.whl",
            "has_sig": false,
            "md5_digest": "c85d04d03fa534c2b64f50a89392e57e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 897888,
            "upload_time": "2025-08-21T04:21:47",
            "upload_time_iso_8601": "2025-08-21T04:21:47.362235Z",
            "url": "https://files.pythonhosted.org/packages/20/a0/5ed7710037f9c096017adc748bcb1698674a2d297f8b9422d38816f7b56a/pyzmq-27.0.2-cp313-cp313t-manylinux2014_i686.manylinux_2_17_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2c8a6e4699a60931c17e7406641d201d7f2c121e2a38979bc83226a6d8f1ba32",
                "md5": "0c3fa2b3b0f85184e0539e67b704be6e",
                "sha256": "e3c824b70925963bdc8e39a642672c15ffaa67e7d4b491f64662dd56d6271263"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0c3fa2b3b0f85184e0539e67b704be6e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 660727,
            "upload_time": "2025-08-21T04:21:48",
            "upload_time_iso_8601": "2025-08-21T04:21:48.734388Z",
            "url": "https://files.pythonhosted.org/packages/2c/8a/6e4699a60931c17e7406641d201d7f2c121e2a38979bc83226a6d8f1ba32/pyzmq-27.0.2-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7bd8d761e438c186451bd89ce63a665cde5690c084b61cd8f5d7b51e966e875a",
                "md5": "9d3a116e25bc0c020c5d2f0916774ad7",
                "sha256": "c4833e02fcf2751975457be1dfa2f744d4d09901a8cc106acaa519d868232175"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp313-cp313t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9d3a116e25bc0c020c5d2f0916774ad7",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 848136,
            "upload_time": "2025-08-21T04:21:50",
            "upload_time_iso_8601": "2025-08-21T04:21:50.416805Z",
            "url": "https://files.pythonhosted.org/packages/7b/d8/d761e438c186451bd89ce63a665cde5690c084b61cd8f5d7b51e966e875a/pyzmq-27.0.2-cp313-cp313t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "43f1a0f31684efdf3eb92f46b7dd2117e752208115e89d278f8ca5f413c5bb85",
                "md5": "275da02c49217ce3b9acbf07b3814562",
                "sha256": "b18045668d09cf0faa44918af2a67f0dbbef738c96f61c2f1b975b1ddb92ccfc"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "275da02c49217ce3b9acbf07b3814562",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1650402,
            "upload_time": "2025-08-21T04:21:52",
            "upload_time_iso_8601": "2025-08-21T04:21:52.235162Z",
            "url": "https://files.pythonhosted.org/packages/43/f1/a0f31684efdf3eb92f46b7dd2117e752208115e89d278f8ca5f413c5bb85/pyzmq-27.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "41fd0d7f2a1732812df02c85002770da4a7864c79b210084bcdab01ea57e8d92",
                "md5": "6a2edf2d391bdfcdc4974baa89c4f58e",
                "sha256": "bbbb7e2f3ac5a22901324e7b086f398b8e16d343879a77b15ca3312e8cd8e6d5"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp313-cp313t-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "6a2edf2d391bdfcdc4974baa89c4f58e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 2024587,
            "upload_time": "2025-08-21T04:21:54",
            "upload_time_iso_8601": "2025-08-21T04:21:54.070226Z",
            "url": "https://files.pythonhosted.org/packages/41/fd/0d7f2a1732812df02c85002770da4a7864c79b210084bcdab01ea57e8d92/pyzmq-27.0.2-cp313-cp313t-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f173358be69e279a382dd09e46dda29df8446365cddee4f79ef214e71e5b2b5a",
                "md5": "6944bd9edbe5cca936907b683c2d2ae2",
                "sha256": "b751914a73604d40d88a061bab042a11d4511b3ddbb7624cd83c39c8a498564c"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6944bd9edbe5cca936907b683c2d2ae2",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1885493,
            "upload_time": "2025-08-21T04:21:55",
            "upload_time_iso_8601": "2025-08-21T04:21:55.588430Z",
            "url": "https://files.pythonhosted.org/packages/f1/73/358be69e279a382dd09e46dda29df8446365cddee4f79ef214e71e5b2b5a/pyzmq-27.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c57be9951ad53b3dfed8cfb4c2cfd6e0097c9b454e5c0d0e6df5f2b60d7c8c3d",
                "md5": "2d737b1182aa63258eff0e7a3b55fc3f",
                "sha256": "3e8f833dd82af11db5321c414638045c70f61009f72dd61c88db4a713c1fb1d2"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp313-cp313t-win32.whl",
            "has_sig": false,
            "md5_digest": "2d737b1182aa63258eff0e7a3b55fc3f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 574934,
            "upload_time": "2025-08-21T04:21:57",
            "upload_time_iso_8601": "2025-08-21T04:21:57.520269Z",
            "url": "https://files.pythonhosted.org/packages/c5/7b/e9951ad53b3dfed8cfb4c2cfd6e0097c9b454e5c0d0e6df5f2b60d7c8c3d/pyzmq-27.0.2-cp313-cp313t-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "55331a7fc3a92f2124a63e6e2a6afa0af471a5c0c713e776b476d4eda5111b13",
                "md5": "ea385a95319a1ef05da7c18cc71565b4",
                "sha256": "5b45153cb8eadcab14139970643a84f7a7b08dda541fbc1f6f4855c49334b549"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp313-cp313t-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ea385a95319a1ef05da7c18cc71565b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 640932,
            "upload_time": "2025-08-21T04:21:59",
            "upload_time_iso_8601": "2025-08-21T04:21:59.527047Z",
            "url": "https://files.pythonhosted.org/packages/55/33/1a7fc3a92f2124a63e6e2a6afa0af471a5c0c713e776b476d4eda5111b13/pyzmq-27.0.2-cp313-cp313t-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2a522598a94ac251a7c83f3887866225eea1952b0d4463a68df5032eb00ff052",
                "md5": "64f09d1eff9d5a412c32780e9333ece7",
                "sha256": "86898f5c9730df23427c1ee0097d8aa41aa5f89539a79e48cd0d2c22d059f1b7"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp313-cp313t-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "64f09d1eff9d5a412c32780e9333ece7",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 561315,
            "upload_time": "2025-08-21T04:22:01",
            "upload_time_iso_8601": "2025-08-21T04:22:01.295971Z",
            "url": "https://files.pythonhosted.org/packages/2a/52/2598a94ac251a7c83f3887866225eea1952b0d4463a68df5032eb00ff052/pyzmq-27.0.2-cp313-cp313t-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "427d10ef02ea36590b29d48ef88eb0831f0af3eb240cccca2752556faec55f59",
                "md5": "0803868906ea2e3255068c7ab8a17c18",
                "sha256": "d2b4b261dce10762be5c116b6ad1f267a9429765b493c454f049f33791dd8b8a"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp314-cp314t-macosx_10_15_universal2.whl",
            "has_sig": false,
            "md5_digest": "0803868906ea2e3255068c7ab8a17c18",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 1341463,
            "upload_time": "2025-08-21T04:22:02",
            "upload_time_iso_8601": "2025-08-21T04:22:02.712051Z",
            "url": "https://files.pythonhosted.org/packages/42/7d/10ef02ea36590b29d48ef88eb0831f0af3eb240cccca2752556faec55f59/pyzmq-27.0.2-cp314-cp314t-macosx_10_15_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9436115d18dade9a3d4d3d08dd8bfe5459561b8e02815f99df040555fdd7768e",
                "md5": "fcb5ff0cd7e038ab77bda508991d890d",
                "sha256": "4e4d88b6cff156fed468903006b24bbd85322612f9c2f7b96e72d5016fd3f543"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp314-cp314t-manylinux2014_i686.manylinux_2_17_i686.whl",
            "has_sig": false,
            "md5_digest": "fcb5ff0cd7e038ab77bda508991d890d",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 897840,
            "upload_time": "2025-08-21T04:22:04",
            "upload_time_iso_8601": "2025-08-21T04:22:04.845813Z",
            "url": "https://files.pythonhosted.org/packages/94/36/115d18dade9a3d4d3d08dd8bfe5459561b8e02815f99df040555fdd7768e/pyzmq-27.0.2-cp314-cp314t-manylinux2014_i686.manylinux_2_17_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3966083b37839b95c386a95f1537bb41bdbf0c002b7c55b75ee737949cecb11f",
                "md5": "03ab47e483ce0a7f2653461073479e9d",
                "sha256": "8426c0ebbc11ed8416a6e9409c194142d677c2c5c688595f2743664e356d9e9b"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "03ab47e483ce0a7f2653461073479e9d",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 660704,
            "upload_time": "2025-08-21T04:22:06",
            "upload_time_iso_8601": "2025-08-21T04:22:06.389349Z",
            "url": "https://files.pythonhosted.org/packages/39/66/083b37839b95c386a95f1537bb41bdbf0c002b7c55b75ee737949cecb11f/pyzmq-27.0.2-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "765a196ab46e549ba35bf3268f575e10cfac0dc86b78dcaa7a3e36407ecda752",
                "md5": "58e70d31a6dfd5d687374e1c0ddb3da3",
                "sha256": "565bee96a155fe6452caed5fb5f60c9862038e6b51a59f4f632562081cdb4004"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp314-cp314t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "58e70d31a6dfd5d687374e1c0ddb3da3",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 848037,
            "upload_time": "2025-08-21T04:22:07",
            "upload_time_iso_8601": "2025-08-21T04:22:07.817882Z",
            "url": "https://files.pythonhosted.org/packages/76/5a/196ab46e549ba35bf3268f575e10cfac0dc86b78dcaa7a3e36407ecda752/pyzmq-27.0.2-cp314-cp314t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "70eaa27b9eb44b2e615a9ecb8510ebb023cc1d2d251181e4a1e50366bfbf94d6",
                "md5": "990b0ab07e879ec648c38a14b033e945",
                "sha256": "5de735c745ca5cefe9c2d1547d8f28cfe1b1926aecb7483ab1102fd0a746c093"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp314-cp314t-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "990b0ab07e879ec648c38a14b033e945",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 1650278,
            "upload_time": "2025-08-21T04:22:09",
            "upload_time_iso_8601": "2025-08-21T04:22:09.269779Z",
            "url": "https://files.pythonhosted.org/packages/70/ea/a27b9eb44b2e615a9ecb8510ebb023cc1d2d251181e4a1e50366bfbf94d6/pyzmq-27.0.2-cp314-cp314t-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "62ac3e9af036bfaf718ab5e69ded8f6332da392c5450ad43e8e3ca66797f145a",
                "md5": "abda71238403a819bfdb0b2a13dbe36e",
                "sha256": "ea4f498f8115fd90d7bf03a3e83ae3e9898e43362f8e8e8faec93597206e15cc"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp314-cp314t-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "abda71238403a819bfdb0b2a13dbe36e",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 2024504,
            "upload_time": "2025-08-21T04:22:10",
            "upload_time_iso_8601": "2025-08-21T04:22:10.778849Z",
            "url": "https://files.pythonhosted.org/packages/62/ac/3e9af036bfaf718ab5e69ded8f6332da392c5450ad43e8e3ca66797f145a/pyzmq-27.0.2-cp314-cp314t-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aee93202d31788df8ebaa176b23d846335eb9c768d8b43c0506bbd6265ad36a0",
                "md5": "47f60d2ac5da4ff0053ddfd0451f7a4c",
                "sha256": "d00e81cb0afd672915257a3927124ee2ad117ace3c256d39cd97ca3f190152ad"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp314-cp314t-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "47f60d2ac5da4ff0053ddfd0451f7a4c",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 1885381,
            "upload_time": "2025-08-21T04:22:12",
            "upload_time_iso_8601": "2025-08-21T04:22:12.718467Z",
            "url": "https://files.pythonhosted.org/packages/ae/e9/3202d31788df8ebaa176b23d846335eb9c768d8b43c0506bbd6265ad36a0/pyzmq-27.0.2-cp314-cp314t-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4bed42de80b7ab4e8fcf13376f81206cf8041740672ac1fd2e1c598d63f595bf",
                "md5": "9ca4ad5226f95c2855b0bb9f1e044207",
                "sha256": "0f6e9b00d81b58f859fffc112365d50413954e02aefe36c5b4c8fb4af79f8cc3"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp314-cp314t-win32.whl",
            "has_sig": false,
            "md5_digest": "9ca4ad5226f95c2855b0bb9f1e044207",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 587526,
            "upload_time": "2025-08-21T04:22:14",
            "upload_time_iso_8601": "2025-08-21T04:22:14.180755Z",
            "url": "https://files.pythonhosted.org/packages/4b/ed/42de80b7ab4e8fcf13376f81206cf8041740672ac1fd2e1c598d63f595bf/pyzmq-27.0.2-cp314-cp314t-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "edc88f3c72d6f0bfbf090aa5e283576073ca5c59839b85a5cc8c66ddb9b59801",
                "md5": "ad60e8b9ba7e6e1921c2ce84a1530de0",
                "sha256": "2e73cf3b127a437fef4100eb3ac2ebe6b49e655bb721329f667f59eca0a26221"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp314-cp314t-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ad60e8b9ba7e6e1921c2ce84a1530de0",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 661368,
            "upload_time": "2025-08-21T04:22:15",
            "upload_time_iso_8601": "2025-08-21T04:22:15.677777Z",
            "url": "https://files.pythonhosted.org/packages/ed/c8/8f3c72d6f0bfbf090aa5e283576073ca5c59839b85a5cc8c66ddb9b59801/pyzmq-27.0.2-cp314-cp314t-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "69a47ee652ea1c77d872f5d99ed937fa8bbd1f6f4b7a39a6d3a0076c286e0c3e",
                "md5": "78762bc732dcf7c259304fd6374eb092",
                "sha256": "4108785f2e5ac865d06f678a07a1901e3465611356df21a545eeea8b45f56265"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp314-cp314t-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "78762bc732dcf7c259304fd6374eb092",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 574901,
            "upload_time": "2025-08-21T04:22:17",
            "upload_time_iso_8601": "2025-08-21T04:22:17.423287Z",
            "url": "https://files.pythonhosted.org/packages/69/a4/7ee652ea1c77d872f5d99ed937fa8bbd1f6f4b7a39a6d3a0076c286e0c3e/pyzmq-27.0.2-cp314-cp314t-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d98d1975837a626a731bf71dbd08a24afc8103c2d50a66831a243cd58f100f21",
                "md5": "c35b58985043de4267eee27826e5657a",
                "sha256": "59a50f5eedf8ed20b7dbd57f1c29b2de003940dea3eedfbf0fbfea05ee7f9f61"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp38-cp38-macosx_10_15_universal2.whl",
            "has_sig": false,
            "md5_digest": "c35b58985043de4267eee27826e5657a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1331995,
            "upload_time": "2025-08-21T04:22:18",
            "upload_time_iso_8601": "2025-08-21T04:22:18.971063Z",
            "url": "https://files.pythonhosted.org/packages/d9/8d/1975837a626a731bf71dbd08a24afc8103c2d50a66831a243cd58f100f21/pyzmq-27.0.2-cp38-cp38-macosx_10_15_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4870a349c9cfb987ca1235789d62fc536db793d5e41225912a58a53f66b1f549",
                "md5": "54de820647fa63cad5f5d48e26f48f01",
                "sha256": "a00e6390e52770ba1ec753b2610f90b4f00e74c71cfc5405b917adf3cc39565e"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp38-cp38-manylinux2014_i686.manylinux_2_17_i686.whl",
            "has_sig": false,
            "md5_digest": "54de820647fa63cad5f5d48e26f48f01",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 907763,
            "upload_time": "2025-08-21T04:22:20",
            "upload_time_iso_8601": "2025-08-21T04:22:20.796913Z",
            "url": "https://files.pythonhosted.org/packages/48/70/a349c9cfb987ca1235789d62fc536db793d5e41225912a58a53f66b1f549/pyzmq-27.0.2-cp38-cp38-manylinux2014_i686.manylinux_2_17_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ce6ffa3852b2a46c3a5638953e17c163430804784011b839fd867eef0dbaf3a0",
                "md5": "9b7d0dd0ba95f46e215351319894bc30",
                "sha256": "49d8d05d9844d83cddfbc86a82ac0cafe7ab694fcc9c9618de8d015c318347c3"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9b7d0dd0ba95f46e215351319894bc30",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 864251,
            "upload_time": "2025-08-21T04:22:22",
            "upload_time_iso_8601": "2025-08-21T04:22:22.627197Z",
            "url": "https://files.pythonhosted.org/packages/ce/6f/fa3852b2a46c3a5638953e17c163430804784011b839fd867eef0dbaf3a0/pyzmq-27.0.2-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "745c8ec2ca62c32de86a9d9f54eff7590ca7bbf2feb985f90fedd1c5871ab37c",
                "md5": "8ce3c47557206a80d5b033f1755f1177",
                "sha256": "3660d85e2b6a28eb2d586dedab9c61a7b7c64ab0d89a35d2973c7be336f12b0d"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp38-cp38-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8ce3c47557206a80d5b033f1755f1177",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 668816,
            "upload_time": "2025-08-21T04:22:24",
            "upload_time_iso_8601": "2025-08-21T04:22:24.820154Z",
            "url": "https://files.pythonhosted.org/packages/74/5c/8ec2ca62c32de86a9d9f54eff7590ca7bbf2feb985f90fedd1c5871ab37c/pyzmq-27.0.2-cp38-cp38-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "18a6e144daaaf099da8a23f3d2b91aef3b5c8767067df958ece73a7cba82522e",
                "md5": "7f486f367db0c8783035e33fc1b00f35",
                "sha256": "bccfee44b392f4d13bbf05aa88d8f7709271b940a8c398d4216fde6b717624ae"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7f486f367db0c8783035e33fc1b00f35",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1657654,
            "upload_time": "2025-08-21T04:22:26",
            "upload_time_iso_8601": "2025-08-21T04:22:26.315477Z",
            "url": "https://files.pythonhosted.org/packages/18/a6/e144daaaf099da8a23f3d2b91aef3b5c8767067df958ece73a7cba82522e/pyzmq-27.0.2-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "92a35c54aa3e034a22b86a03bcd0bbc8030833ac77c58d8bcb2c47dd7c66ae1d",
                "md5": "51d66dd0ea98553434b7572e34662c90",
                "sha256": "989066d51686415f1da646d6e2c5364a9b084777c29d9d1720aa5baf192366ef"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "51d66dd0ea98553434b7572e34662c90",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2034910,
            "upload_time": "2025-08-21T04:22:27",
            "upload_time_iso_8601": "2025-08-21T04:22:27.947451Z",
            "url": "https://files.pythonhosted.org/packages/92/a3/5c54aa3e034a22b86a03bcd0bbc8030833ac77c58d8bcb2c47dd7c66ae1d/pyzmq-27.0.2-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8fb384dd2e41fc399619c0120ee416a7d4fb981d4c2f8d45b0d83f73a6d07634",
                "md5": "06003e1211fe87a7528ab814e0e314d5",
                "sha256": "cc283595b82f0db155a52f6462945c7b6b47ecaae2f681746eeea537c95cf8c9"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "06003e1211fe87a7528ab814e0e314d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1894010,
            "upload_time": "2025-08-21T04:22:29",
            "upload_time_iso_8601": "2025-08-21T04:22:29.697186Z",
            "url": "https://files.pythonhosted.org/packages/8f/b3/84dd2e41fc399619c0120ee416a7d4fb981d4c2f8d45b0d83f73a6d07634/pyzmq-27.0.2-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d747448ea710c387b045b6c4c9a6dd7781fcfa20d9442635639d6742de5baac3",
                "md5": "8a5913c9f3f0ec21933d9643e58de60b",
                "sha256": "ad38daf57495beadc0d929e8901b2aa46ff474239b5a8a46ccc7f67dc01d2335"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "8a5913c9f3f0ec21933d9643e58de60b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 567434,
            "upload_time": "2025-08-21T04:22:31",
            "upload_time_iso_8601": "2025-08-21T04:22:31.369212Z",
            "url": "https://files.pythonhosted.org/packages/d7/47/448ea710c387b045b6c4c9a6dd7781fcfa20d9442635639d6742de5baac3/pyzmq-27.0.2-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "472b25c38897c08253486b136c47a43902fc410fbb79386d4e97940e95f9dd4b",
                "md5": "69fd0461f9fa9fcea49b174a351bf517",
                "sha256": "36508466a266cf78bba2f56529ad06eb38ba827f443b47388d420bec14d331ba"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "69fd0461f9fa9fcea49b174a351bf517",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 632515,
            "upload_time": "2025-08-21T04:22:32",
            "upload_time_iso_8601": "2025-08-21T04:22:32.945885Z",
            "url": "https://files.pythonhosted.org/packages/47/2b/25c38897c08253486b136c47a43902fc410fbb79386d4e97940e95f9dd4b/pyzmq-27.0.2-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c857a4aff0dbb29001cebf94848a980ac36bea8e1cb65ac0f72ff03e484df208",
                "md5": "77cc06f7a6a315c6c87047a9c8061e3a",
                "sha256": "aa9c1c208c263b84386ac25bed6af5672397dc3c232638114fc09bca5c7addf9"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp39-cp39-macosx_10_15_universal2.whl",
            "has_sig": false,
            "md5_digest": "77cc06f7a6a315c6c87047a9c8061e3a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1330291,
            "upload_time": "2025-08-21T04:22:34",
            "upload_time_iso_8601": "2025-08-21T04:22:34.433933Z",
            "url": "https://files.pythonhosted.org/packages/c8/57/a4aff0dbb29001cebf94848a980ac36bea8e1cb65ac0f72ff03e484df208/pyzmq-27.0.2-cp39-cp39-macosx_10_15_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e1a68519ed48b5bdd72e1a3946a76987afb6659a355180cd15e51cea6afe1983",
                "md5": "bc7f04a68cf03996234f9716daa6eeb3",
                "sha256": "795c4884cfe7ea59f2b67d82b417e899afab889d332bfda13b02f8e0c155b2e4"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp39-cp39-manylinux2014_i686.manylinux_2_17_i686.whl",
            "has_sig": false,
            "md5_digest": "bc7f04a68cf03996234f9716daa6eeb3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 906596,
            "upload_time": "2025-08-21T04:22:36",
            "upload_time_iso_8601": "2025-08-21T04:22:36.168309Z",
            "url": "https://files.pythonhosted.org/packages/e1/a6/8519ed48b5bdd72e1a3946a76987afb6659a355180cd15e51cea6afe1983/pyzmq-27.0.2-cp39-cp39-manylinux2014_i686.manylinux_2_17_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3c19cb6f463d6454079a566160d10cf175c3c59274b1378104d2b01a5a1ca560",
                "md5": "0241a8ef7958c5706cf4323be0626e8e",
                "sha256": "47eb65bb25478358ba3113dd9a08344f616f417ad3ffcbb190cd874fae72b1b1"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0241a8ef7958c5706cf4323be0626e8e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 863605,
            "upload_time": "2025-08-21T04:22:37",
            "upload_time_iso_8601": "2025-08-21T04:22:37.825718Z",
            "url": "https://files.pythonhosted.org/packages/3c/19/cb6f463d6454079a566160d10cf175c3c59274b1378104d2b01a5a1ca560/pyzmq-27.0.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9d37afe25d5f9b91b7422067bb7cd3f75691d78baa0c2c2f76bd0643389ac600",
                "md5": "afe539c089dd0d3f53f41190ece48ec1",
                "sha256": "a6fc24f00293f10aff04d55ca37029b280474c91f4de2cad5e911e5e10d733b7"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "afe539c089dd0d3f53f41190ece48ec1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 666777,
            "upload_time": "2025-08-21T04:22:39",
            "upload_time_iso_8601": "2025-08-21T04:22:39.551956Z",
            "url": "https://files.pythonhosted.org/packages/9d/37/afe25d5f9b91b7422067bb7cd3f75691d78baa0c2c2f76bd0643389ac600/pyzmq-27.0.2-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "154a97b0b59a7eacfd9e61c40abaa9c7e2587bbb39671816a9fb0c5dc32d87bc",
                "md5": "6eb828977a9610559c83a9e9abd2c5e0",
                "sha256": "58d4cc9b6b768478adfc40a5cbee545303db8dbc81ba688474e0f499cc581028"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6eb828977a9610559c83a9e9abd2c5e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1655404,
            "upload_time": "2025-08-21T04:22:41",
            "upload_time_iso_8601": "2025-08-21T04:22:41.082213Z",
            "url": "https://files.pythonhosted.org/packages/15/4a/97b0b59a7eacfd9e61c40abaa9c7e2587bbb39671816a9fb0c5dc32d87bc/pyzmq-27.0.2-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "27dbbcf03bea232839ea749562f76bda3807b16a25c68fdd153339a56699bb1d",
                "md5": "15cc721ddd1566693e76b26584d52165",
                "sha256": "cea2f26c5972796e02b222968a21a378d09eb4ff590eb3c5fafa8913f8c2bdf5"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "15cc721ddd1566693e76b26584d52165",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2034051,
            "upload_time": "2025-08-21T04:22:43",
            "upload_time_iso_8601": "2025-08-21T04:22:43.216064Z",
            "url": "https://files.pythonhosted.org/packages/27/db/bcf03bea232839ea749562f76bda3807b16a25c68fdd153339a56699bb1d/pyzmq-27.0.2-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "573f9cc291101ee766ab41bae25654af84c11d259f27d73b1ed985256dae8a16",
                "md5": "be62d340eb7a2f7904eb547e45e680ef",
                "sha256": "a0621ec020c49fc1b6e31304f1a820900d54e7d9afa03ea1634264bf9387519e"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "be62d340eb7a2f7904eb547e45e680ef",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1892080,
            "upload_time": "2025-08-21T04:22:44",
            "upload_time_iso_8601": "2025-08-21T04:22:44.810650Z",
            "url": "https://files.pythonhosted.org/packages/57/3f/9cc291101ee766ab41bae25654af84c11d259f27d73b1ed985256dae8a16/pyzmq-27.0.2-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "165251d4c56c553e7368abc2d010a783092c68a1888045f899eabcfd3bc345f3",
                "md5": "a1c1a67688d3e573a071599a7ad7baab",
                "sha256": "1326500792a9cb0992db06bbaf5d0098459133868932b81a6e90d45c39eca99d"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "a1c1a67688d3e573a071599a7ad7baab",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 567463,
            "upload_time": "2025-08-21T04:22:46",
            "upload_time_iso_8601": "2025-08-21T04:22:46.853866Z",
            "url": "https://files.pythonhosted.org/packages/16/52/51d4c56c553e7368abc2d010a783092c68a1888045f899eabcfd3bc345f3/pyzmq-27.0.2-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "93203b0ac853b5bbe1fd05e1898ea60335f9d402312328fa17514a876418ab11",
                "md5": "f1938b22c3e4d27e21c2fc8c820d1b7e",
                "sha256": "5ee9560cb1e3094ef01fc071b361121a57ebb8d4232912b6607a6d7d2d0a97b4"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f1938b22c3e4d27e21c2fc8c820d1b7e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 632200,
            "upload_time": "2025-08-21T04:22:48",
            "upload_time_iso_8601": "2025-08-21T04:22:48.340471Z",
            "url": "https://files.pythonhosted.org/packages/93/20/3b0ac853b5bbe1fd05e1898ea60335f9d402312328fa17514a876418ab11/pyzmq-27.0.2-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b01478b192a7864a38c71e30c3fd668eff949b44db13c1906035e6095fecd00d",
                "md5": "a262b0b89aebfa74a03567d91c388b7b",
                "sha256": "85e3c6fb0d25ea046ebcfdc2bcb9683d663dc0280645c79a616ff5077962a15b"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-cp39-cp39-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "a262b0b89aebfa74a03567d91c388b7b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 559638,
            "upload_time": "2025-08-21T04:22:50",
            "upload_time_iso_8601": "2025-08-21T04:22:50.002201Z",
            "url": "https://files.pythonhosted.org/packages/b0/14/78b192a7864a38c71e30c3fd668eff949b44db13c1906035e6095fecd00d/pyzmq-27.0.2-cp39-cp39-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "19d7e388e80107b7c438c9698ce59c2a3b950021cd4ab3fe641485e4ed6b0960",
                "md5": "644ff44c79c6c805901ffdaf3b2bb60c",
                "sha256": "d67a0960803a37b60f51b460c58444bc7033a804c662f5735172e21e74ee4902"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "644ff44c79c6c805901ffdaf3b2bb60c",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 836008,
            "upload_time": "2025-08-21T04:22:51",
            "upload_time_iso_8601": "2025-08-21T04:22:51.842664Z",
            "url": "https://files.pythonhosted.org/packages/19/d7/e388e80107b7c438c9698ce59c2a3b950021cd4ab3fe641485e4ed6b0960/pyzmq-27.0.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "65ef58d3eb85f1b67a16e22adb07d084f975a7b9641463d18e27230550bb436a",
                "md5": "b07414200bdcd4f7a9edc97694a065ab",
                "sha256": "dd4d3e6a567ffd0d232cfc667c49d0852d0ee7481458a2a1593b9b1bc5acba88"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-pp310-pypy310_pp73-manylinux2014_i686.manylinux_2_17_i686.whl",
            "has_sig": false,
            "md5_digest": "b07414200bdcd4f7a9edc97694a065ab",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 799932,
            "upload_time": "2025-08-21T04:22:53",
            "upload_time_iso_8601": "2025-08-21T04:22:53.529100Z",
            "url": "https://files.pythonhosted.org/packages/65/ef/58d3eb85f1b67a16e22adb07d084f975a7b9641463d18e27230550bb436a/pyzmq-27.0.2-pp310-pypy310_pp73-manylinux2014_i686.manylinux_2_17_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3c6366b9f6db19ee8c86105ffd4475a4f5d93cdd62b1edcb1e894d971df0728c",
                "md5": "cefbf27e972c52f622d2505f2a6865e5",
                "sha256": "5e558be423631704803bc6a642e2caa96083df759e25fe6eb01f2d28725f80bd"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-pp310-pypy310_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cefbf27e972c52f622d2505f2a6865e5",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 567458,
            "upload_time": "2025-08-21T04:22:55",
            "upload_time_iso_8601": "2025-08-21T04:22:55.289365Z",
            "url": "https://files.pythonhosted.org/packages/3c/63/66b9f6db19ee8c86105ffd4475a4f5d93cdd62b1edcb1e894d971df0728c/pyzmq-27.0.2-pp310-pypy310_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "10afd92207fe8b6e3d9f588d0591219a86dd7b4ed27bb3e825c1d9cf48467fc0",
                "md5": "5d9e2539f9518e4ea743243dffbac761",
                "sha256": "c4c20ba8389f495c7b4f6b896bb1ca1e109a157d4f189267a902079699aaf787"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-pp310-pypy310_pp73-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5d9e2539f9518e4ea743243dffbac761",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 747087,
            "upload_time": "2025-08-21T04:22:56",
            "upload_time_iso_8601": "2025-08-21T04:22:56.994943Z",
            "url": "https://files.pythonhosted.org/packages/10/af/d92207fe8b6e3d9f588d0591219a86dd7b4ed27bb3e825c1d9cf48467fc0/pyzmq-27.0.2-pp310-pypy310_pp73-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "82e9d9f8b4b191c6733e31de28974d608a2475a6598136ac901a8c5b67c11432",
                "md5": "cb22f0074f8e84fbe678477d0ae32a62",
                "sha256": "c5be232f7219414ff672ff7ab8c5a7e8632177735186d8a42b57b491fafdd64e"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "cb22f0074f8e84fbe678477d0ae32a62",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 544641,
            "upload_time": "2025-08-21T04:22:58",
            "upload_time_iso_8601": "2025-08-21T04:22:58.870130Z",
            "url": "https://files.pythonhosted.org/packages/82/e9/d9f8b4b191c6733e31de28974d608a2475a6598136ac901a8c5b67c11432/pyzmq-27.0.2-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c760027d0032a1e3b1aabcef0e309b9ff8a4099bdd5a60ab38b36a676ff2bd7b",
                "md5": "eb208825f23710b5a5019466c30f366b",
                "sha256": "e297784aea724294fe95e442e39a4376c2f08aa4fae4161c669f047051e31b02"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eb208825f23710b5a5019466c30f366b",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.8",
            "size": 836007,
            "upload_time": "2025-08-21T04:23:00",
            "upload_time_iso_8601": "2025-08-21T04:23:00.447944Z",
            "url": "https://files.pythonhosted.org/packages/c7/60/027d0032a1e3b1aabcef0e309b9ff8a4099bdd5a60ab38b36a676ff2bd7b/pyzmq-27.0.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "25202ed1e6168aaea323df9bb2c451309291f53ba3af372ffc16edd4ce15b9e5",
                "md5": "89b43e9d98cd33a52618b983ce1df6d0",
                "sha256": "e3659a79ded9745bc9c2aef5b444ac8805606e7bc50d2d2eb16dc3ab5483d91f"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-pp311-pypy311_pp73-manylinux2014_i686.manylinux_2_17_i686.whl",
            "has_sig": false,
            "md5_digest": "89b43e9d98cd33a52618b983ce1df6d0",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.8",
            "size": 799932,
            "upload_time": "2025-08-21T04:23:02",
            "upload_time_iso_8601": "2025-08-21T04:23:02.052506Z",
            "url": "https://files.pythonhosted.org/packages/25/20/2ed1e6168aaea323df9bb2c451309291f53ba3af372ffc16edd4ce15b9e5/pyzmq-27.0.2-pp311-pypy311_pp73-manylinux2014_i686.manylinux_2_17_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fd255c147307de546b502c9373688ce5b25dc22288d23a1ebebe5d587bf77610",
                "md5": "0230ff9635805a5512d5751882a04f6f",
                "sha256": "f3dba49ff037d02373a9306b58d6c1e0be031438f822044e8767afccfdac4c6b"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0230ff9635805a5512d5751882a04f6f",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.8",
            "size": 567459,
            "upload_time": "2025-08-21T04:23:03",
            "upload_time_iso_8601": "2025-08-21T04:23:03.593274Z",
            "url": "https://files.pythonhosted.org/packages/fd/25/5c147307de546b502c9373688ce5b25dc22288d23a1ebebe5d587bf77610/pyzmq-27.0.2-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "71060dc56ffc615c8095cd089c9b98ce5c733e990f09ce4e8eea4aaf1041a532",
                "md5": "d61965b6acbe926354af01d82002fec6",
                "sha256": "de84e1694f9507b29e7b263453a2255a73e3d099d258db0f14539bad258abe41"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-pp311-pypy311_pp73-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d61965b6acbe926354af01d82002fec6",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.8",
            "size": 747088,
            "upload_time": "2025-08-21T04:23:05",
            "upload_time_iso_8601": "2025-08-21T04:23:05.334965Z",
            "url": "https://files.pythonhosted.org/packages/71/06/0dc56ffc615c8095cd089c9b98ce5c733e990f09ce4e8eea4aaf1041a532/pyzmq-27.0.2-pp311-pypy311_pp73-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "06f64a50187e023b8848edd3f0a8e197b1a7fb08d261d8c60aae7cb6c3d71612",
                "md5": "d3ea0fe8148c833008df99d6812ce6a1",
                "sha256": "f0944d65ba2b872b9fcece08411d6347f15a874c775b4c3baae7f278550da0fb"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-pp311-pypy311_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d3ea0fe8148c833008df99d6812ce6a1",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.8",
            "size": 544639,
            "upload_time": "2025-08-21T04:23:07",
            "upload_time_iso_8601": "2025-08-21T04:23:07.279276Z",
            "url": "https://files.pythonhosted.org/packages/06/f6/4a50187e023b8848edd3f0a8e197b1a7fb08d261d8c60aae7cb6c3d71612/pyzmq-27.0.2-pp311-pypy311_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4380429c717548596812e33ee284065c01581ef46f6011cffd1558308017eea3",
                "md5": "4d4f4b031c3064584727fa47c55b27b1",
                "sha256": "05288947797dcd6724702db2056972dceef9963a83041eb734aea504416094ec"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-pp38-pypy38_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4d4f4b031c3064584727fa47c55b27b1",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 835984,
            "upload_time": "2025-08-21T04:23:08",
            "upload_time_iso_8601": "2025-08-21T04:23:08.819438Z",
            "url": "https://files.pythonhosted.org/packages/43/80/429c717548596812e33ee284065c01581ef46f6011cffd1558308017eea3/pyzmq-27.0.2-pp38-pypy38_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "83d7d6b2db0d6f5e57a83a970eed419811361ab9c9ce3f8b184d343bf514632c",
                "md5": "8c75c592a0ab79e463b90ea212979624",
                "sha256": "dff9198adbb6810ad857f3bfa59b4859c45acb02b0d198b39abeafb9148474f3"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-pp38-pypy38_pp73-manylinux2014_i686.manylinux_2_17_i686.whl",
            "has_sig": false,
            "md5_digest": "8c75c592a0ab79e463b90ea212979624",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 799928,
            "upload_time": "2025-08-21T04:23:10",
            "upload_time_iso_8601": "2025-08-21T04:23:10.391101Z",
            "url": "https://files.pythonhosted.org/packages/83/d7/d6b2db0d6f5e57a83a970eed419811361ab9c9ce3f8b184d343bf514632c/pyzmq-27.0.2-pp38-pypy38_pp73-manylinux2014_i686.manylinux_2_17_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fc27ffd149b651c6d0b81a4a002842800c530a433855144e32a8929c517b44e9",
                "md5": "444994cd05279502d90bc358a8f42d01",
                "sha256": "849123fd9982c7f63911fdceba9870f203f0f32c953a3bab48e7f27803a0e3ec"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-pp38-pypy38_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "has_sig": false,
            "md5_digest": "444994cd05279502d90bc358a8f42d01",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 758428,
            "upload_time": "2025-08-21T04:23:11",
            "upload_time_iso_8601": "2025-08-21T04:23:11.950942Z",
            "url": "https://files.pythonhosted.org/packages/fc/27/ffd149b651c6d0b81a4a002842800c530a433855144e32a8929c517b44e9/pyzmq-27.0.2-pp38-pypy38_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8d808bcce571eaddb8b92bcdfe522f66e9d98daa803c3c5f03d99bbb054ffe8e",
                "md5": "ae0e51e36adbe4de7447257a21779258",
                "sha256": "c5ee06945f3069e3609819890a01958c4bbfea7a2b31ae87107c6478838d309e"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-pp38-pypy38_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ae0e51e36adbe4de7447257a21779258",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 567451,
            "upload_time": "2025-08-21T04:23:13",
            "upload_time_iso_8601": "2025-08-21T04:23:13.690233Z",
            "url": "https://files.pythonhosted.org/packages/8d/80/8bcce571eaddb8b92bcdfe522f66e9d98daa803c3c5f03d99bbb054ffe8e/pyzmq-27.0.2-pp38-pypy38_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "381474aac50958bcc38665d24aa49bac7ebcf89a31a9a5cb00c2a8f870f6f4e0",
                "md5": "52fbfe1e5b00ed06e5906b7051f25773",
                "sha256": "6156ad5e8bbe8a78a3f5b5757c9a883b0012325c83f98ce6d58fcec81e8b3d06"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "52fbfe1e5b00ed06e5906b7051f25773",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 544633,
            "upload_time": "2025-08-21T04:23:15",
            "upload_time_iso_8601": "2025-08-21T04:23:15.623248Z",
            "url": "https://files.pythonhosted.org/packages/38/14/74aac50958bcc38665d24aa49bac7ebcf89a31a9a5cb00c2a8f870f6f4e0/pyzmq-27.0.2-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c6ce36c82244b111c408c99037b61eedcaac9a3f17300c3f857cf175a7b8832f",
                "md5": "49507c319231981aee22aceb0d10a85d",
                "sha256": "400f34321e3bd89b1165b91ea6b18ad26042ba9ad0dfed8b35049e2e24eeab9b"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "49507c319231981aee22aceb0d10a85d",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 836001,
            "upload_time": "2025-08-21T04:23:17",
            "upload_time_iso_8601": "2025-08-21T04:23:17.532386Z",
            "url": "https://files.pythonhosted.org/packages/c6/ce/36c82244b111c408c99037b61eedcaac9a3f17300c3f857cf175a7b8832f/pyzmq-27.0.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6fdc4aa8e518f1c0d0ee7fb98cf54cf3854e471815040062d26d948df638d9bc",
                "md5": "b803c8676dc7cbb0b65fe4cf170cfc29",
                "sha256": "9cbad4ef12e4c15c94d2c24ecd15a8ed56bf091c62f121a2b0c618ddd4b7402b"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-pp39-pypy39_pp73-manylinux2014_i686.manylinux_2_17_i686.whl",
            "has_sig": false,
            "md5_digest": "b803c8676dc7cbb0b65fe4cf170cfc29",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 799927,
            "upload_time": "2025-08-21T04:23:19",
            "upload_time_iso_8601": "2025-08-21T04:23:19.218475Z",
            "url": "https://files.pythonhosted.org/packages/6f/dc/4aa8e518f1c0d0ee7fb98cf54cf3854e471815040062d26d948df638d9bc/pyzmq-27.0.2-pp39-pypy39_pp73-manylinux2014_i686.manylinux_2_17_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "434acca781133ce015898b7c4ad63240d05af5c54e8736d099c95b0a6c9aaca9",
                "md5": "5605b9c489e6323a7949f961a9d6cd18",
                "sha256": "6b2b74aac3392b8cf508ccb68c980a8555298cd378434a2d065d6ce0f4211dff"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5605b9c489e6323a7949f961a9d6cd18",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 758427,
            "upload_time": "2025-08-21T04:23:21",
            "upload_time_iso_8601": "2025-08-21T04:23:21.204385Z",
            "url": "https://files.pythonhosted.org/packages/43/4a/cca781133ce015898b7c4ad63240d05af5c54e8736d099c95b0a6c9aaca9/pyzmq-27.0.2-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e366772bf1e3aed8b20587f2e0122bc929711d44ddd27dbbd6eb308a5badd0c3",
                "md5": "ddf7f92e52587f0793b543f44be1336a",
                "sha256": "7db5db88c24cf9253065d69229a148ff60821e5d6f8ff72579b1f80f8f348bab"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-pp39-pypy39_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ddf7f92e52587f0793b543f44be1336a",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 567453,
            "upload_time": "2025-08-21T04:23:22",
            "upload_time_iso_8601": "2025-08-21T04:23:22.825840Z",
            "url": "https://files.pythonhosted.org/packages/e3/66/772bf1e3aed8b20587f2e0122bc929711d44ddd27dbbd6eb308a5badd0c3/pyzmq-27.0.2-pp39-pypy39_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e0fbfdc3dd8ec46f5226b4cde299839f10c625886bd18adbeaa8a59ffe104356",
                "md5": "563f93767b8446277803471989d5d282",
                "sha256": "8ffe40c216c41756ca05188c3e24a23142334b304f7aebd75c24210385e35573"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "563f93767b8446277803471989d5d282",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 544636,
            "upload_time": "2025-08-21T04:23:24",
            "upload_time_iso_8601": "2025-08-21T04:23:24.736832Z",
            "url": "https://files.pythonhosted.org/packages/e0/fb/fdc3dd8ec46f5226b4cde299839f10c625886bd18adbeaa8a59ffe104356/pyzmq-27.0.2-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f866159f38d184f08b5f971b467f87b1ab142ab1320d5200825c824b32b84b66",
                "md5": "b5856ff3a5cb9762f30dd5b2b7796f3e",
                "sha256": "b398dd713b18de89730447347e96a0240225e154db56e35b6bb8447ffdb07798"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.2.tar.gz",
            "has_sig": false,
            "md5_digest": "b5856ff3a5cb9762f30dd5b2b7796f3e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 281440,
            "upload_time": "2025-08-21T04:23:26",
            "upload_time_iso_8601": "2025-08-21T04:23:26.334471Z",
            "url": "https://files.pythonhosted.org/packages/f8/66/159f38d184f08b5f971b467f87b1ab142ab1320d5200825c824b32b84b66/pyzmq-27.0.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-21 04:23:26",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "zeromq",
    "github_project": "pyzmq",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "lcname": "pyzmq"
}
        
Elapsed time: 3.77190s