pyzmq


Namepyzmq JSON
Version 27.0.1 PyPI version JSON
download
home_pageNone
SummaryPython bindings for 0MQ
upload_time2025-08-03 05:05:40
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/30/5f/557d2032a2f471edbcc227da724c24a1c05887b5cda1e3ae53af98b9e0a5/pyzmq-27.0.1.tar.gz",
    "platform": null,
    "description": "# PyZMQ: Python bindings for \u00d8MQ\n\nThis package contains Python bindings for [ZeroMQ](https://zeromq.org).\n\u00d8MQ is a lightweight and fast messaging implementation.\n\nPyZMQ should work with any reasonable version of Python (\u2265 3.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.1",
    "project_urls": {
        "Documentation": "https://pyzmq.readthedocs.org",
        "Homepage": "https://pyzmq.readthedocs.org",
        "Source": "https://github.com/zeromq/pyzmq",
        "Tracker": "https://github.com/zeromq/pyzmq/issues"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "720bccf4d0b152a6a11f0fc01e73978202fe0e8fe0e91e20941598e83a170bee",
                "md5": "a6796c7d6ba357566009e04c39ba82c7",
                "sha256": "90a4da42aa322de8a3522461e3b5fe999935763b27f69a02fced40f4e3cf9682"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp310-cp310-macosx_10_15_universal2.whl",
            "has_sig": false,
            "md5_digest": "a6796c7d6ba357566009e04c39ba82c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1329293,
            "upload_time": "2025-08-03T05:02:56",
            "upload_time_iso_8601": "2025-08-03T05:02:56.001825Z",
            "url": "https://files.pythonhosted.org/packages/72/0b/ccf4d0b152a6a11f0fc01e73978202fe0e8fe0e91e20941598e83a170bee/pyzmq-27.0.1-cp310-cp310-macosx_10_15_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bc7648706d291951b1300d3cf985e503806901164bf1581f27c4b6b22dbab2fa",
                "md5": "3cd1d81c6be2e25b86e11165fe66899e",
                "sha256": "e648dca28178fc879c814cf285048dd22fd1f03e1104101106505ec0eea50a4d"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl",
            "has_sig": false,
            "md5_digest": "3cd1d81c6be2e25b86e11165fe66899e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 905953,
            "upload_time": "2025-08-03T05:02:59",
            "upload_time_iso_8601": "2025-08-03T05:02:59.061687Z",
            "url": "https://files.pythonhosted.org/packages/bc/76/48706d291951b1300d3cf985e503806901164bf1581f27c4b6b22dbab2fa/pyzmq-27.0.1-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aa8adf3135b96712068d184c53120c7dbf3023e5e362a113059a4f85cd36c6a0",
                "md5": "79bc1fb4300c4180e334a9056bea27db",
                "sha256": "4bca8abc31799a6f3652d13f47e0b0e1cab76f9125f2283d085a3754f669b607"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "79bc1fb4300c4180e334a9056bea27db",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 666165,
            "upload_time": "2025-08-03T05:03:00",
            "upload_time_iso_8601": "2025-08-03T05:03:00.789300Z",
            "url": "https://files.pythonhosted.org/packages/aa/8a/df3135b96712068d184c53120c7dbf3023e5e362a113059a4f85cd36c6a0/pyzmq-27.0.1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eeed341a7148e08d2830f480f53ab3d136d88fc5011bb367b516d95d0ebb46dd",
                "md5": "954405ffb21da988b06b72d2fc8c4112",
                "sha256": "092f4011b26d6b0201002f439bd74b38f23f3aefcb358621bdc3b230afc9b2d5"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "954405ffb21da988b06b72d2fc8c4112",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 853756,
            "upload_time": "2025-08-03T05:03:03",
            "upload_time_iso_8601": "2025-08-03T05:03:03.347284Z",
            "url": "https://files.pythonhosted.org/packages/ee/ed/341a7148e08d2830f480f53ab3d136d88fc5011bb367b516d95d0ebb46dd/pyzmq-27.0.1-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c2bcd26fe010477c3e901f0f5a3e70446950dde9aa217f1d1a13534eb0fccfe5",
                "md5": "9f51579baa614eed5276b5f201817bfc",
                "sha256": "6f02f30a4a6b3efe665ab13a3dd47109d80326c8fd286311d1ba9f397dc5f247"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9f51579baa614eed5276b5f201817bfc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1654870,
            "upload_time": "2025-08-03T05:03:05",
            "upload_time_iso_8601": "2025-08-03T05:03:05.331362Z",
            "url": "https://files.pythonhosted.org/packages/c2/bc/d26fe010477c3e901f0f5a3e70446950dde9aa217f1d1a13534eb0fccfe5/pyzmq-27.0.1-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "32219b488086bf3f55b2eb26db09007a3962f62f3b81c5c6295a6ff6aaebd69c",
                "md5": "34e5e8975ef2a1debd603eb8ad557869",
                "sha256": "f293a1419266e3bf3557d1f8778f9e1ffe7e6b2c8df5c9dca191caf60831eb74"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "34e5e8975ef2a1debd603eb8ad557869",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2033444,
            "upload_time": "2025-08-03T05:03:07",
            "upload_time_iso_8601": "2025-08-03T05:03:07.318767Z",
            "url": "https://files.pythonhosted.org/packages/32/21/9b488086bf3f55b2eb26db09007a3962f62f3b81c5c6295a6ff6aaebd69c/pyzmq-27.0.1-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3d5385b64a792223cd43393d25e03c8609df41aac817ea5ce6a27eceeed433ee",
                "md5": "effcde8dec41b6dd4b2ec12eaf319529",
                "sha256": "ce181dd1a7c6c012d0efa8ab603c34b5ee9d86e570c03415bbb1b8772eeb381c"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "effcde8dec41b6dd4b2ec12eaf319529",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1891289,
            "upload_time": "2025-08-03T05:03:08",
            "upload_time_iso_8601": "2025-08-03T05:03:08.960889Z",
            "url": "https://files.pythonhosted.org/packages/3d/53/85b64a792223cd43393d25e03c8609df41aac817ea5ce6a27eceeed433ee/pyzmq-27.0.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "235b078aae8fe1c4cdba1a77a598870c548fd52b4d4a11e86b8116bbef47d9f3",
                "md5": "e3cad14e601eb67df4784f21345e50db",
                "sha256": "f65741cc06630652e82aa68ddef4986a3ab9073dd46d59f94ce5f005fa72037c"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "e3cad14e601eb67df4784f21345e50db",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 566693,
            "upload_time": "2025-08-03T05:03:10",
            "upload_time_iso_8601": "2025-08-03T05:03:10.711454Z",
            "url": "https://files.pythonhosted.org/packages/23/5b/078aae8fe1c4cdba1a77a598870c548fd52b4d4a11e86b8116bbef47d9f3/pyzmq-27.0.1-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "24e14471fff36416ebf1ffe43577b9c7dcf2ff4798f2171f0d169640a48d2305",
                "md5": "496feb5364eac43ecb03312ae5a765e1",
                "sha256": "44909aa3ed2234d69fe81e1dade7be336bcfeab106e16bdaa3318dcde4262b93"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "496feb5364eac43ecb03312ae5a765e1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 631649,
            "upload_time": "2025-08-03T05:03:12",
            "upload_time_iso_8601": "2025-08-03T05:03:12.232182Z",
            "url": "https://files.pythonhosted.org/packages/24/e1/4471fff36416ebf1ffe43577b9c7dcf2ff4798f2171f0d169640a48d2305/pyzmq-27.0.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e84c8edac8dd56f223124aa40403d2c097bbad9b0e2868a67cad9a2a029863aa",
                "md5": "145aa8d1834be2315f0087e6c5e2125d",
                "sha256": "4401649bfa0a38f0f8777f8faba7cd7eb7b5b8ae2abc7542b830dd09ad4aed0d"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp310-cp310-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "145aa8d1834be2315f0087e6c5e2125d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 559274,
            "upload_time": "2025-08-03T05:03:13",
            "upload_time_iso_8601": "2025-08-03T05:03:13.728018Z",
            "url": "https://files.pythonhosted.org/packages/e8/4c/8edac8dd56f223124aa40403d2c097bbad9b0e2868a67cad9a2a029863aa/pyzmq-27.0.1-cp310-cp310-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ae18a8e0da6ababbe9326116fb1c890bf1920eea880e8da621afb6bc0f39a262",
                "md5": "86ff4fa6a1566f84658b7d8fc584d93a",
                "sha256": "9729190bd770314f5fbba42476abf6abe79a746eeda11d1d68fd56dd70e5c296"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp311-cp311-macosx_10_15_universal2.whl",
            "has_sig": false,
            "md5_digest": "86ff4fa6a1566f84658b7d8fc584d93a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1332721,
            "upload_time": "2025-08-03T05:03:15",
            "upload_time_iso_8601": "2025-08-03T05:03:15.237850Z",
            "url": "https://files.pythonhosted.org/packages/ae/18/a8e0da6ababbe9326116fb1c890bf1920eea880e8da621afb6bc0f39a262/pyzmq-27.0.1-cp311-cp311-macosx_10_15_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "75a49431ba598651d60ebd50dc25755402b770322cf8432adcc07d2906e53a54",
                "md5": "afa27d2320a56d5dd0da1dab1cd27643",
                "sha256": "696900ef6bc20bef6a242973943574f96c3f97d2183c1bd3da5eea4f559631b1"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.whl",
            "has_sig": false,
            "md5_digest": "afa27d2320a56d5dd0da1dab1cd27643",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 908249,
            "upload_time": "2025-08-03T05:03:16",
            "upload_time_iso_8601": "2025-08-03T05:03:16.933835Z",
            "url": "https://files.pythonhosted.org/packages/75/a4/9431ba598651d60ebd50dc25755402b770322cf8432adcc07d2906e53a54/pyzmq-27.0.1-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f07ae624e1793689e4e685d2ee21c40277dd4024d9d730af20446d88f69be838",
                "md5": "256641de6d474368f4316226b5fa17bb",
                "sha256": "f96a63aecec22d3f7fdea3c6c98df9e42973f5856bb6812c3d8d78c262fee808"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "256641de6d474368f4316226b5fa17bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 668649,
            "upload_time": "2025-08-03T05:03:18",
            "upload_time_iso_8601": "2025-08-03T05:03:18.490568Z",
            "url": "https://files.pythonhosted.org/packages/f0/7a/e624e1793689e4e685d2ee21c40277dd4024d9d730af20446d88f69be838/pyzmq-27.0.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6c290652a39d4e876e0d61379047ecf7752685414ad2e253434348246f7a2a39",
                "md5": "983a6843d294d9f22d279d433476c9fd",
                "sha256": "c512824360ea7490390566ce00bee880e19b526b312b25cc0bc30a0fe95cb67f"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "983a6843d294d9f22d279d433476c9fd",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 856601,
            "upload_time": "2025-08-03T05:03:20",
            "upload_time_iso_8601": "2025-08-03T05:03:20.194823Z",
            "url": "https://files.pythonhosted.org/packages/6c/29/0652a39d4e876e0d61379047ecf7752685414ad2e253434348246f7a2a39/pyzmq-27.0.1-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "362d8d5355d7fc55bb6e9c581dd74f58b64fa78c994079e3a0ea09b1b5627cde",
                "md5": "0c14f4287705e76351ab27c536a53043",
                "sha256": "dfb2bb5e0f7198eaacfb6796fb0330afd28f36d985a770745fba554a5903595a"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0c14f4287705e76351ab27c536a53043",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1657750,
            "upload_time": "2025-08-03T05:03:22",
            "upload_time_iso_8601": "2025-08-03T05:03:22.055635Z",
            "url": "https://files.pythonhosted.org/packages/36/2d/8d5355d7fc55bb6e9c581dd74f58b64fa78c994079e3a0ea09b1b5627cde/pyzmq-27.0.1-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "abf4cd032352d5d252dc6f5ee272a34b59718ba3af1639a8a4ef4654f9535cf5",
                "md5": "e336013cfea3335345b5f73f9f4522ac",
                "sha256": "4f6886c59ba93ffde09b957d3e857e7950c8fe818bd5494d9b4287bc6d5bc7f1"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "e336013cfea3335345b5f73f9f4522ac",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2034312,
            "upload_time": "2025-08-03T05:03:23",
            "upload_time_iso_8601": "2025-08-03T05:03:23.578277Z",
            "url": "https://files.pythonhosted.org/packages/ab/f4/cd032352d5d252dc6f5ee272a34b59718ba3af1639a8a4ef4654f9535cf5/pyzmq-27.0.1-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e41ac050d8b6597200e97a4bd29b93c769d002fa0b03083858227e0376ad59bc",
                "md5": "082a8bb58fa2c44145f3db4b0ac867be",
                "sha256": "b99ea9d330e86ce1ff7f2456b33f1bf81c43862a5590faf4ef4ed3a63504bdab"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "082a8bb58fa2c44145f3db4b0ac867be",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1893632,
            "upload_time": "2025-08-03T05:03:25",
            "upload_time_iso_8601": "2025-08-03T05:03:25.167061Z",
            "url": "https://files.pythonhosted.org/packages/e4/1a/c050d8b6597200e97a4bd29b93c769d002fa0b03083858227e0376ad59bc/pyzmq-27.0.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6a29173ce21d5097e7fcf284a090e8beb64fc683c6582b1f00fa52b1b7e867ce",
                "md5": "3f33640c7739b729906146f1b7c44332",
                "sha256": "571f762aed89025ba8cdcbe355fea56889715ec06d0264fd8b6a3f3fa38154ed"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "3f33640c7739b729906146f1b7c44332",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 566587,
            "upload_time": "2025-08-03T05:03:26",
            "upload_time_iso_8601": "2025-08-03T05:03:26.769462Z",
            "url": "https://files.pythonhosted.org/packages/6a/29/173ce21d5097e7fcf284a090e8beb64fc683c6582b1f00fa52b1b7e867ce/pyzmq-27.0.1-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "53ab22bd33e7086f0a2cc03a5adabff4bde414288bb62a21a7820951ef86ec20",
                "md5": "cbbe4c90e4c21270c01172f9bcb5f446",
                "sha256": "ee16906c8025fa464bea1e48128c048d02359fb40bebe5333103228528506530"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "cbbe4c90e4c21270c01172f9bcb5f446",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 632873,
            "upload_time": "2025-08-03T05:03:28",
            "upload_time_iso_8601": "2025-08-03T05:03:28.685714Z",
            "url": "https://files.pythonhosted.org/packages/53/ab/22bd33e7086f0a2cc03a5adabff4bde414288bb62a21a7820951ef86ec20/pyzmq-27.0.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "90143e59b4a28194285ceeff725eba9aa5ba8568d1cb78aed381dec1537c705a",
                "md5": "e1e1766777f66547441dc7b6ca945cc8",
                "sha256": "ba068f28028849da725ff9185c24f832ccf9207a40f9b28ac46ab7c04994bd41"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp311-cp311-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "e1e1766777f66547441dc7b6ca945cc8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 558918,
            "upload_time": "2025-08-03T05:03:30",
            "upload_time_iso_8601": "2025-08-03T05:03:30.085950Z",
            "url": "https://files.pythonhosted.org/packages/90/14/3e59b4a28194285ceeff725eba9aa5ba8568d1cb78aed381dec1537c705a/pyzmq-27.0.1-cp311-cp311-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0e9bc0957041067c7724b310f22c398be46399297c12ed834c3bc42200a2756f",
                "md5": "d8e78a4bb1233316b0ab98c97379d1b8",
                "sha256": "af7ebce2a1e7caf30c0bb64a845f63a69e76a2fadbc1cac47178f7bb6e657bdd"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp312-abi3-macosx_10_15_universal2.whl",
            "has_sig": false,
            "md5_digest": "d8e78a4bb1233316b0ab98c97379d1b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1305432,
            "upload_time": "2025-08-03T05:03:32",
            "upload_time_iso_8601": "2025-08-03T05:03:32.177024Z",
            "url": "https://files.pythonhosted.org/packages/0e/9b/c0957041067c7724b310f22c398be46399297c12ed834c3bc42200a2756f/pyzmq-27.0.1-cp312-abi3-macosx_10_15_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8e55bd3a312790858f16b7def3897a0c3eb1804e974711bf7b9dcb5f47e7f82c",
                "md5": "deb43b16f86530a1389da1df09b9bf8d",
                "sha256": "8f617f60a8b609a13099b313e7e525e67f84ef4524b6acad396d9ff153f6e4cd"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp312-abi3-manylinux2014_i686.manylinux_2_17_i686.whl",
            "has_sig": false,
            "md5_digest": "deb43b16f86530a1389da1df09b9bf8d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 895095,
            "upload_time": "2025-08-03T05:03:33",
            "upload_time_iso_8601": "2025-08-03T05:03:33.918318Z",
            "url": "https://files.pythonhosted.org/packages/8e/55/bd3a312790858f16b7def3897a0c3eb1804e974711bf7b9dcb5f47e7f82c/pyzmq-27.0.1-cp312-abi3-manylinux2014_i686.manylinux_2_17_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2050fc384631d8282809fb1029a4460d2fe90fa0370a0e866a8318ed75c8d3bb",
                "md5": "9f4941d1f87fc424a7f8fdd6e04011b3",
                "sha256": "1d59dad4173dc2a111f03e59315c7bd6e73da1a9d20a84a25cf08325b0582b1a"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp312-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9f4941d1f87fc424a7f8fdd6e04011b3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 651826,
            "upload_time": "2025-08-03T05:03:35",
            "upload_time_iso_8601": "2025-08-03T05:03:35.818456Z",
            "url": "https://files.pythonhosted.org/packages/20/50/fc384631d8282809fb1029a4460d2fe90fa0370a0e866a8318ed75c8d3bb/pyzmq-27.0.1-cp312-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7e0a2356305c423a975000867de56888b79e44ec2192c690ff93c3109fd78081",
                "md5": "02c968856dc027cef8cabb86650cab1b",
                "sha256": "f5b6133c8d313bde8bd0d123c169d22525300ff164c2189f849de495e1344577"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp312-abi3-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "02c968856dc027cef8cabb86650cab1b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 839751,
            "upload_time": "2025-08-03T05:03:37",
            "upload_time_iso_8601": "2025-08-03T05:03:37.265545Z",
            "url": "https://files.pythonhosted.org/packages/7e/0a/2356305c423a975000867de56888b79e44ec2192c690ff93c3109fd78081/pyzmq-27.0.1-cp312-abi3-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d71b81e95ad256ca7e7ccd47f5294c1c6da6e2b64fbace65b84fe8a41470342e",
                "md5": "b1ac3eff9e80a68e40e60a08cfe7c0cf",
                "sha256": "58cca552567423f04d06a075f4b473e78ab5bdb906febe56bf4797633f54aa4e"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp312-abi3-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b1ac3eff9e80a68e40e60a08cfe7c0cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1641359,
            "upload_time": "2025-08-03T05:03:38",
            "upload_time_iso_8601": "2025-08-03T05:03:38.799499Z",
            "url": "https://files.pythonhosted.org/packages/d7/1b/81e95ad256ca7e7ccd47f5294c1c6da6e2b64fbace65b84fe8a41470342e/pyzmq-27.0.1-cp312-abi3-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "50639f50ec965285f4e92c265c8f18344e46b12803666d8b73b65d254d441435",
                "md5": "84b55e97486aee8d1f2f2182d9d4a2af",
                "sha256": "4b9d8e26fb600d0d69cc9933e20af08552e97cc868a183d38a5c0d661e40dfbb"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp312-abi3-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "84b55e97486aee8d1f2f2182d9d4a2af",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2020281,
            "upload_time": "2025-08-03T05:03:40",
            "upload_time_iso_8601": "2025-08-03T05:03:40.338694Z",
            "url": "https://files.pythonhosted.org/packages/50/63/9f50ec965285f4e92c265c8f18344e46b12803666d8b73b65d254d441435/pyzmq-27.0.1-cp312-abi3-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "024a19e3398d0dc66ad2b463e4afa1fc541d697d7bc090305f9dfb948d3dfa29",
                "md5": "fee81bfb66f4c0ce08090e5ecd325f4a",
                "sha256": "2329f0c87f0466dce45bba32b63f47018dda5ca40a0085cc5c8558fea7d9fc55"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp312-abi3-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fee81bfb66f4c0ce08090e5ecd325f4a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1877112,
            "upload_time": "2025-08-03T05:03:42",
            "upload_time_iso_8601": "2025-08-03T05:03:42.012533Z",
            "url": "https://files.pythonhosted.org/packages/02/4a/19e3398d0dc66ad2b463e4afa1fc541d697d7bc090305f9dfb948d3dfa29/pyzmq-27.0.1-cp312-abi3-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bf42c562e9151aa90ed1d70aac381ea22a929d6b3a2ce4e1d6e2e135d34fd9c6",
                "md5": "ac61d5cf4c360428e0e0fa094785f6f3",
                "sha256": "57bb92abdb48467b89c2d21da1ab01a07d0745e536d62afd2e30d5acbd0092eb"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp312-abi3-win32.whl",
            "has_sig": false,
            "md5_digest": "ac61d5cf4c360428e0e0fa094785f6f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 558177,
            "upload_time": "2025-08-03T05:03:43",
            "upload_time_iso_8601": "2025-08-03T05:03:43.979830Z",
            "url": "https://files.pythonhosted.org/packages/bf/42/c562e9151aa90ed1d70aac381ea22a929d6b3a2ce4e1d6e2e135d34fd9c6/pyzmq-27.0.1-cp312-abi3-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "40965c50a7d2d2b05b19994bf7336b97db254299353dd9b49b565bb71b485f03",
                "md5": "2c7e2f1342ade9f141d29fe461eb5d41",
                "sha256": "ff3f8757570e45da7a5bedaa140489846510014f7a9d5ee9301c61f3f1b8a686"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp312-abi3-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2c7e2f1342ade9f141d29fe461eb5d41",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 618923,
            "upload_time": "2025-08-03T05:03:45",
            "upload_time_iso_8601": "2025-08-03T05:03:45.438879Z",
            "url": "https://files.pythonhosted.org/packages/40/96/5c50a7d2d2b05b19994bf7336b97db254299353dd9b49b565bb71b485f03/pyzmq-27.0.1-cp312-abi3-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "13331ec89c8f21c89d21a2eaff7def3676e21d8248d2675705e72554fb5a6f3f",
                "md5": "d96892de014a633e60ebf3d1ade7e70b",
                "sha256": "df2c55c958d3766bdb3e9d858b911288acec09a9aab15883f384fc7180df5bed"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp312-abi3-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "d96892de014a633e60ebf3d1ade7e70b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 552358,
            "upload_time": "2025-08-03T05:03:46",
            "upload_time_iso_8601": "2025-08-03T05:03:46.887675Z",
            "url": "https://files.pythonhosted.org/packages/13/33/1ec89c8f21c89d21a2eaff7def3676e21d8248d2675705e72554fb5a6f3f/pyzmq-27.0.1-cp312-abi3-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6ca0f26e276211ec8090a4d11e4ec70eb8a8b15781e591c1d44ce62f372963a0",
                "md5": "0c8f4bdf2c94cc5353d61c30d70a9e9f",
                "sha256": "497bd8af534ae55dc4ef67eebd1c149ff2a0b0f1e146db73c8b5a53d83c1a5f5"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp313-cp313-android_24_arm64_v8a.whl",
            "has_sig": false,
            "md5_digest": "0c8f4bdf2c94cc5353d61c30d70a9e9f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1122287,
            "upload_time": "2025-08-03T05:03:48",
            "upload_time_iso_8601": "2025-08-03T05:03:48.838647Z",
            "url": "https://files.pythonhosted.org/packages/6c/a0/f26e276211ec8090a4d11e4ec70eb8a8b15781e591c1d44ce62f372963a0/pyzmq-27.0.1-cp313-cp313-android_24_arm64_v8a.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9cd8af4b507e4f7eeea478cc8ee873995a6fd55582bfb99140593ed460e1db3c",
                "md5": "3996188c7c0845e4b6148fdf1c7ccd40",
                "sha256": "a066ea6ad6218b4c233906adf0ae67830f451ed238419c0db609310dd781fbe7"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp313-cp313-android_24_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3996188c7c0845e4b6148fdf1c7ccd40",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1155756,
            "upload_time": "2025-08-03T05:03:50",
            "upload_time_iso_8601": "2025-08-03T05:03:50.907287Z",
            "url": "https://files.pythonhosted.org/packages/9c/d8/af4b507e4f7eeea478cc8ee873995a6fd55582bfb99140593ed460e1db3c/pyzmq-27.0.1-cp313-cp313-android_24_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ac5537fae0013e11f88681da42698e550b08a316d608242551f65095cc99232a",
                "md5": "7094c128a7137ba2b13526b17c0eee07",
                "sha256": "72d235d6365ca73d8ce92f7425065d70f5c1e19baa458eb3f0d570e425b73a96"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp313-cp313t-macosx_10_15_universal2.whl",
            "has_sig": false,
            "md5_digest": "7094c128a7137ba2b13526b17c0eee07",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1340826,
            "upload_time": "2025-08-03T05:03:52",
            "upload_time_iso_8601": "2025-08-03T05:03:52.568018Z",
            "url": "https://files.pythonhosted.org/packages/ac/55/37fae0013e11f88681da42698e550b08a316d608242551f65095cc99232a/pyzmq-27.0.1-cp313-cp313t-macosx_10_15_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f2e43a87854c64b26fcf63a9d1b6f4382bd727d4797c772ceb334a97b7489be9",
                "md5": "a4415fcafce42f2aaee103e01f3302ae",
                "sha256": "313a7b374e3dc64848644ca348a51004b41726f768b02e17e689f1322366a4d9"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp313-cp313t-manylinux2014_i686.manylinux_2_17_i686.whl",
            "has_sig": false,
            "md5_digest": "a4415fcafce42f2aaee103e01f3302ae",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 897283,
            "upload_time": "2025-08-03T05:03:54",
            "upload_time_iso_8601": "2025-08-03T05:03:54.167672Z",
            "url": "https://files.pythonhosted.org/packages/f2/e4/3a87854c64b26fcf63a9d1b6f4382bd727d4797c772ceb334a97b7489be9/pyzmq-27.0.1-cp313-cp313t-manylinux2014_i686.manylinux_2_17_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "173e4296c6b0ad2d07be11ae1395dccf9cae48a0a655cf9be1c3733ad2b591d1",
                "md5": "0beafe7399c6d3ae2dad9b12ebca6a3e",
                "sha256": "119ce8590409702394f959c159d048002cbed2f3c0645ec9d6a88087fc70f0f1"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0beafe7399c6d3ae2dad9b12ebca6a3e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 660565,
            "upload_time": "2025-08-03T05:03:56",
            "upload_time_iso_8601": "2025-08-03T05:03:56.152875Z",
            "url": "https://files.pythonhosted.org/packages/17/3e/4296c6b0ad2d07be11ae1395dccf9cae48a0a655cf9be1c3733ad2b591d1/pyzmq-27.0.1-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7241a33ba3aa48b45b23c4cd4ac49aafde46f3e0f81939f2bfb3b6171a437122",
                "md5": "ba1ebb49827cbdb6586add9edf23d942",
                "sha256": "45c3e00ce16896ace2cd770ab9057a7cf97d4613ea5f2a13f815141d8b6894b9"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp313-cp313t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ba1ebb49827cbdb6586add9edf23d942",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 847680,
            "upload_time": "2025-08-03T05:03:57",
            "upload_time_iso_8601": "2025-08-03T05:03:57.696275Z",
            "url": "https://files.pythonhosted.org/packages/72/41/a33ba3aa48b45b23c4cd4ac49aafde46f3e0f81939f2bfb3b6171a437122/pyzmq-27.0.1-cp313-cp313t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3f8cbf2350bb25b3b58d2e5b5d2290ffab0e923f0cc6d02288d3fbf4baa6e4d1",
                "md5": "2927c1a79ea3774403864306d0bc86b4",
                "sha256": "678e50ec112bdc6df5a83ac259a55a4ba97a8b314c325ab26b3b5b071151bc61"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2927c1a79ea3774403864306d0bc86b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1650151,
            "upload_time": "2025-08-03T05:03:59",
            "upload_time_iso_8601": "2025-08-03T05:03:59.387773Z",
            "url": "https://files.pythonhosted.org/packages/3f/8c/bf2350bb25b3b58d2e5b5d2290ffab0e923f0cc6d02288d3fbf4baa6e4d1/pyzmq-27.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f71aa5a07c54890891344a8ddc3d5ab320dd3c4e39febb6e4472546e456d5157",
                "md5": "df93aafdddcf167ac3ecaf1ba5f435fc",
                "sha256": "d0b96c30be9f9387b18b18b6133c75a7b1b0065da64e150fe1feb5ebf31ece1c"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp313-cp313t-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "df93aafdddcf167ac3ecaf1ba5f435fc",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 2023766,
            "upload_time": "2025-08-03T05:04:01",
            "upload_time_iso_8601": "2025-08-03T05:04:01.883495Z",
            "url": "https://files.pythonhosted.org/packages/f7/1a/a5a07c54890891344a8ddc3d5ab320dd3c4e39febb6e4472546e456d5157/pyzmq-27.0.1-cp313-cp313t-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "625e514dcff08f02c6c8a45a6e23621901139cf853be7ac5ccd0b9407c3aa3de",
                "md5": "fed0b2059450ecf59f85a2f2f56c8e54",
                "sha256": "88dc92d9eb5ea4968123e74db146d770b0c8d48f0e2bfb1dbc6c50a8edb12d64"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fed0b2059450ecf59f85a2f2f56c8e54",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1885195,
            "upload_time": "2025-08-03T05:04:03",
            "upload_time_iso_8601": "2025-08-03T05:04:03.923261Z",
            "url": "https://files.pythonhosted.org/packages/62/5e/514dcff08f02c6c8a45a6e23621901139cf853be7ac5ccd0b9407c3aa3de/pyzmq-27.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c89187f74f98a487fbef0b115f6025e4a295129fd56b2b633a03ba7d5816ecc2",
                "md5": "3b0d0a0e9d23908b7d662c2b70f01b64",
                "sha256": "6dcbcb34f5c9b0cefdfc71ff745459241b7d3cda5b27c7ad69d45afc0821d1e1"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp313-cp313t-win32.whl",
            "has_sig": false,
            "md5_digest": "3b0d0a0e9d23908b7d662c2b70f01b64",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 574213,
            "upload_time": "2025-08-03T05:04:05",
            "upload_time_iso_8601": "2025-08-03T05:04:05.905204Z",
            "url": "https://files.pythonhosted.org/packages/c8/91/87f74f98a487fbef0b115f6025e4a295129fd56b2b633a03ba7d5816ecc2/pyzmq-27.0.1-cp313-cp313t-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e6d707f7d0d7f4c81e08be7b60e52ff2591c557377c017f96204d33d5fca1b07",
                "md5": "1d07e5cbbd495d12516566469f6486d4",
                "sha256": "b9fd0fda730461f510cfd9a40fafa5355d65f5e3dbdd8d6dfa342b5b3f5d1949"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp313-cp313t-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1d07e5cbbd495d12516566469f6486d4",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 640202,
            "upload_time": "2025-08-03T05:04:07",
            "upload_time_iso_8601": "2025-08-03T05:04:07.439486Z",
            "url": "https://files.pythonhosted.org/packages/e6/d7/07f7d0d7f4c81e08be7b60e52ff2591c557377c017f96204d33d5fca1b07/pyzmq-27.0.1-cp313-cp313t-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ab8321d66bcef6fb803647a223cbde95111b099e2176277c0cbc8b099c485510",
                "md5": "9a957d53a8285c234acc32a5d0f7ec6b",
                "sha256": "56a3b1853f3954ec1f0e91085f1350cc57d18f11205e4ab6e83e4b7c414120e0"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp313-cp313t-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "9a957d53a8285c234acc32a5d0f7ec6b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 561514,
            "upload_time": "2025-08-03T05:04:09",
            "upload_time_iso_8601": "2025-08-03T05:04:09.071426Z",
            "url": "https://files.pythonhosted.org/packages/ab/83/21d66bcef6fb803647a223cbde95111b099e2176277c0cbc8b099c485510/pyzmq-27.0.1-cp313-cp313t-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5a0bd5ea75cf46b52cdce85a85200c963cb498932953df443892238be49b1a01",
                "md5": "489a83eb288e5d0be1e7cf568682cbc9",
                "sha256": "f98f6b7787bd2beb1f0dde03f23a0621a0c978edf673b7d8f5e7bc039cbe1b60"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp314-cp314t-macosx_10_15_universal2.whl",
            "has_sig": false,
            "md5_digest": "489a83eb288e5d0be1e7cf568682cbc9",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 1340836,
            "upload_time": "2025-08-03T05:04:10",
            "upload_time_iso_8601": "2025-08-03T05:04:10.774619Z",
            "url": "https://files.pythonhosted.org/packages/5a/0b/d5ea75cf46b52cdce85a85200c963cb498932953df443892238be49b1a01/pyzmq-27.0.1-cp314-cp314t-macosx_10_15_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "be4c0dbce882550e17db6846b29e9dc242aea7590e7594e1ca5043e8e58fff2d",
                "md5": "103e196bab3ff29cade96cbb4c814e57",
                "sha256": "351bf5d8ca0788ca85327fda45843b6927593ff4c807faee368cc5aaf9f809c2"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp314-cp314t-manylinux2014_i686.manylinux_2_17_i686.whl",
            "has_sig": false,
            "md5_digest": "103e196bab3ff29cade96cbb4c814e57",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 897236,
            "upload_time": "2025-08-03T05:04:13",
            "upload_time_iso_8601": "2025-08-03T05:04:13.221787Z",
            "url": "https://files.pythonhosted.org/packages/be/4c/0dbce882550e17db6846b29e9dc242aea7590e7594e1ca5043e8e58fff2d/pyzmq-27.0.1-cp314-cp314t-manylinux2014_i686.manylinux_2_17_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1b22461e131cf16b8814f3c356fa1ea0912697dbc4c64cddf01f7756ec704c1e",
                "md5": "930180bc5a4d638505cfc49cfd6fec66",
                "sha256": "5268a5a9177afff53dc6d70dffe63114ba2a6e7b20d9411cc3adeba09eeda403"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "930180bc5a4d638505cfc49cfd6fec66",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 660374,
            "upload_time": "2025-08-03T05:04:15",
            "upload_time_iso_8601": "2025-08-03T05:04:15.032977Z",
            "url": "https://files.pythonhosted.org/packages/1b/22/461e131cf16b8814f3c356fa1ea0912697dbc4c64cddf01f7756ec704c1e/pyzmq-27.0.1-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3f0cbbd65a814395bf4fc3e57c6c13af27601c07e4009bdfb75ebcf500537bbd",
                "md5": "076876023b938cf9a661e4feab98ad76",
                "sha256": "a4aca06ba295aa78bec9b33ec028d1ca08744c36294338c41432b7171060c808"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp314-cp314t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "076876023b938cf9a661e4feab98ad76",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 847497,
            "upload_time": "2025-08-03T05:04:16",
            "upload_time_iso_8601": "2025-08-03T05:04:16.967455Z",
            "url": "https://files.pythonhosted.org/packages/3f/0c/bbd65a814395bf4fc3e57c6c13af27601c07e4009bdfb75ebcf500537bbd/pyzmq-27.0.1-cp314-cp314t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1edf3d1f4a03b561d824cbd491394f67591957e2f1acf6dc85d96f970312a76a",
                "md5": "d197aa7231074efc2a08bbc073811993",
                "sha256": "1c363c6dc66352331d5ad64bb838765c6692766334a6a02fdb05e76bd408ae18"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d197aa7231074efc2a08bbc073811993",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 1650028,
            "upload_time": "2025-08-03T05:04:19",
            "upload_time_iso_8601": "2025-08-03T05:04:19.398177Z",
            "url": "https://files.pythonhosted.org/packages/1e/df/3d1f4a03b561d824cbd491394f67591957e2f1acf6dc85d96f970312a76a/pyzmq-27.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "41c9a3987540f59a412bdaae3f362f78e00e6769557a598c63b7e32956aade5a",
                "md5": "400c97b83a27e1fbefc6f46ceb26a83e",
                "sha256": "87aebf4acd7249bdff8d3df03aed4f09e67078e6762cfe0aecf8d0748ff94cde"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp314-cp314t-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "400c97b83a27e1fbefc6f46ceb26a83e",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 2023808,
            "upload_time": "2025-08-03T05:04:21",
            "upload_time_iso_8601": "2025-08-03T05:04:21.145114Z",
            "url": "https://files.pythonhosted.org/packages/41/c9/a3987540f59a412bdaae3f362f78e00e6769557a598c63b7e32956aade5a/pyzmq-27.0.1-cp314-cp314t-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b0a5c388f4cd80498a8eaef7535f2a8eaca0a35b82b87a0b47fa1856fc135004",
                "md5": "575660f08bbe45a4674b4106a00c6f69",
                "sha256": "e4f22d67756518d71901edf73b38dc0eb4765cce22c8fe122cc81748d425262b"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "575660f08bbe45a4674b4106a00c6f69",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 1884970,
            "upload_time": "2025-08-03T05:04:22",
            "upload_time_iso_8601": "2025-08-03T05:04:22.908861Z",
            "url": "https://files.pythonhosted.org/packages/b0/a5/c388f4cd80498a8eaef7535f2a8eaca0a35b82b87a0b47fa1856fc135004/pyzmq-27.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9aacb2a89a1ed90526a1b9a260cdc5cd42f055fd44ee8d2a59902b5ac35ddeb1",
                "md5": "8470e7e4a3b222b447b87ab765534571",
                "sha256": "8c62297bc7aea2147b472ca5ca2b4389377ad82898c87cabab2a94aedd75e337"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp314-cp314t-win32.whl",
            "has_sig": false,
            "md5_digest": "8470e7e4a3b222b447b87ab765534571",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 586905,
            "upload_time": "2025-08-03T05:04:24",
            "upload_time_iso_8601": "2025-08-03T05:04:24.492725Z",
            "url": "https://files.pythonhosted.org/packages/9a/ac/b2a89a1ed90526a1b9a260cdc5cd42f055fd44ee8d2a59902b5ac35ddeb1/pyzmq-27.0.1-cp314-cp314t-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "68627aa5ea04e836f7a788b2a67405f83011cef59ca76d7bac91d1fc9a0476da",
                "md5": "495574b8ba2d81b463ff2e187a84f715",
                "sha256": "bee5248d5ec9223545f8cc4f368c2d571477ae828c99409125c3911511d98245"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp314-cp314t-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "495574b8ba2d81b463ff2e187a84f715",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 660503,
            "upload_time": "2025-08-03T05:04:26",
            "upload_time_iso_8601": "2025-08-03T05:04:26.382412Z",
            "url": "https://files.pythonhosted.org/packages/68/62/7aa5ea04e836f7a788b2a67405f83011cef59ca76d7bac91d1fc9a0476da/pyzmq-27.0.1-cp314-cp314t-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "89323836ed85947b06f1d67c07ce16c00b0cf8c053ab0b249d234f9f81ff95ff",
                "md5": "8d889894a17e3ffe8fc6426d44a45d4c",
                "sha256": "0fc24bf45e4a454e55ef99d7f5c8b8712539200ce98533af25a5bfa954b6b390"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp314-cp314t-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "8d889894a17e3ffe8fc6426d44a45d4c",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 575098,
            "upload_time": "2025-08-03T05:04:27",
            "upload_time_iso_8601": "2025-08-03T05:04:27.974450Z",
            "url": "https://files.pythonhosted.org/packages/89/32/3836ed85947b06f1d67c07ce16c00b0cf8c053ab0b249d234f9f81ff95ff/pyzmq-27.0.1-cp314-cp314t-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3f80c0f1ce41dc2ed788a1a7a67714e6797ed66e2dfa045afe13923e0bfd7acf",
                "md5": "47d24f7aa344292e42ee628dd145e76d",
                "sha256": "9d16fdfd7d70a6b0ca45d36eb19f7702fa77ef6256652f17594fc9ce534c9da6"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp38-cp38-macosx_10_15_universal2.whl",
            "has_sig": false,
            "md5_digest": "47d24f7aa344292e42ee628dd145e76d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1331591,
            "upload_time": "2025-08-03T05:04:29",
            "upload_time_iso_8601": "2025-08-03T05:04:29.756147Z",
            "url": "https://files.pythonhosted.org/packages/3f/80/c0f1ce41dc2ed788a1a7a67714e6797ed66e2dfa045afe13923e0bfd7acf/pyzmq-27.0.1-cp38-cp38-macosx_10_15_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "df05111f21a9fbb1841d28db349bbfffa881f904d18287d0775e611bf94a25ad",
                "md5": "5a9928f495c864fe9fd7a0ae9baba9da",
                "sha256": "d0356a21e58c3e99248930ff73cc05b1d302ff50f41a8a47371aefb04327378a"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp38-cp38-manylinux2014_i686.manylinux_2_17_i686.whl",
            "has_sig": false,
            "md5_digest": "5a9928f495c864fe9fd7a0ae9baba9da",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 906951,
            "upload_time": "2025-08-03T05:04:31",
            "upload_time_iso_8601": "2025-08-03T05:04:31.424474Z",
            "url": "https://files.pythonhosted.org/packages/df/05/111f21a9fbb1841d28db349bbfffa881f904d18287d0775e611bf94a25ad/pyzmq-27.0.1-cp38-cp38-manylinux2014_i686.manylinux_2_17_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e02cdba5e4e756a29bd684496c4d6d61c40728ff0140b364b400f5a735c1c0a3",
                "md5": "1e5a7db984b99c91b991b40331a22e86",
                "sha256": "a27fa11ebaccc099cac4309c799aa33919671a7660e29b3e465b7893bc64ec81"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1e5a7db984b99c91b991b40331a22e86",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 863709,
            "upload_time": "2025-08-03T05:04:33",
            "upload_time_iso_8601": "2025-08-03T05:04:33.056922Z",
            "url": "https://files.pythonhosted.org/packages/e0/2c/dba5e4e756a29bd684496c4d6d61c40728ff0140b364b400f5a735c1c0a3/pyzmq-27.0.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ca9e85e92fe9ede793cfdf0da658193eca3c3734699cf36d1d75f2636a4de2a4",
                "md5": "b4d81cc661231f6b3543eca57cafd9f6",
                "sha256": "b25e72e115399a4441aad322258fa8267b873850dc7c276e3f874042728c2b45"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp38-cp38-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b4d81cc661231f6b3543eca57cafd9f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 668311,
            "upload_time": "2025-08-03T05:04:34",
            "upload_time_iso_8601": "2025-08-03T05:04:34.723561Z",
            "url": "https://files.pythonhosted.org/packages/ca/9e/85e92fe9ede793cfdf0da658193eca3c3734699cf36d1d75f2636a4de2a4/pyzmq-27.0.1-cp38-cp38-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "558c6d9977000d7111a589b177076bdd875b3e84376661e9ab7146260f60cc0b",
                "md5": "17a39785a2b00d490e381299ae886ef4",
                "sha256": "f8c3b74f1cd577a5a9253eae7ed363f88cbb345a990ca3027e9038301d47c7f4"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "17a39785a2b00d490e381299ae886ef4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1657314,
            "upload_time": "2025-08-03T05:04:36",
            "upload_time_iso_8601": "2025-08-03T05:04:36.439988Z",
            "url": "https://files.pythonhosted.org/packages/55/8c/6d9977000d7111a589b177076bdd875b3e84376661e9ab7146260f60cc0b/pyzmq-27.0.1-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ebf91e6e5d56b2a84fa5bb44e10a4d654c9269ac82d877a90d4b9d4750ecc139",
                "md5": "d5e0929028ba2c7ef51a979445afc030",
                "sha256": "19dce6c93656f9c469540350d29b128cd8ba55b80b332b431b9a1e9ff74cfd01"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "d5e0929028ba2c7ef51a979445afc030",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2034553,
            "upload_time": "2025-08-03T05:04:38",
            "upload_time_iso_8601": "2025-08-03T05:04:38.168891Z",
            "url": "https://files.pythonhosted.org/packages/eb/f9/1e6e5d56b2a84fa5bb44e10a4d654c9269ac82d877a90d4b9d4750ecc139/pyzmq-27.0.1-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3e785aef6dc9d858df1219ed9b122326bc38529e7b341565ee4ea8c90b4939f8",
                "md5": "4c85d35a6a7da05bf4f6a2c698b8b478",
                "sha256": "da81512b83032ed6cdf85ca62e020b4c23dda87f1b6c26b932131222ccfdbd27"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4c85d35a6a7da05bf4f6a2c698b8b478",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1894118,
            "upload_time": "2025-08-03T05:04:39",
            "upload_time_iso_8601": "2025-08-03T05:04:39.860320Z",
            "url": "https://files.pythonhosted.org/packages/3e/78/5aef6dc9d858df1219ed9b122326bc38529e7b341565ee4ea8c90b4939f8/pyzmq-27.0.1-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "228d0f4bac1dc2f448839f63b2403eeb587f1a6a82ccc9d18130306173f838cd",
                "md5": "bfff710fd4767b09bf1a498cb9e373a7",
                "sha256": "7418fb5736d0d39b3ecc6bec4ff549777988feb260f5381636d8bd321b653038"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "bfff710fd4767b09bf1a498cb9e373a7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 567143,
            "upload_time": "2025-08-03T05:04:41",
            "upload_time_iso_8601": "2025-08-03T05:04:41.908070Z",
            "url": "https://files.pythonhosted.org/packages/22/8d/0f4bac1dc2f448839f63b2403eeb587f1a6a82ccc9d18130306173f838cd/pyzmq-27.0.1-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7bceb96b441ac3f7b8f9933395effa6c035d26cfce381be7fa46f8685dea4cca",
                "md5": "40550dfbb5f2db1d5c5a59e4ea8b2760",
                "sha256": "af2ee67b3688b067e20fea3fe36b823a362609a1966e7e7a21883ae6da248804"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "40550dfbb5f2db1d5c5a59e4ea8b2760",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 632241,
            "upload_time": "2025-08-03T05:04:43",
            "upload_time_iso_8601": "2025-08-03T05:04:43.553565Z",
            "url": "https://files.pythonhosted.org/packages/7b/ce/b96b441ac3f7b8f9933395effa6c035d26cfce381be7fa46f8685dea4cca/pyzmq-27.0.1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7cf1cdceaf9b6637570f36eee2dbd25bc5a800637cd9b4103b15fbc4b0658b82",
                "md5": "8987fcb29cbc3a2e27f97ebdeecccc67",
                "sha256": "05a94233fdde585eb70924a6e4929202a747eea6ed308a6171c4f1c715bbe39e"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp39-cp39-macosx_10_15_universal2.whl",
            "has_sig": false,
            "md5_digest": "8987fcb29cbc3a2e27f97ebdeecccc67",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1330651,
            "upload_time": "2025-08-03T05:04:45",
            "upload_time_iso_8601": "2025-08-03T05:04:45.583210Z",
            "url": "https://files.pythonhosted.org/packages/7c/f1/cdceaf9b6637570f36eee2dbd25bc5a800637cd9b4103b15fbc4b0658b82/pyzmq-27.0.1-cp39-cp39-macosx_10_15_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "745c469d3b9315eb4d5c61c431a4ae8acdb6abb165dfa5ddbc7af639be53891c",
                "md5": "2dad00fdfc122f43c506b1c04dc7e799",
                "sha256": "c96702e1082eab62ae583d64c4e19c9b848359196697e536a0c57ae9bd165bd5"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp39-cp39-manylinux2014_i686.manylinux_2_17_i686.whl",
            "has_sig": false,
            "md5_digest": "2dad00fdfc122f43c506b1c04dc7e799",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 906524,
            "upload_time": "2025-08-03T05:04:47",
            "upload_time_iso_8601": "2025-08-03T05:04:47.904359Z",
            "url": "https://files.pythonhosted.org/packages/74/5c/469d3b9315eb4d5c61c431a4ae8acdb6abb165dfa5ddbc7af639be53891c/pyzmq-27.0.1-cp39-cp39-manylinux2014_i686.manylinux_2_17_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "edc0c7a12a533a87beb1143f4a9c8f4d6f82775c04eb3ad27f664e0ef00a6189",
                "md5": "482cef684d160cd1f3a45f9d7c9c9611",
                "sha256": "c9180d1f5b4b73e28b64e63cc6c4c097690f102aa14935a62d5dd7426a4e5b5a"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "has_sig": false,
            "md5_digest": "482cef684d160cd1f3a45f9d7c9c9611",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 863547,
            "upload_time": "2025-08-03T05:04:49",
            "upload_time_iso_8601": "2025-08-03T05:04:49.579531Z",
            "url": "https://files.pythonhosted.org/packages/ed/c0/c7a12a533a87beb1143f4a9c8f4d6f82775c04eb3ad27f664e0ef00a6189/pyzmq-27.0.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "417850907d004511bd23eae03d951f3ca4e4cc2e7eb5ec8d3df70d89eca3f97c",
                "md5": "1baa655169c65feef2e75c2f84012761",
                "sha256": "e971d8680003d0af6020713e52f92109b46fedb463916e988814e04c8133578a"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1baa655169c65feef2e75c2f84012761",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 666797,
            "upload_time": "2025-08-03T05:04:51",
            "upload_time_iso_8601": "2025-08-03T05:04:51.263023Z",
            "url": "https://files.pythonhosted.org/packages/41/78/50907d004511bd23eae03d951f3ca4e4cc2e7eb5ec8d3df70d89eca3f97c/pyzmq-27.0.1-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "67bdec3388888eda39705a4cefb465452a4bca5430a3435803588ced49943fdb",
                "md5": "fce8cddc88ed14de9808e292c6ec05fa",
                "sha256": "fe632fa4501154d58dfbe1764a0495734d55f84eaf1feda4549a1f1ca76659e9"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fce8cddc88ed14de9808e292c6ec05fa",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1655601,
            "upload_time": "2025-08-03T05:04:53",
            "upload_time_iso_8601": "2025-08-03T05:04:53.026442Z",
            "url": "https://files.pythonhosted.org/packages/67/bd/ec3388888eda39705a4cefb465452a4bca5430a3435803588ced49943fdb/pyzmq-27.0.1-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8450170a1671a171365dda677886d42c39629a086752696ede70296b8f6224d8",
                "md5": "0af2ff7b469c3251f8d9579fbe2c5a0e",
                "sha256": "4c3874344fd5fa6d58bb51919708048ac4cab21099f40a227173cddb76b4c20b"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "0af2ff7b469c3251f8d9579fbe2c5a0e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2034120,
            "upload_time": "2025-08-03T05:04:55",
            "upload_time_iso_8601": "2025-08-03T05:04:55.323118Z",
            "url": "https://files.pythonhosted.org/packages/84/50/170a1671a171365dda677886d42c39629a086752696ede70296b8f6224d8/pyzmq-27.0.1-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a40af06841495e4ec33ed65588e94aff07f1dcbc6878e1611577f6b97a449068",
                "md5": "5afbb448cf756f9ff6b88487cc374c80",
                "sha256": "0ec09073ed67ae236785d543df3b322282acc0bdf6d1b748c3e81f3043b21cb5"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5afbb448cf756f9ff6b88487cc374c80",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1891956,
            "upload_time": "2025-08-03T05:04:57",
            "upload_time_iso_8601": "2025-08-03T05:04:57.084070Z",
            "url": "https://files.pythonhosted.org/packages/a4/0a/f06841495e4ec33ed65588e94aff07f1dcbc6878e1611577f6b97a449068/pyzmq-27.0.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d96b6ba945a4756e4b1ba69b909d2b040d16aff0f0edd56a60874970b8d47237",
                "md5": "aaf9117ce67beefcb2aae18f18f1ceb8",
                "sha256": "f44e7ea288d022d4bf93b9e79dafcb4a7aea45a3cbeae2116792904931cefccf"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "aaf9117ce67beefcb2aae18f18f1ceb8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 567388,
            "upload_time": "2025-08-03T05:04:58",
            "upload_time_iso_8601": "2025-08-03T05:04:58.704899Z",
            "url": "https://files.pythonhosted.org/packages/d9/6b/6ba945a4756e4b1ba69b909d2b040d16aff0f0edd56a60874970b8d47237/pyzmq-27.0.1-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b0b48ffb9cfb363bc9d61c5d8d9f79a7ada572b0865dac9f4a547da901b81d76",
                "md5": "900c839e308a7ba0df40c894fc00d5ef",
                "sha256": "ffe6b809a97ac6dea524b3b837d5b28743d8c2f121141056d168ff0ba8f614ef"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "900c839e308a7ba0df40c894fc00d5ef",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 632004,
            "upload_time": "2025-08-03T05:05:00",
            "upload_time_iso_8601": "2025-08-03T05:05:00.434432Z",
            "url": "https://files.pythonhosted.org/packages/b0/b4/8ffb9cfb363bc9d61c5d8d9f79a7ada572b0865dac9f4a547da901b81d76/pyzmq-27.0.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6c4bdd5c4d3bb7261efb30a909d2df447ac77393653e5c34c8a9cd536f429c3e",
                "md5": "66f2d9767ed49a1a4aee473178c16597",
                "sha256": "fde26267416c8478c95432c81489b53f57b0b5d24cd5c8bfaebf5bbaac4dc90c"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-cp39-cp39-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "66f2d9767ed49a1a4aee473178c16597",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 559881,
            "upload_time": "2025-08-03T05:05:02",
            "upload_time_iso_8601": "2025-08-03T05:05:02.363932Z",
            "url": "https://files.pythonhosted.org/packages/6c/4b/dd5c4d3bb7261efb30a909d2df447ac77393653e5c34c8a9cd536f429c3e/pyzmq-27.0.1-cp39-cp39-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6f87fc96f224dd99070fe55d0afc37ac08d7d4635d434e3f9425b232867e01b9",
                "md5": "5ce74c9c438d95df5380311b23e2948c",
                "sha256": "544b995a6a1976fad5d7ff01409b4588f7608ccc41be72147700af91fd44875d"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5ce74c9c438d95df5380311b23e2948c",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 835950,
            "upload_time": "2025-08-03T05:05:04",
            "upload_time_iso_8601": "2025-08-03T05:05:04.193869Z",
            "url": "https://files.pythonhosted.org/packages/6f/87/fc96f224dd99070fe55d0afc37ac08d7d4635d434e3f9425b232867e01b9/pyzmq-27.0.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d1b6802d96017f176c3a7285603d9ed2982550095c136c6230d3e0b53f52c7e5",
                "md5": "dada203c97ceca09f510e577d1cbc991",
                "sha256": "0f772eea55cccce7f45d6ecdd1d5049c12a77ec22404f6b892fae687faa87bee"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-pp310-pypy310_pp73-manylinux2014_i686.manylinux_2_17_i686.whl",
            "has_sig": false,
            "md5_digest": "dada203c97ceca09f510e577d1cbc991",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 799876,
            "upload_time": "2025-08-03T05:05:06",
            "upload_time_iso_8601": "2025-08-03T05:05:06.263662Z",
            "url": "https://files.pythonhosted.org/packages/d1/b6/802d96017f176c3a7285603d9ed2982550095c136c6230d3e0b53f52c7e5/pyzmq-27.0.1-pp310-pypy310_pp73-manylinux2014_i686.manylinux_2_17_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4e5249045c6528007cce385f218f3a674dc84fc8b3265330d09e57c0a59b41f4",
                "md5": "2bd3348da3145ea99477cc4ff5a45939",
                "sha256": "c9d63d66059114a6756d09169c9209ffceabacb65b9cb0f66e6fc344b20b73e6"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-pp310-pypy310_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2bd3348da3145ea99477cc4ff5a45939",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 567402,
            "upload_time": "2025-08-03T05:05:08",
            "upload_time_iso_8601": "2025-08-03T05:05:08.028763Z",
            "url": "https://files.pythonhosted.org/packages/4e/52/49045c6528007cce385f218f3a674dc84fc8b3265330d09e57c0a59b41f4/pyzmq-27.0.1-pp310-pypy310_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bcfec29ac0d5a817543ecf0cb18f17195805bad0da567a1c64644aacf11b2779",
                "md5": "f5fe1738719d823eda7be9c3d19e2523",
                "sha256": "1da8e645c655d86f0305fb4c65a0d848f461cd90ee07d21f254667287b5dbe50"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-pp310-pypy310_pp73-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f5fe1738719d823eda7be9c3d19e2523",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 747030,
            "upload_time": "2025-08-03T05:05:10",
            "upload_time_iso_8601": "2025-08-03T05:05:10.116689Z",
            "url": "https://files.pythonhosted.org/packages/bc/fe/c29ac0d5a817543ecf0cb18f17195805bad0da567a1c64644aacf11b2779/pyzmq-27.0.1-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": "17d1cc1fbfb65b4042016e4e035b2548cdfe0945c817345df83aa2d98490e7fc",
                "md5": "4fdb8b6a5dd7cfe102665c88655963f4",
                "sha256": "1843fd0daebcf843fe6d4da53b8bdd3fc906ad3e97d25f51c3fed44436d82a49"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4fdb8b6a5dd7cfe102665c88655963f4",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 544567,
            "upload_time": "2025-08-03T05:05:11",
            "upload_time_iso_8601": "2025-08-03T05:05:11.856364Z",
            "url": "https://files.pythonhosted.org/packages/17/d1/cc1fbfb65b4042016e4e035b2548cdfe0945c817345df83aa2d98490e7fc/pyzmq-27.0.1-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b41a49f66fe0bc2b2568dd4280f1f520ac8fafd73f8d762140e278d48aeaf7b9",
                "md5": "668bfa255d9571e00462cdce9eb46ae1",
                "sha256": "7fb0ee35845bef1e8c4a152d766242164e138c239e3182f558ae15cb4a891f94"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "668bfa255d9571e00462cdce9eb46ae1",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.8",
            "size": 835949,
            "upload_time": "2025-08-03T05:05:13",
            "upload_time_iso_8601": "2025-08-03T05:05:13.798185Z",
            "url": "https://files.pythonhosted.org/packages/b4/1a/49f66fe0bc2b2568dd4280f1f520ac8fafd73f8d762140e278d48aeaf7b9/pyzmq-27.0.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4994443c1984b397eab59b14dd7ae8bc2ac7e8f32dbc646474453afcaa6508c4",
                "md5": "f6715f216306fc420bfc631db6f0f23b",
                "sha256": "f379f11e138dfd56c3f24a04164f871a08281194dd9ddf656a278d7d080c8ad0"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-pp311-pypy311_pp73-manylinux2014_i686.manylinux_2_17_i686.whl",
            "has_sig": false,
            "md5_digest": "f6715f216306fc420bfc631db6f0f23b",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.8",
            "size": 799875,
            "upload_time": "2025-08-03T05:05:15",
            "upload_time_iso_8601": "2025-08-03T05:05:15.632141Z",
            "url": "https://files.pythonhosted.org/packages/49/94/443c1984b397eab59b14dd7ae8bc2ac7e8f32dbc646474453afcaa6508c4/pyzmq-27.0.1-pp311-pypy311_pp73-manylinux2014_i686.manylinux_2_17_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "30f1fd96138a0f152786a2ba517e9c6a8b1b3516719e412a90bb5d8eea6b660c",
                "md5": "2e73349f4b0e05c11596d13e52956259",
                "sha256": "b978c0678cffbe8860ec9edc91200e895c29ae1ac8a7085f947f8e8864c489fb"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2e73349f4b0e05c11596d13e52956259",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.8",
            "size": 567403,
            "upload_time": "2025-08-03T05:05:17",
            "upload_time_iso_8601": "2025-08-03T05:05:17.326045Z",
            "url": "https://files.pythonhosted.org/packages/30/f1/fd96138a0f152786a2ba517e9c6a8b1b3516719e412a90bb5d8eea6b660c/pyzmq-27.0.1-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "165734e53ef2b55b1428dac5aabe3a974a16c8bda3bf20549ba500e3ff6cb426",
                "md5": "11eadd768ea43c87264f0d1120e1bfdb",
                "sha256": "7ebccf0d760bc92a4a7c751aeb2fef6626144aace76ee8f5a63abeb100cae87f"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-pp311-pypy311_pp73-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "11eadd768ea43c87264f0d1120e1bfdb",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.8",
            "size": 747032,
            "upload_time": "2025-08-03T05:05:19",
            "upload_time_iso_8601": "2025-08-03T05:05:19.074491Z",
            "url": "https://files.pythonhosted.org/packages/16/57/34e53ef2b55b1428dac5aabe3a974a16c8bda3bf20549ba500e3ff6cb426/pyzmq-27.0.1-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": "81b7769598c5ae336fdb657946950465569cf18803140fe89ce466d7f0a57c11",
                "md5": "2f28570c8f2c9254a17e417208eef7ff",
                "sha256": "77fed80e30fa65708546c4119840a46691290efc231f6bfb2ac2a39b52e15811"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-pp311-pypy311_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2f28570c8f2c9254a17e417208eef7ff",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.8",
            "size": 544566,
            "upload_time": "2025-08-03T05:05:20",
            "upload_time_iso_8601": "2025-08-03T05:05:20.798756Z",
            "url": "https://files.pythonhosted.org/packages/81/b7/769598c5ae336fdb657946950465569cf18803140fe89ce466d7f0a57c11/pyzmq-27.0.1-pp311-pypy311_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b640507dd0a3d72e930f8a05ba7daffab1e6dd90a2f8a69aa7ea20f8bd8d968b",
                "md5": "cbf5b65ec8500a7d75c8d90e27d0635c",
                "sha256": "9d7b6b90da7285642f480b48c9efd1d25302fd628237d8f6f6ee39ba6b2d2d34"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-pp38-pypy38_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cbf5b65ec8500a7d75c8d90e27d0635c",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 835927,
            "upload_time": "2025-08-03T05:05:22",
            "upload_time_iso_8601": "2025-08-03T05:05:22.549462Z",
            "url": "https://files.pythonhosted.org/packages/b6/40/507dd0a3d72e930f8a05ba7daffab1e6dd90a2f8a69aa7ea20f8bd8d968b/pyzmq-27.0.1-pp38-pypy38_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1afb8ee8629096c733f5ef62060bee754c42202bbb198dc4cd1377586d74ce11",
                "md5": "1cf8016edee6143a1d9c7876bf028364",
                "sha256": "d2976b7079f09f48d59dc123293ed6282fca6ef96a270f4ea0364e4e54c8e855"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-pp38-pypy38_pp73-manylinux2014_i686.manylinux_2_17_i686.whl",
            "has_sig": false,
            "md5_digest": "1cf8016edee6143a1d9c7876bf028364",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 799872,
            "upload_time": "2025-08-03T05:05:24",
            "upload_time_iso_8601": "2025-08-03T05:05:24.285668Z",
            "url": "https://files.pythonhosted.org/packages/1a/fb/8ee8629096c733f5ef62060bee754c42202bbb198dc4cd1377586d74ce11/pyzmq-27.0.1-pp38-pypy38_pp73-manylinux2014_i686.manylinux_2_17_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "971159a0524c5c36bcd989b6cf562df970b3d7b61c2aa4e5ff7b13bdf42dd427",
                "md5": "7fbc50f3561dd011e1025b46c6084767",
                "sha256": "2852f67371918705cc18b321695f75c5d653d5d8c4a9b946c1eec4dab2bd6fdf"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-pp38-pypy38_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7fbc50f3561dd011e1025b46c6084767",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 758372,
            "upload_time": "2025-08-03T05:05:25",
            "upload_time_iso_8601": "2025-08-03T05:05:25.965956Z",
            "url": "https://files.pythonhosted.org/packages/97/11/59a0524c5c36bcd989b6cf562df970b3d7b61c2aa4e5ff7b13bdf42dd427/pyzmq-27.0.1-pp38-pypy38_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "db9896727df7838ea6418aeb9d58337685d3e239c0e48b575d84075608273032",
                "md5": "9bda3e585f9cdae2ddd67c9187c6bc03",
                "sha256": "be45a895f98877271e8a0b6cf40925e0369121ce423421c20fa6d7958dc753c2"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-pp38-pypy38_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9bda3e585f9cdae2ddd67c9187c6bc03",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 567395,
            "upload_time": "2025-08-03T05:05:27",
            "upload_time_iso_8601": "2025-08-03T05:05:27.748176Z",
            "url": "https://files.pythonhosted.org/packages/db/98/96727df7838ea6418aeb9d58337685d3e239c0e48b575d84075608273032/pyzmq-27.0.1-pp38-pypy38_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "11ffb11d444cf6d0bf662817fcd14cfaa913ae9cb435ac07dec1963bee02310d",
                "md5": "9167980209c6687bb091ad9eb8387988",
                "sha256": "64ca3c7c614aefcdd5e358ecdd41d1237c35fe1417d01ec0160e7cdb0a380edc"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9167980209c6687bb091ad9eb8387988",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 544562,
            "upload_time": "2025-08-03T05:05:29",
            "upload_time_iso_8601": "2025-08-03T05:05:29.427600Z",
            "url": "https://files.pythonhosted.org/packages/11/ff/b11d444cf6d0bf662817fcd14cfaa913ae9cb435ac07dec1963bee02310d/pyzmq-27.0.1-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "608dc0880acd2d5908eec6fe9b399f0fb630e5f203f8a69f82442d5cb2b2f46c",
                "md5": "852e571a92f0b5d26352a92c85912b86",
                "sha256": "d97b59cbd8a6c8b23524a8ce237ff9504d987dc07156258aa68ae06d2dd5f34d"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "852e571a92f0b5d26352a92c85912b86",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 835946,
            "upload_time": "2025-08-03T05:05:31",
            "upload_time_iso_8601": "2025-08-03T05:05:31.161141Z",
            "url": "https://files.pythonhosted.org/packages/60/8d/c0880acd2d5908eec6fe9b399f0fb630e5f203f8a69f82442d5cb2b2f46c/pyzmq-27.0.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c1356b71409aa6629b3d4917b38961501898827f4fb5ddc680cc8e0cb13987f3",
                "md5": "7fd0f91084f2716e109f8ae6d35cb524",
                "sha256": "27a78bdd384dbbe7b357af95f72efe8c494306b5ec0a03c31e2d53d6763e5307"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-pp39-pypy39_pp73-manylinux2014_i686.manylinux_2_17_i686.whl",
            "has_sig": false,
            "md5_digest": "7fd0f91084f2716e109f8ae6d35cb524",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 799870,
            "upload_time": "2025-08-03T05:05:33",
            "upload_time_iso_8601": "2025-08-03T05:05:33.010151Z",
            "url": "https://files.pythonhosted.org/packages/c1/35/6b71409aa6629b3d4917b38961501898827f4fb5ddc680cc8e0cb13987f3/pyzmq-27.0.1-pp39-pypy39_pp73-manylinux2014_i686.manylinux_2_17_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "16f65d36d8f6571478f32c32f5872abd76eda052746283ca87e24cc5758f7987",
                "md5": "e6d12ec78f2f7efbce15755c50c42af3",
                "sha256": "b007e5dcba684e888fbc90554cb12a2f4e492927c8c2761a80b7590209821743"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e6d12ec78f2f7efbce15755c50c42af3",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 758371,
            "upload_time": "2025-08-03T05:05:34",
            "upload_time_iso_8601": "2025-08-03T05:05:34.722743Z",
            "url": "https://files.pythonhosted.org/packages/16/f6/5d36d8f6571478f32c32f5872abd76eda052746283ca87e24cc5758f7987/pyzmq-27.0.1-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6f296a7b7f5d47712487d8a3516584a4a484a0147f2537228237397793b2de69",
                "md5": "60d7a1eb7e851c6aaa010ae52bd248df",
                "sha256": "95594b2ceeaa94934e3e94dd7bf5f3c3659cf1a26b1fb3edcf6e42dad7e0eaf2"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-pp39-pypy39_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "60d7a1eb7e851c6aaa010ae52bd248df",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 567395,
            "upload_time": "2025-08-03T05:05:36",
            "upload_time_iso_8601": "2025-08-03T05:05:36.701616Z",
            "url": "https://files.pythonhosted.org/packages/6f/29/6a7b7f5d47712487d8a3516584a4a484a0147f2537228237397793b2de69/pyzmq-27.0.1-pp39-pypy39_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eb37c1f26d13e9d4c3bfce42fead8ff640f6c06a58decde49a6b295b9d52cefd",
                "md5": "2f53a2ceaa9f7b116dcce70e2afc9fa2",
                "sha256": "70b719a130b81dd130a57ac0ff636dc2c0127c5b35ca5467d1b67057e3c7a4d2"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2f53a2ceaa9f7b116dcce70e2afc9fa2",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 544561,
            "upload_time": "2025-08-03T05:05:38",
            "upload_time_iso_8601": "2025-08-03T05:05:38.608823Z",
            "url": "https://files.pythonhosted.org/packages/eb/37/c1f26d13e9d4c3bfce42fead8ff640f6c06a58decde49a6b295b9d52cefd/pyzmq-27.0.1-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "305f557d2032a2f471edbcc227da724c24a1c05887b5cda1e3ae53af98b9e0a5",
                "md5": "314fee990cf56dd5c325ed6ecfa6e052",
                "sha256": "45c549204bc20e7484ffd2555f6cf02e572440ecf2f3bdd60d4404b20fddf64b"
            },
            "downloads": -1,
            "filename": "pyzmq-27.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "314fee990cf56dd5c325ed6ecfa6e052",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 281158,
            "upload_time": "2025-08-03T05:05:40",
            "upload_time_iso_8601": "2025-08-03T05:05:40.352396Z",
            "url": "https://files.pythonhosted.org/packages/30/5f/557d2032a2f471edbcc227da724c24a1c05887b5cda1e3ae53af98b9e0a5/pyzmq-27.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-03 05:05:40",
    "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: 0.44620s