pyzmq


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

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

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

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

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

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

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

## Documentation

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

## Downloading

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

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

## Building and installation

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

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

```
pip install pyzmq
```

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

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

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

## Old versions

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

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

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

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

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

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "pyzmq",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": null,
    "author": "Brian E. Granger, Min Ragan-Kelley",
    "author_email": "PyZMQ Contributors <zeromq-dev@lists.zeromq.org>",
    "download_url": "https://files.pythonhosted.org/packages/c4/9a/0e2ab500fd5a5a41e7d003e4a49faa7a0333db13e54498a3cf749b9eedd0/pyzmq-26.0.3.tar.gz",
    "platform": null,
    "description": "# PyZMQ: Python bindings for \u00d8MQ\n\nThis package contains Python bindings for [ZeroMQ](https://zeromq.org).\n\u00d8MQ is a lightweight and fast messaging implementation.\n\nPyZMQ should work with any reasonable version of Python (\u2265 3.7), as well as PyPy.\nThe Cython backend used by CPython supports libzmq \u2265 2.1.4 (including 3.2.x and 4.x),\nbut the CFFI backend used by PyPy only supports libzmq \u2265 3.2.2 (including 4.x).\n\nFor a summary of changes to pyzmq, see our\n[changelog](https://pyzmq.readthedocs.io/en/latest/changelog.html).\n\n### \u00d8MQ 3.x, 4.x\n\nPyZMQ fully supports the 3.x and 4.x APIs of libzmq,\ndeveloped at [zeromq/libzmq](https://github.com/zeromq/libzmq).\nNo code to change, no flags to pass,\njust build pyzmq against the latest and it should work.\n\nPyZMQ does not support the old libzmq 2 API on PyPy.\n\n## Documentation\n\nSee PyZMQ's Sphinx-generated\ndocumentation [on Read the Docs](https://pyzmq.readthedocs.io) for API\ndetails, and some notes on Python and Cython development. If you want to\nlearn about using \u00d8MQ in general, the excellent [\u00d8MQ\nGuide](http://zguide.zeromq.org/py:all) is the place to start, which has a\nPython version of every example. We also have some information on our\n[wiki](https://github.com/zeromq/pyzmq/wiki).\n\n## Downloading\n\nUnless you specifically want to develop PyZMQ, we recommend downloading\nthe PyZMQ source code or wheels from\n[PyPI](https://pypi.io/project/pyzmq/),\nor install with conda.\n\nYou can also get the latest source code from our GitHub repository, but\nbuilding from the repository will require that you install recent Cython.\n\n## Building and installation\n\nFor more detail on building pyzmq, see [our docs](https://pyzmq.readthedocs.io/en/latest/howto/build.html).\n\nWe build wheels for macOS, Windows, and Linux, so you can get a binary on those platforms with:\n\n```\npip install pyzmq\n```\n\nbut compiling from source with `pip install pyzmq` should work in most environments.\nMake sure you are using the latest pip, or it may not find the right wheels.\n\nIf the wheel doesn't work for some reason, or you want to force pyzmq to be compiled\n(this is often preferable if you already have libzmq installed and configured the way you want it),\nyou can force installation from source with:\n\n```\npip install --no-binary=pyzmq pyzmq\n```\n\n## Old versions\n\npyzmq 16 drops support Python 2.6 and 3.2.\nIf you need to use one of those Python versions, you can pin your pyzmq version to before 16:\n\n```\npip install 'pyzmq<16'\n```\n\nFor libzmq 2.0.x, use 'pyzmq\\<2.1'\n\npyzmq-2.1.11 was the last version of pyzmq to support Python 2.5,\nand pyzmq \u2265 2.2.0 requires Python \u2265 2.6.\npyzmq-13.0.0 introduces PyPy support via CFFI, which only supports libzmq-3.2.2 and newer.\n\nPyZMQ releases \u2264 2.2.0 matched libzmq versioning, but this is no longer the case,\nstarting with PyZMQ 13.0.0 (it was the thirteenth release, so why not?).\nPyZMQ \u2265 13.0 follows semantic versioning conventions accounting only for PyZMQ itself.\n",
    "bugtrack_url": null,
    "license": "BSD 3-Clause License  Copyright (c) 2009-2012, Brian Granger, Min Ragan-Kelley  All rights reserved.  Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:  1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.  2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.  3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.",
    "summary": "Python bindings for 0MQ",
    "version": "26.0.3",
    "project_urls": {
        "Documentation": "https://pyzmq.readthedocs.org",
        "Homepage": "https://pyzmq.readthedocs.org",
        "Source": "https://github.com/zeromq/pyzmq",
        "Tracker": "https://github.com/zeromq/pyzmq/issues"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "568175e659b02ed9b8e8675fd9e3d6e9e3b37860788f65829c2d521034f8b259",
                "md5": "df58054b03bdda97982289b3f14a15ef",
                "sha256": "44dd6fc3034f1eaa72ece33588867df9e006a7303725a12d64c3dff92330f625"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp310-cp310-macosx_10_15_universal2.whl",
            "has_sig": false,
            "md5_digest": "df58054b03bdda97982289b3f14a15ef",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1392625,
            "upload_time": "2024-05-01T15:32:03",
            "upload_time_iso_8601": "2024-05-01T15:32:03.883464Z",
            "url": "https://files.pythonhosted.org/packages/56/81/75e659b02ed9b8e8675fd9e3d6e9e3b37860788f65829c2d521034f8b259/pyzmq-26.0.3-cp310-cp310-macosx_10_15_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "da1b5ce0293717cf3a2c341501dd5a7456dde80b8f309dd727ccc64dcd5d34b7",
                "md5": "467632a1641e4b0419abed902da92418",
                "sha256": "acb704195a71ac5ea5ecf2811c9ee19ecdc62b91878528302dd0be1b9451cc90"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "467632a1641e4b0419abed902da92418",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1060044,
            "upload_time": "2024-05-01T15:32:06",
            "upload_time_iso_8601": "2024-05-01T15:32:06.899225Z",
            "url": "https://files.pythonhosted.org/packages/da/1b/5ce0293717cf3a2c341501dd5a7456dde80b8f309dd727ccc64dcd5d34b7/pyzmq-26.0.3-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "65e10e9d05cb6ddf7afa9c0cf9b207e355c9bcdb4b7414ce2787800b6c2f1eed",
                "md5": "2b63c0b80f4db117ce3e7f19c2583d00",
                "sha256": "5dbb9c997932473a27afa93954bb77a9f9b786b4ccf718d903f35da3232317de"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2b63c0b80f4db117ce3e7f19c2583d00",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 723684,
            "upload_time": "2024-05-01T15:32:09",
            "upload_time_iso_8601": "2024-05-01T15:32:09.069917Z",
            "url": "https://files.pythonhosted.org/packages/65/e1/0e9d05cb6ddf7afa9c0cf9b207e355c9bcdb4b7414ce2787800b6c2f1eed/pyzmq-26.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a5985f746e33fc3b5ee6699095d016102505e0730c5afc445c0f90a34062b685",
                "md5": "82875b3063d812971b64c9dd42545bdb",
                "sha256": "6bcb34f869d431799c3ee7d516554797f7760cb2198ecaa89c3f176f72d062be"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "82875b3063d812971b64c9dd42545bdb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 962416,
            "upload_time": "2024-05-01T15:32:11",
            "upload_time_iso_8601": "2024-05-01T15:32:11.111935Z",
            "url": "https://files.pythonhosted.org/packages/a5/98/5f746e33fc3b5ee6699095d016102505e0730c5afc445c0f90a34062b685/pyzmq-26.0.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c40f24ff63c1bc2cdbde7a703fcb35031d1bfa73f0e27e81235952c3b66636c6",
                "md5": "1b1957d51e1a6f7147cb44cefe2d9b43",
                "sha256": "38ece17ec5f20d7d9b442e5174ae9f020365d01ba7c112205a4d59cf19dc38ee"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1b1957d51e1a6f7147cb44cefe2d9b43",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 919841,
            "upload_time": "2024-05-01T15:32:13",
            "upload_time_iso_8601": "2024-05-01T15:32:13.175277Z",
            "url": "https://files.pythonhosted.org/packages/c4/0f/24ff63c1bc2cdbde7a703fcb35031d1bfa73f0e27e81235952c3b66636c6/pyzmq-26.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "404f088d0fe18b188a0754483b7d632a97ef608dce80c2648219d071c9f1715c",
                "md5": "1971e147f66c9fca3f1308df7f0ac5fb",
                "sha256": "ba6e5e6588e49139a0979d03a7deb9c734bde647b9a8808f26acf9c547cab1bf"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp310-cp310-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1971e147f66c9fca3f1308df7f0ac5fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 919801,
            "upload_time": "2024-05-01T15:32:14",
            "upload_time_iso_8601": "2024-05-01T15:32:14.905808Z",
            "url": "https://files.pythonhosted.org/packages/40/4f/088d0fe18b188a0754483b7d632a97ef608dce80c2648219d071c9f1715c/pyzmq-26.0.3-cp310-cp310-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ebf69911bcd104547396f48ed65f274624831fe4526380a292453dd87b95527c",
                "md5": "9e1c994c17a28f0298ecd57a846db6d6",
                "sha256": "3bf8b000a4e2967e6dfdd8656cd0757d18c7e5ce3d16339e550bd462f4857e59"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9e1c994c17a28f0298ecd57a846db6d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1254065,
            "upload_time": "2024-05-01T15:32:16",
            "upload_time_iso_8601": "2024-05-01T15:32:16.913419Z",
            "url": "https://files.pythonhosted.org/packages/eb/f6/9911bcd104547396f48ed65f274624831fe4526380a292453dd87b95527c/pyzmq-26.0.3-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e934bc58392501f1342232cae269afbaf290f1422098f3b8f685cf829e796c7b",
                "md5": "9066addd824bc7148bd673cfeba404f1",
                "sha256": "2136f64fbb86451dbbf70223635a468272dd20075f988a102bf8a3f194a411dc"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "9066addd824bc7148bd673cfeba404f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1565530,
            "upload_time": "2024-05-01T15:32:18",
            "upload_time_iso_8601": "2024-05-01T15:32:18.968591Z",
            "url": "https://files.pythonhosted.org/packages/e9/34/bc58392501f1342232cae269afbaf290f1422098f3b8f685cf829e796c7b/pyzmq-26.0.3-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8cad7e6e5a78735108dd691967593ddff1d24f8223d094a4683e3316da5a9fe1",
                "md5": "afec461db92746b22df8ff4180468af2",
                "sha256": "e8918973fbd34e7814f59143c5f600ecd38b8038161239fd1a3d33d5817a38b8"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "afec461db92746b22df8ff4180468af2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1465390,
            "upload_time": "2024-05-01T15:32:21",
            "upload_time_iso_8601": "2024-05-01T15:32:21.197193Z",
            "url": "https://files.pythonhosted.org/packages/8c/ad/7e6e5a78735108dd691967593ddff1d24f8223d094a4683e3316da5a9fe1/pyzmq-26.0.3-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "739d2aab0be1f9a82a46205294f74ca9f66f29482fe038ef6d7fd0963d97b3a7",
                "md5": "8e6355e87bb7c440b8e39b46e3a5f506",
                "sha256": "0aaf982e68a7ac284377d051c742610220fd06d330dcd4c4dbb4cdd77c22a537"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "8e6355e87bb7c440b8e39b46e3a5f506",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 681026,
            "upload_time": "2024-05-01T15:32:22",
            "upload_time_iso_8601": "2024-05-01T15:32:22.974417Z",
            "url": "https://files.pythonhosted.org/packages/73/9d/2aab0be1f9a82a46205294f74ca9f66f29482fe038ef6d7fd0963d97b3a7/pyzmq-26.0.3-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "85e7fd7f3564525f16460720c483ae3b9cc3bd3a3e7571bdbd1649e995a7d0e0",
                "md5": "c8f243db2e90fcc921bd154516c3c2ca",
                "sha256": "f1a9b7d00fdf60b4039f4455afd031fe85ee8305b019334b72dcf73c567edc47"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c8f243db2e90fcc921bd154516c3c2ca",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 773727,
            "upload_time": "2024-05-01T15:32:25",
            "upload_time_iso_8601": "2024-05-01T15:32:25.131466Z",
            "url": "https://files.pythonhosted.org/packages/85/e7/fd7f3564525f16460720c483ae3b9cc3bd3a3e7571bdbd1649e995a7d0e0/pyzmq-26.0.3-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2aa0fca2f7ad38d573d1421ac20597e5ddffd5625feb370bea32d760675f181f",
                "md5": "d521190d6d795ccb765d110d74b4482e",
                "sha256": "80b12f25d805a919d53efc0a5ad7c0c0326f13b4eae981a5d7b7cc343318ebb7"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp310-cp310-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "d521190d6d795ccb765d110d74b4482e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 862468,
            "upload_time": "2024-05-01T15:32:27",
            "upload_time_iso_8601": "2024-05-01T15:32:27.193230Z",
            "url": "https://files.pythonhosted.org/packages/2a/a0/fca2f7ad38d573d1421ac20597e5ddffd5625feb370bea32d760675f181f/pyzmq-26.0.3-cp310-cp310-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4b604e5170ffdf1720791752f09261a813efd5e59ec8ccf3e909d50d62a13b7d",
                "md5": "55e19bf9d96aa9af39bf363f594e6dad",
                "sha256": "a72a84570f84c374b4c287183debc776dc319d3e8ce6b6a0041ce2e400de3f32"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp311-cp311-macosx_10_15_universal2.whl",
            "has_sig": false,
            "md5_digest": "55e19bf9d96aa9af39bf363f594e6dad",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1393498,
            "upload_time": "2024-05-01T15:32:29",
            "upload_time_iso_8601": "2024-05-01T15:32:29.285427Z",
            "url": "https://files.pythonhosted.org/packages/4b/60/4e5170ffdf1720791752f09261a813efd5e59ec8ccf3e909d50d62a13b7d/pyzmq-26.0.3-cp311-cp311-macosx_10_15_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "33fae35e8c9e677604bbaa15e0f5887a5c0b031361ae25c6a3577c4720e106c2",
                "md5": "116cc2a00196a26c4ae4582ac4de9f97",
                "sha256": "7ca684ee649b55fd8f378127ac8462fb6c85f251c2fb027eb3c887e8ee347bcd"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "116cc2a00196a26c4ae4582ac4de9f97",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1060015,
            "upload_time": "2024-05-01T15:32:30",
            "upload_time_iso_8601": "2024-05-01T15:32:30.776803Z",
            "url": "https://files.pythonhosted.org/packages/33/fa/e35e8c9e677604bbaa15e0f5887a5c0b031361ae25c6a3577c4720e106c2/pyzmq-26.0.3-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e5b5625e45790a1b091f54d5d47fd267d051cabdec4f01144f6b2fcb7306515b",
                "md5": "3c114ca161f0480227edbb027d89afad",
                "sha256": "e222562dc0f38571c8b1ffdae9d7adb866363134299264a1958d077800b193b7"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3c114ca161f0480227edbb027d89afad",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 723307,
            "upload_time": "2024-05-01T15:32:32",
            "upload_time_iso_8601": "2024-05-01T15:32:32.911012Z",
            "url": "https://files.pythonhosted.org/packages/e5/b5/625e45790a1b091f54d5d47fd267d051cabdec4f01144f6b2fcb7306515b/pyzmq-26.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "84a58c81ad76e34e3b62a8c9e23dd14da01084284dbf0d4db20081859e3f7c77",
                "md5": "b6c752a97db4c0b1397bf202e390835a",
                "sha256": "f17cde1db0754c35a91ac00b22b25c11da6eec5746431d6e5092f0cd31a3fea9"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "b6c752a97db4c0b1397bf202e390835a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 960756,
            "upload_time": "2024-05-01T15:32:34",
            "upload_time_iso_8601": "2024-05-01T15:32:34.367310Z",
            "url": "https://files.pythonhosted.org/packages/84/a5/8c81ad76e34e3b62a8c9e23dd14da01084284dbf0d4db20081859e3f7c77/pyzmq-26.0.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c74102504160c5cc9d8dfe9afa5b7128ebbbc3e47933a4692197d23e601a171c",
                "md5": "6250c48d11e5f02739c4ccfa1ca51d54",
                "sha256": "4b7c0c0b3244bb2275abe255d4a30c050d541c6cb18b870975553f1fb6f37527"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6250c48d11e5f02739c4ccfa1ca51d54",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 918684,
            "upload_time": "2024-05-01T15:32:36",
            "upload_time_iso_8601": "2024-05-01T15:32:36.188761Z",
            "url": "https://files.pythonhosted.org/packages/c7/41/02504160c5cc9d8dfe9afa5b7128ebbbc3e47933a4692197d23e601a171c/pyzmq-26.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9b2092275f936eaa612f0192f8a02b2f66564e41498216f37a760501d2591149",
                "md5": "cfda0b7d77931922b06397b6042b0aa9",
                "sha256": "ac97a21de3712afe6a6c071abfad40a6224fd14fa6ff0ff8d0c6e6cd4e2f807a"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp311-cp311-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cfda0b7d77931922b06397b6042b0aa9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 919892,
            "upload_time": "2024-05-01T15:32:38",
            "upload_time_iso_8601": "2024-05-01T15:32:38.512903Z",
            "url": "https://files.pythonhosted.org/packages/9b/20/92275f936eaa612f0192f8a02b2f66564e41498216f37a760501d2591149/pyzmq-26.0.3-cp311-cp311-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e286827e3902f20e10b910587eaa8606e3ec3625fea112f5f2358be6ae624963",
                "md5": "a388a050fcd22c4dbbaf83d0575ae3d8",
                "sha256": "88b88282e55fa39dd556d7fc04160bcf39dea015f78e0cecec8ff4f06c1fc2b5"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a388a050fcd22c4dbbaf83d0575ae3d8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1254254,
            "upload_time": "2024-05-01T15:32:40",
            "upload_time_iso_8601": "2024-05-01T15:32:40.049170Z",
            "url": "https://files.pythonhosted.org/packages/e2/86/827e3902f20e10b910587eaa8606e3ec3625fea112f5f2358be6ae624963/pyzmq-26.0.3-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c5c8b94e4596547a4b136e62f9cc5acc7bed761b1facfa75cf643e5e162dccbc",
                "md5": "9b7193ba5e4e3647ee9554eb7b40bd20",
                "sha256": "72b67f966b57dbd18dcc7efbc1c7fc9f5f983e572db1877081f075004614fcdd"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "9b7193ba5e4e3647ee9554eb7b40bd20",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1565479,
            "upload_time": "2024-05-01T15:32:42",
            "upload_time_iso_8601": "2024-05-01T15:32:42.011536Z",
            "url": "https://files.pythonhosted.org/packages/c5/c8/b94e4596547a4b136e62f9cc5acc7bed761b1facfa75cf643e5e162dccbc/pyzmq-26.0.3-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b79db1fc9b8f75f8747c41fea246dac11690c470d7204849b6072abbd0339c4f",
                "md5": "203cea41da07b26ec56bf72a2681f368",
                "sha256": "f4b6cecbbf3b7380f3b61de3a7b93cb721125dc125c854c14ddc91225ba52f83"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "203cea41da07b26ec56bf72a2681f368",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1464884,
            "upload_time": "2024-05-01T15:32:43",
            "upload_time_iso_8601": "2024-05-01T15:32:43.680962Z",
            "url": "https://files.pythonhosted.org/packages/b7/9d/b1fc9b8f75f8747c41fea246dac11690c470d7204849b6072abbd0339c4f/pyzmq-26.0.3-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a5b59e06c10e4fd96cd1ff3f27a51638dd67b68ebd8f3e11995046392917272",
                "md5": "794aff6e9eb1d2573f45c8eaef5458d7",
                "sha256": "eed56b6a39216d31ff8cd2f1d048b5bf1700e4b32a01b14379c3b6dde9ce3aa3"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "794aff6e9eb1d2573f45c8eaef5458d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 679950,
            "upload_time": "2024-05-01T15:32:45",
            "upload_time_iso_8601": "2024-05-01T15:32:45.378061Z",
            "url": "https://files.pythonhosted.org/packages/4a/5b/59e06c10e4fd96cd1ff3f27a51638dd67b68ebd8f3e11995046392917272/pyzmq-26.0.3-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3f1120e8b114c197ead632bff8730593b5f249dd143ad71dfac9f639b354f309",
                "md5": "b9118e670ad6caacfcd23050f8fa0b76",
                "sha256": "3191d312c73e3cfd0f0afdf51df8405aafeb0bad71e7ed8f68b24b63c4f36500"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b9118e670ad6caacfcd23050f8fa0b76",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 774765,
            "upload_time": "2024-05-01T15:32:47",
            "upload_time_iso_8601": "2024-05-01T15:32:47.322722Z",
            "url": "https://files.pythonhosted.org/packages/3f/11/20e8b114c197ead632bff8730593b5f249dd143ad71dfac9f639b354f309/pyzmq-26.0.3-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5f9121de23e07510a0d4d5e4704e6e59edb8a69d1acfa4deac9bda18a53795d6",
                "md5": "770aadde9aaae72d03eb14cb78b3470d",
                "sha256": "b6907da3017ef55139cf0e417c5123a84c7332520e73a6902ff1f79046cd3b94"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp311-cp311-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "770aadde9aaae72d03eb14cb78b3470d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 862842,
            "upload_time": "2024-05-01T15:32:48",
            "upload_time_iso_8601": "2024-05-01T15:32:48.870411Z",
            "url": "https://files.pythonhosted.org/packages/5f/91/21de23e07510a0d4d5e4704e6e59edb8a69d1acfa4deac9bda18a53795d6/pyzmq-26.0.3-cp311-cp311-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "55b7022484adb5d034cce7088ddb1f33413f0459afab33ef79dda7786800181f",
                "md5": "384440a20b25e04213544e390c94db24",
                "sha256": "068ca17214038ae986d68f4a7021f97e187ed278ab6dccb79f837d765a54d753"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp312-cp312-macosx_10_15_universal2.whl",
            "has_sig": false,
            "md5_digest": "384440a20b25e04213544e390c94db24",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1395414,
            "upload_time": "2024-05-01T15:32:50",
            "upload_time_iso_8601": "2024-05-01T15:32:50.480853Z",
            "url": "https://files.pythonhosted.org/packages/55/b7/022484adb5d034cce7088ddb1f33413f0459afab33ef79dda7786800181f/pyzmq-26.0.3-cp312-cp312-macosx_10_15_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4062d7ef3116ef6c1a9d20fab318a4784af631f2c3e910a8ac83a667409da4aa",
                "md5": "e96c73891a74f826376cad651817581a",
                "sha256": "7821d44fe07335bea256b9f1f41474a642ca55fa671dfd9f00af8d68a920c2d4"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e96c73891a74f826376cad651817581a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1059354,
            "upload_time": "2024-05-01T15:32:52",
            "upload_time_iso_8601": "2024-05-01T15:32:52.343730Z",
            "url": "https://files.pythonhosted.org/packages/40/62/d7ef3116ef6c1a9d20fab318a4784af631f2c3e910a8ac83a667409da4aa/pyzmq-26.0.3-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b3380d9c0a06324de83a7c97ab036901ac2a5e8cff5ff94f64aaec29ae7895d0",
                "md5": "13dff3c9b6ce2b2bea7bb4e9037124d9",
                "sha256": "eeb438a26d87c123bb318e5f2b3d86a36060b01f22fbdffd8cf247d52f7c9a2b"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "13dff3c9b6ce2b2bea7bb4e9037124d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 715781,
            "upload_time": "2024-05-01T15:32:54",
            "upload_time_iso_8601": "2024-05-01T15:32:54.233717Z",
            "url": "https://files.pythonhosted.org/packages/b3/38/0d9c0a06324de83a7c97ab036901ac2a5e8cff5ff94f64aaec29ae7895d0/pyzmq-26.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "efb095f3fd00b99756018f38d2f46d3a8486ab28705272c8b1a61e7da17c0fc3",
                "md5": "52e6ba470fcb1fc95437feb730dfa165",
                "sha256": "69ea9d6d9baa25a4dc9cef5e2b77b8537827b122214f210dd925132e34ae9b12"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "52e6ba470fcb1fc95437feb730dfa165",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 953936,
            "upload_time": "2024-05-01T15:32:56",
            "upload_time_iso_8601": "2024-05-01T15:32:56.039790Z",
            "url": "https://files.pythonhosted.org/packages/ef/b0/95f3fd00b99756018f38d2f46d3a8486ab28705272c8b1a61e7da17c0fc3/pyzmq-26.0.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "de77ee4c919eac01567c70f41aba5a80e46bfa9b231de4585672caa5ac2398d5",
                "md5": "c82acf67bd12d0760ee8560c81e26df3",
                "sha256": "7daa3e1369355766dea11f1d8ef829905c3b9da886ea3152788dc25ee6079e02"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c82acf67bd12d0760ee8560c81e26df3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 910562,
            "upload_time": "2024-05-01T15:32:57",
            "upload_time_iso_8601": "2024-05-01T15:32:57.892968Z",
            "url": "https://files.pythonhosted.org/packages/de/77/ee4c919eac01567c70f41aba5a80e46bfa9b231de4585672caa5ac2398d5/pyzmq-26.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4ec07d2549581c074ac1016cc44a1f34d080c0a598c7b86747892012d1a04f0c",
                "md5": "3bf7733c9a4b09beeae148afae4d7098",
                "sha256": "6ca7a9a06b52d0e38ccf6bca1aeff7be178917893f3883f37b75589d42c4ac20"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp312-cp312-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3bf7733c9a4b09beeae148afae4d7098",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 911017,
            "upload_time": "2024-05-01T15:33:00",
            "upload_time_iso_8601": "2024-05-01T15:33:00.209872Z",
            "url": "https://files.pythonhosted.org/packages/4e/c0/7d2549581c074ac1016cc44a1f34d080c0a598c7b86747892012d1a04f0c/pyzmq-26.0.3-cp312-cp312-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0a3a34886bb2268b5464287a831808fc67e0d833eb4d85a17ec29a5eb27cadad",
                "md5": "af4a2f01945e3930cc99071e1503586b",
                "sha256": "1b7d0e124948daa4d9686d421ef5087c0516bc6179fdcf8828b8444f8e461a77"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "af4a2f01945e3930cc99071e1503586b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1246937,
            "upload_time": "2024-05-01T15:33:02",
            "upload_time_iso_8601": "2024-05-01T15:33:02.321832Z",
            "url": "https://files.pythonhosted.org/packages/0a/3a/34886bb2268b5464287a831808fc67e0d833eb4d85a17ec29a5eb27cadad/pyzmq-26.0.3-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2392a8f2f2f3db81a95676c4ed9e9ca733e5c5d65130228a39ddc6a719bad7ad",
                "md5": "6b919eb14b6675bf7d7dd6ecb8065138",
                "sha256": "e746524418b70f38550f2190eeee834db8850088c834d4c8406fbb9bc1ae10b2"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "6b919eb14b6675bf7d7dd6ecb8065138",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1557915,
            "upload_time": "2024-05-01T15:33:04",
            "upload_time_iso_8601": "2024-05-01T15:33:04.751603Z",
            "url": "https://files.pythonhosted.org/packages/23/92/a8f2f2f3db81a95676c4ed9e9ca733e5c5d65130228a39ddc6a719bad7ad/pyzmq-26.0.3-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "79db4509fc43f8eea556626690dcefc35cf29d394dde9b38213641e64ac1ebec",
                "md5": "dd024a1ac3832566c6971b5d648b102d",
                "sha256": "6b3146f9ae6af82c47a5282ac8803523d381b3b21caeae0327ed2f7ecb718798"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dd024a1ac3832566c6971b5d648b102d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1457027,
            "upload_time": "2024-05-01T15:33:06",
            "upload_time_iso_8601": "2024-05-01T15:33:06.754083Z",
            "url": "https://files.pythonhosted.org/packages/79/db/4509fc43f8eea556626690dcefc35cf29d394dde9b38213641e64ac1ebec/pyzmq-26.0.3-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "76e269fce04f1c7d6767c05dc9f83c8bbb915209f6eb245d04109b2d4ada3c12",
                "md5": "5f06dbad0aa47244e03884d8905d2fe9",
                "sha256": "2b291d1230845871c00c8462c50565a9cd6026fe1228e77ca934470bb7d70ea0"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "5f06dbad0aa47244e03884d8905d2fe9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 678713,
            "upload_time": "2024-05-01T15:33:08",
            "upload_time_iso_8601": "2024-05-01T15:33:08.249792Z",
            "url": "https://files.pythonhosted.org/packages/76/e2/69fce04f1c7d6767c05dc9f83c8bbb915209f6eb245d04109b2d4ada3c12/pyzmq-26.0.3-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6c45905ec497208808aa0ba2470b2ab36d779b53f4016617feca93baffb6ba7f",
                "md5": "17a556223f6ebf2c2bdd9a7f1790c27d",
                "sha256": "926838a535c2c1ea21c903f909a9a54e675c2126728c21381a94ddf37c3cbddf"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "17a556223f6ebf2c2bdd9a7f1790c27d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 770140,
            "upload_time": "2024-05-01T15:33:10",
            "upload_time_iso_8601": "2024-05-01T15:33:10.628000Z",
            "url": "https://files.pythonhosted.org/packages/6c/45/905ec497208808aa0ba2470b2ab36d779b53f4016617feca93baffb6ba7f/pyzmq-26.0.3-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f6213becf31685c26c455cd1b5b4ba4bd46a07fdd38e735aa3f41d9b6beb4a9a",
                "md5": "732052d588a9ed477b3417fff68f15f7",
                "sha256": "5bf6c237f8c681dfb91b17f8435b2735951f0d1fad10cc5dfd96db110243370b"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp312-cp312-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "732052d588a9ed477b3417fff68f15f7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 859695,
            "upload_time": "2024-05-01T15:33:12",
            "upload_time_iso_8601": "2024-05-01T15:33:12.360381Z",
            "url": "https://files.pythonhosted.org/packages/f6/21/3becf31685c26c455cd1b5b4ba4bd46a07fdd38e735aa3f41d9b6beb4a9a/pyzmq-26.0.3-cp312-cp312-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7fd6ede4df566e890dbf0c53330557e8a2f57780049649fab36cd67f4aee211d",
                "md5": "40f64b6209a771e5e88b6a1a3f46771d",
                "sha256": "0c0991f5a96a8e620f7691e61178cd8f457b49e17b7d9cfa2067e2a0a89fc1d5"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "40f64b6209a771e5e88b6a1a3f46771d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1057718,
            "upload_time": "2024-05-01T15:33:14",
            "upload_time_iso_8601": "2024-05-01T15:33:14.060299Z",
            "url": "https://files.pythonhosted.org/packages/7f/d6/ede4df566e890dbf0c53330557e8a2f57780049649fab36cd67f4aee211d/pyzmq-26.0.3-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "58931ad68e657f84159800bf46a6c36348220960cfa49999ed7e8abd165dad04",
                "md5": "e34b5718c9fd4625657ad9a8a4a5a898",
                "sha256": "dbf012d8fcb9f2cf0643b65df3b355fdd74fc0035d70bb5c845e9e30a3a4654b"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "e34b5718c9fd4625657ad9a8a4a5a898",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 957067,
            "upload_time": "2024-05-01T15:33:16",
            "upload_time_iso_8601": "2024-05-01T15:33:16.243588Z",
            "url": "https://files.pythonhosted.org/packages/58/93/1ad68e657f84159800bf46a6c36348220960cfa49999ed7e8abd165dad04/pyzmq-26.0.3-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b3dc652c216779bf7d6143ebaa463003ad536e6f7cc32a841771309332e6b8e3",
                "md5": "9442d80a9c741de04e0fbaf084a61b79",
                "sha256": "01fbfbeb8249a68d257f601deb50c70c929dc2dfe683b754659569e502fbd3aa"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9442d80a9c741de04e0fbaf084a61b79",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 908960,
            "upload_time": "2024-05-01T15:33:18",
            "upload_time_iso_8601": "2024-05-01T15:33:18.715313Z",
            "url": "https://files.pythonhosted.org/packages/b3/dc/652c216779bf7d6143ebaa463003ad536e6f7cc32a841771309332e6b8e3/pyzmq-26.0.3-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e3a86a7580ce2c497f82f3eca2de2d2e9a312fafac8c53a3ba1b7a9ef5a6769a",
                "md5": "9c8886e09438d833340b438bb031d430",
                "sha256": "1c8eb19abe87029c18f226d42b8a2c9efdd139d08f8bf6e085dd9075446db450"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9c8886e09438d833340b438bb031d430",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 723433,
            "upload_time": "2024-05-01T15:33:20",
            "upload_time_iso_8601": "2024-05-01T15:33:20.720709Z",
            "url": "https://files.pythonhosted.org/packages/e3/a8/6a7580ce2c497f82f3eca2de2d2e9a312fafac8c53a3ba1b7a9ef5a6769a/pyzmq-26.0.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f9df846c90d1c230d1baa81118130fb900395c51f7e2036d0c2a590728c79e9a",
                "md5": "06ed271a622d9bcc6059fd00fe69b7e3",
                "sha256": "5344b896e79800af86ad643408ca9aa303a017f6ebff8cee5a3163c1e9aec987"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "06ed271a622d9bcc6059fd00fe69b7e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1256840,
            "upload_time": "2024-05-01T15:33:22",
            "upload_time_iso_8601": "2024-05-01T15:33:22.458736Z",
            "url": "https://files.pythonhosted.org/packages/f9/df/846c90d1c230d1baa81118130fb900395c51f7e2036d0c2a590728c79e9a/pyzmq-26.0.3-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eed97bbb276d659f124735dbaa39dafecaa6d7fd6c681cfa5c0bc87751312c5e",
                "md5": "92a491b3bcf3c6ae43ab1756d5b9bb1c",
                "sha256": "204e0f176fd1d067671157d049466869b3ae1fc51e354708b0dc41cf94e23a3a"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "92a491b3bcf3c6ae43ab1756d5b9bb1c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1566810,
            "upload_time": "2024-05-01T15:33:24",
            "upload_time_iso_8601": "2024-05-01T15:33:24.132195Z",
            "url": "https://files.pythonhosted.org/packages/ee/d9/7bbb276d659f124735dbaa39dafecaa6d7fd6c681cfa5c0bc87751312c5e/pyzmq-26.0.3-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3dac5f2adbca1874c0b18815e30a64aa96be85f20e3a18347289d8ed6d8f1037",
                "md5": "a2bf0e26d5dceddc497bb3b8c2b01155",
                "sha256": "a42db008d58530efa3b881eeee4991146de0b790e095f7ae43ba5cc612decbc5"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a2bf0e26d5dceddc497bb3b8c2b01155",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1465895,
            "upload_time": "2024-05-01T15:33:26",
            "upload_time_iso_8601": "2024-05-01T15:33:26.208805Z",
            "url": "https://files.pythonhosted.org/packages/3d/ac/5f2adbca1874c0b18815e30a64aa96be85f20e3a18347289d8ed6d8f1037/pyzmq-26.0.3-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7541126d3ae28225d1178691013a177b40903cd9a9088779ff972dd9b7d0099a",
                "md5": "84e93885842b6be5b7f124085e11785b",
                "sha256": "8d7a498671ca87e32b54cb47c82a92b40130a26c5197d392720a1bce1b3c77cf"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "84e93885842b6be5b7f124085e11785b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 681076,
            "upload_time": "2024-05-01T15:33:28",
            "upload_time_iso_8601": "2024-05-01T15:33:28.105761Z",
            "url": "https://files.pythonhosted.org/packages/75/41/126d3ae28225d1178691013a177b40903cd9a9088779ff972dd9b7d0099a/pyzmq-26.0.3-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2b67f6569c49cf522594ab155487755a0c21b1682f2038466d0a3de6b7efaec1",
                "md5": "62db243f9d815a250a5659e68dd1e30a",
                "sha256": "3b4032a96410bdc760061b14ed6a33613ffb7f702181ba999df5d16fb96ba16a"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "62db243f9d815a250a5659e68dd1e30a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 799900,
            "upload_time": "2024-05-01T15:33:30",
            "upload_time_iso_8601": "2024-05-01T15:33:30.205043Z",
            "url": "https://files.pythonhosted.org/packages/2b/67/f6569c49cf522594ab155487755a0c21b1682f2038466d0a3de6b7efaec1/pyzmq-26.0.3-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "848eb51abddf5ccc0a2c330a9ac570ec4c41583d3a1c97e955b76d230b609e6e",
                "md5": "41ec32a925ead6ef99baf2a00437bf37",
                "sha256": "2cc4e280098c1b192c42a849de8de2c8e0f3a84086a76ec5b07bfee29bda7d18"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp38-cp38-macosx_10_15_universal2.whl",
            "has_sig": false,
            "md5_digest": "41ec32a925ead6ef99baf2a00437bf37",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1392960,
            "upload_time": "2024-05-01T15:33:32",
            "upload_time_iso_8601": "2024-05-01T15:33:32.697474Z",
            "url": "https://files.pythonhosted.org/packages/84/8e/b51abddf5ccc0a2c330a9ac570ec4c41583d3a1c97e955b76d230b609e6e/pyzmq-26.0.3-cp38-cp38-macosx_10_15_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "71042d3ad27df7408c8d35123bc3ffad998deef223b562160f07f6ae1e42fb36",
                "md5": "f0f041168dda886c3aa568e2509f34be",
                "sha256": "5bde86a2ed3ce587fa2b207424ce15b9a83a9fa14422dcc1c5356a13aed3df9d"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f0f041168dda886c3aa568e2509f34be",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1059377,
            "upload_time": "2024-05-01T15:33:34",
            "upload_time_iso_8601": "2024-05-01T15:33:34.423083Z",
            "url": "https://files.pythonhosted.org/packages/71/04/2d3ad27df7408c8d35123bc3ffad998deef223b562160f07f6ae1e42fb36/pyzmq-26.0.3-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e28ee0e1035e80854794bb766b3f2c81fea3d89def4b6e06574f2d8cf411cb5d",
                "md5": "6bae0e45eb5c8b8e3ab69e00ea8dfdf0",
                "sha256": "34106f68e20e6ff253c9f596ea50397dbd8699828d55e8fa18bd4323d8d966e6"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "6bae0e45eb5c8b8e3ab69e00ea8dfdf0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 958317,
            "upload_time": "2024-05-01T15:33:36",
            "upload_time_iso_8601": "2024-05-01T15:33:36.975033Z",
            "url": "https://files.pythonhosted.org/packages/e2/8e/e0e1035e80854794bb766b3f2c81fea3d89def4b6e06574f2d8cf411cb5d/pyzmq-26.0.3-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "494b01c0d1e8279a12dd40b690fd41b1f078d551631fa650351a5d6748c01a8d",
                "md5": "801abc7fe1fb6b2fc04b2475242ded86",
                "sha256": "ebbbd0e728af5db9b04e56389e2299a57ea8b9dd15c9759153ee2455b32be6ad"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "801abc7fe1fb6b2fc04b2475242ded86",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 912770,
            "upload_time": "2024-05-01T15:33:38",
            "upload_time_iso_8601": "2024-05-01T15:33:38.790872Z",
            "url": "https://files.pythonhosted.org/packages/49/4b/01c0d1e8279a12dd40b690fd41b1f078d551631fa650351a5d6748c01a8d/pyzmq-26.0.3-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "01fff6dee688fe845f213a9feebf3aae3a2bc9a6e4b3086fb3d1f23472f1c5d0",
                "md5": "441838b9a48167cd167c40d954485efa",
                "sha256": "f6b1d1c631e5940cac5a0b22c5379c86e8df6a4ec277c7a856b714021ab6cfad"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "441838b9a48167cd167c40d954485efa",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 724564,
            "upload_time": "2024-05-01T15:33:40",
            "upload_time_iso_8601": "2024-05-01T15:33:40.584334Z",
            "url": "https://files.pythonhosted.org/packages/01/ff/f6dee688fe845f213a9feebf3aae3a2bc9a6e4b3086fb3d1f23472f1c5d0/pyzmq-26.0.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7dfc0401ca39c31c0d3a29beaa7d0f4428bbf13eea09bbab352872f10eebc797",
                "md5": "ee6c12fdccb38c7fff477ff32576de71",
                "sha256": "e891ce81edd463b3b4c3b885c5603c00141151dd9c6936d98a680c8c72fe5c67"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ee6c12fdccb38c7fff477ff32576de71",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1257295,
            "upload_time": "2024-05-01T15:33:42",
            "upload_time_iso_8601": "2024-05-01T15:33:42.288330Z",
            "url": "https://files.pythonhosted.org/packages/7d/fc/0401ca39c31c0d3a29beaa7d0f4428bbf13eea09bbab352872f10eebc797/pyzmq-26.0.3-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "10deac4267080805b2df0e97ce5a10515af108b71fa725c637457db2bc1517d1",
                "md5": "c352999dad6a8a7c1e7bace84fa6eabd",
                "sha256": "9b273ecfbc590a1b98f014ae41e5cf723932f3b53ba9367cfb676f838038b32c"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "c352999dad6a8a7c1e7bace84fa6eabd",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1566613,
            "upload_time": "2024-05-01T15:33:43",
            "upload_time_iso_8601": "2024-05-01T15:33:43.951233Z",
            "url": "https://files.pythonhosted.org/packages/10/de/ac4267080805b2df0e97ce5a10515af108b71fa725c637457db2bc1517d1/pyzmq-26.0.3-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e6f8dbbd6b02524ff5a36983b1e6bcf6eca1f1816e70f2afe653f1c755fe0a28",
                "md5": "abda6399a5b2ff077eafc7e65b8f96a7",
                "sha256": "b32bff85fb02a75ea0b68f21e2412255b5731f3f389ed9aecc13a6752f58ac97"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "abda6399a5b2ff077eafc7e65b8f96a7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1468256,
            "upload_time": "2024-05-01T15:33:45",
            "upload_time_iso_8601": "2024-05-01T15:33:45.766071Z",
            "url": "https://files.pythonhosted.org/packages/e6/f8/dbbd6b02524ff5a36983b1e6bcf6eca1f1816e70f2afe653f1c755fe0a28/pyzmq-26.0.3-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9b9b88891279f292e1f1402fbc817efd643235e2f0f5e84f36e11242d802f917",
                "md5": "7b240484db73d7b634d3e311292dcc4d",
                "sha256": "f6c21c00478a7bea93caaaef9e7629145d4153b15a8653e8bb4609d4bc70dbfc"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "7b240484db73d7b634d3e311292dcc4d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 681706,
            "upload_time": "2024-05-01T15:33:47",
            "upload_time_iso_8601": "2024-05-01T15:33:47.477250Z",
            "url": "https://files.pythonhosted.org/packages/9b/9b/88891279f292e1f1402fbc817efd643235e2f0f5e84f36e11242d802f917/pyzmq-26.0.3-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d6ddf288efb66810aabdab54cc347a2271ce43c6ed851ba0e051464f2b8f2f55",
                "md5": "4396cb86c2fc73b8c55fb3e464c71adc",
                "sha256": "3401613148d93ef0fd9aabdbddb212de3db7a4475367f49f590c837355343972"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4396cb86c2fc73b8c55fb3e464c71adc",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 801731,
            "upload_time": "2024-05-01T15:33:49",
            "upload_time_iso_8601": "2024-05-01T15:33:49.450797Z",
            "url": "https://files.pythonhosted.org/packages/d6/dd/f288efb66810aabdab54cc347a2271ce43c6ed851ba0e051464f2b8f2f55/pyzmq-26.0.3-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "327f77324143424424b8dccd5f0e2ec5676f388667d1b38f9c4b30cdb706fef1",
                "md5": "88ff37e709b49e5b3ca0505eb4721c11",
                "sha256": "2ed8357f4c6e0daa4f3baf31832df8a33334e0fe5b020a61bc8b345a3db7a606"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp39-cp39-macosx_10_15_universal2.whl",
            "has_sig": false,
            "md5_digest": "88ff37e709b49e5b3ca0505eb4721c11",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1393998,
            "upload_time": "2024-05-01T15:33:51",
            "upload_time_iso_8601": "2024-05-01T15:33:51.016847Z",
            "url": "https://files.pythonhosted.org/packages/32/7f/77324143424424b8dccd5f0e2ec5676f388667d1b38f9c4b30cdb706fef1/pyzmq-26.0.3-cp39-cp39-macosx_10_15_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b908d643b44c022a738bdfb700a45335fae634537fe8b7e86cfed6c3a2ca86de",
                "md5": "003412e3e27ae502435fd179f8c181c9",
                "sha256": "c1c8f2a2ca45292084c75bb6d3a25545cff0ed931ed228d3a1810ae3758f975f"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "003412e3e27ae502435fd179f8c181c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1060624,
            "upload_time": "2024-05-01T15:33:52",
            "upload_time_iso_8601": "2024-05-01T15:33:52.928195Z",
            "url": "https://files.pythonhosted.org/packages/b9/08/d643b44c022a738bdfb700a45335fae634537fe8b7e86cfed6c3a2ca86de/pyzmq-26.0.3-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5b223c5bdfd6eb587574b7d52af75634818becbcc6dada874c8c00b9a75fd569",
                "md5": "db2cb384643ccb7f8a7a7bfe5bdfa344",
                "sha256": "b63731993cdddcc8e087c64e9cf003f909262b359110070183d7f3025d1c56b5"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "db2cb384643ccb7f8a7a7bfe5bdfa344",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 958346,
            "upload_time": "2024-05-01T15:33:54",
            "upload_time_iso_8601": "2024-05-01T15:33:54.791840Z",
            "url": "https://files.pythonhosted.org/packages/5b/22/3c5bdfd6eb587574b7d52af75634818becbcc6dada874c8c00b9a75fd569/pyzmq-26.0.3-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "64b81c181c13e118cabccfd25bd3e169e44958c649180b0d78b798a66899e08b",
                "md5": "5ed5e07e9d0839f59c3a270ab0015684",
                "sha256": "b3cd31f859b662ac5d7f4226ec7d8bd60384fa037fc02aee6ff0b53ba29a3ba8"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5ed5e07e9d0839f59c3a270ab0015684",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 912754,
            "upload_time": "2024-05-01T15:33:56",
            "upload_time_iso_8601": "2024-05-01T15:33:56.659747Z",
            "url": "https://files.pythonhosted.org/packages/64/b8/1c181c13e118cabccfd25bd3e169e44958c649180b0d78b798a66899e08b/pyzmq-26.0.3-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f10cd881e64c831ce1c250e637e4f033b9fb8628844f0e02913e4e21f701087",
                "md5": "68f8a6ba6af06c20a04de86881d2d0cc",
                "sha256": "115f8359402fa527cf47708d6f8a0f8234f0e9ca0cab7c18c9c189c194dbf620"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "68f8a6ba6af06c20a04de86881d2d0cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 724227,
            "upload_time": "2024-05-01T15:33:58",
            "upload_time_iso_8601": "2024-05-01T15:33:58.360336Z",
            "url": "https://files.pythonhosted.org/packages/8f/10/cd881e64c831ce1c250e637e4f033b9fb8628844f0e02913e4e21f701087/pyzmq-26.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dacfb0060122c875570923d097a8e788c5176930ba712c641501e1d155f2089b",
                "md5": "5626f93c82d73ec52b8fe6ed72f34a92",
                "sha256": "715bdf952b9533ba13dfcf1f431a8f49e63cecc31d91d007bc1deb914f47d0e4"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5626f93c82d73ec52b8fe6ed72f34a92",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1254783,
            "upload_time": "2024-05-01T15:34:00",
            "upload_time_iso_8601": "2024-05-01T15:34:00.176727Z",
            "url": "https://files.pythonhosted.org/packages/da/cf/b0060122c875570923d097a8e788c5176930ba712c641501e1d155f2089b/pyzmq-26.0.3-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "783a9928f73afe1f1a336bfa1bd405b235c169097c8f0d10387c1419a8ecfb37",
                "md5": "9262e7338345b57eaf3704da3561dd97",
                "sha256": "e1258c639e00bf5e8a522fec6c3eaa3e30cf1c23a2f21a586be7e04d50c9acab"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "9262e7338345b57eaf3704da3561dd97",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1566288,
            "upload_time": "2024-05-01T15:34:02",
            "upload_time_iso_8601": "2024-05-01T15:34:02.425870Z",
            "url": "https://files.pythonhosted.org/packages/78/3a/9928f73afe1f1a336bfa1bd405b235c169097c8f0d10387c1419a8ecfb37/pyzmq-26.0.3-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b9f016d39b44849728abba22b7171787758cae20c30602911c17199f51afe4ec",
                "md5": "31b770a955465eb78b1a3f983784bc9d",
                "sha256": "15c59e780be8f30a60816a9adab900c12a58d79c1ac742b4a8df044ab2a6d920"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "31b770a955465eb78b1a3f983784bc9d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1466141,
            "upload_time": "2024-05-01T15:34:04",
            "upload_time_iso_8601": "2024-05-01T15:34:04.627745Z",
            "url": "https://files.pythonhosted.org/packages/b9/f0/16d39b44849728abba22b7171787758cae20c30602911c17199f51afe4ec/pyzmq-26.0.3-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6d1c4ebba66628b96f50e3742c1373a5e8f952d8709d3f7587ded91ce4fb58b1",
                "md5": "d8b4b58c5a7df236da5df6417afc7a0f",
                "sha256": "d0cdde3c78d8ab5b46595054e5def32a755fc028685add5ddc7403e9f6de9879"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "d8b4b58c5a7df236da5df6417afc7a0f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 682158,
            "upload_time": "2024-05-01T15:34:06",
            "upload_time_iso_8601": "2024-05-01T15:34:06.808687Z",
            "url": "https://files.pythonhosted.org/packages/6d/1c/4ebba66628b96f50e3742c1373a5e8f952d8709d3f7587ded91ce4fb58b1/pyzmq-26.0.3-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "98b0d4c5120e5d3655b18d9eb6bdc3432153172f63ce85393f89d572e2527fe2",
                "md5": "ee24b103c21b196de84803fd230a6c6e",
                "sha256": "ce828058d482ef860746bf532822842e0ff484e27f540ef5c813d516dd8896d2"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ee24b103c21b196de84803fd230a6c6e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 774825,
            "upload_time": "2024-05-01T15:34:08",
            "upload_time_iso_8601": "2024-05-01T15:34:08.987191Z",
            "url": "https://files.pythonhosted.org/packages/98/b0/d4c5120e5d3655b18d9eb6bdc3432153172f63ce85393f89d572e2527fe2/pyzmq-26.0.3-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "99c3912ada694171cde952b45798aa0a5755910a978ecdd880d8ed0092c775f4",
                "md5": "626671b8bca7e89424be174898006502",
                "sha256": "788f15721c64109cf720791714dc14afd0f449d63f3a5487724f024345067381"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-cp39-cp39-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "626671b8bca7e89424be174898006502",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 863470,
            "upload_time": "2024-05-01T15:34:10",
            "upload_time_iso_8601": "2024-05-01T15:34:10.653506Z",
            "url": "https://files.pythonhosted.org/packages/99/c3/912ada694171cde952b45798aa0a5755910a978ecdd880d8ed0092c775f4/pyzmq-26.0.3-cp39-cp39-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fb7ab88317d85b3c1d5fe57bfa8c20b84d9b26351ac24e3a6aaf1394f958a130",
                "md5": "12717f940b34bcfdcc80a8f53a7421c8",
                "sha256": "2c18645ef6294d99b256806e34653e86236eb266278c8ec8112622b61db255de"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "12717f940b34bcfdcc80a8f53a7421c8",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 958123,
            "upload_time": "2024-05-01T15:34:12",
            "upload_time_iso_8601": "2024-05-01T15:34:12.813166Z",
            "url": "https://files.pythonhosted.org/packages/fb/7a/b88317d85b3c1d5fe57bfa8c20b84d9b26351ac24e3a6aaf1394f958a130/pyzmq-26.0.3-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "337916f68cef4d8b5be599385ef6a679954f1be54b032d93724bc8b561f7a293",
                "md5": "d598aa91ef8dc3c3980e21e7827055b4",
                "sha256": "7e6bc96ebe49604df3ec2c6389cc3876cabe475e6bfc84ced1bf4e630662cb35"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d598aa91ef8dc3c3980e21e7827055b4",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 616285,
            "upload_time": "2024-05-01T15:34:14",
            "upload_time_iso_8601": "2024-05-01T15:34:14.861845Z",
            "url": "https://files.pythonhosted.org/packages/33/79/16f68cef4d8b5be599385ef6a679954f1be54b032d93724bc8b561f7a293/pyzmq-26.0.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9e9c6f837ba9a123a2fdaf73d0f0e715a2736ab69f0e881d754502dda10933e4",
                "md5": "e9450852cc9f7d503e3716a97cf37f5a",
                "sha256": "971e8990c5cc4ddcff26e149398fc7b0f6a042306e82500f5e8db3b10ce69f84"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e9450852cc9f7d503e3716a97cf37f5a",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 845193,
            "upload_time": "2024-05-01T15:34:17",
            "upload_time_iso_8601": "2024-05-01T15:34:17.443076Z",
            "url": "https://files.pythonhosted.org/packages/9e/9c/6f837ba9a123a2fdaf73d0f0e715a2736ab69f0e881d754502dda10933e4/pyzmq-26.0.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "49ccffcef67f96ee7e4d2b3a2f46e1a4fa8f3b45c294aad5a7b43be39154af45",
                "md5": "45351ca8bff8d6789df1e1a34885bb53",
                "sha256": "d8416c23161abd94cc7da80c734ad7c9f5dbebdadfdaa77dad78244457448223"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "45351ca8bff8d6789df1e1a34885bb53",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 803663,
            "upload_time": "2024-05-01T15:34:19",
            "upload_time_iso_8601": "2024-05-01T15:34:19.284244Z",
            "url": "https://files.pythonhosted.org/packages/49/cc/ffcef67f96ee7e4d2b3a2f46e1a4fa8f3b45c294aad5a7b43be39154af45/pyzmq-26.0.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "70f9a3ec923e9b32d6579ac74f1894c2f71a7fbf38fcc35ae96db9c709f875fa",
                "md5": "4e68ee94c344eb1671331f7f14a8a842",
                "sha256": "082a2988364b60bb5de809373098361cf1dbb239623e39e46cb18bc035ed9c0c"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4e68ee94c344eb1671331f7f14a8a842",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 708704,
            "upload_time": "2024-05-01T15:34:21",
            "upload_time_iso_8601": "2024-05-01T15:34:21.027829Z",
            "url": "https://files.pythonhosted.org/packages/70/f9/a3ec923e9b32d6579ac74f1894c2f71a7fbf38fcc35ae96db9c709f875fa/pyzmq-26.0.3-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a439017e7029b85f9a05144721163edd248bac2beefdfe0d7fbbf791244edc66",
                "md5": "fb71c6dd723e4a2288f264d6797074df",
                "sha256": "d57dfbf9737763b3a60d26e6800e02e04284926329aee8fb01049635e957fe81"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fb71c6dd723e4a2288f264d6797074df",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 958117,
            "upload_time": "2024-05-01T15:34:22",
            "upload_time_iso_8601": "2024-05-01T15:34:22.805578Z",
            "url": "https://files.pythonhosted.org/packages/a4/39/017e7029b85f9a05144721163edd248bac2beefdfe0d7fbbf791244edc66/pyzmq-26.0.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "29e8f0cf024fb93620ad4ebc92feb672a10046ef404276de33c721e819391a6b",
                "md5": "72c78bd8a8397607f93d89d404ad11dc",
                "sha256": "77a85dca4c2430ac04dc2a2185c2deb3858a34fe7f403d0a946fa56970cf60a1"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "72c78bd8a8397607f93d89d404ad11dc",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 852933,
            "upload_time": "2024-05-01T15:34:24",
            "upload_time_iso_8601": "2024-05-01T15:34:24.861708Z",
            "url": "https://files.pythonhosted.org/packages/29/e8/f0cf024fb93620ad4ebc92feb672a10046ef404276de33c721e819391a6b/pyzmq-26.0.3-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "60900d6597787eb1bd27b7d9ea4d7dbf86383c882aab97df9138b5faa376592b",
                "md5": "dfd1f5040ae443422f958112e88fdffe",
                "sha256": "4c82a6d952a1d555bf4be42b6532927d2a5686dd3c3e280e5f63225ab47ac1f5"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dfd1f5040ae443422f958112e88fdffe",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 807766,
            "upload_time": "2024-05-01T15:34:26",
            "upload_time_iso_8601": "2024-05-01T15:34:26.755500Z",
            "url": "https://files.pythonhosted.org/packages/60/90/0d6597787eb1bd27b7d9ea4d7dbf86383c882aab97df9138b5faa376592b/pyzmq-26.0.3-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "198c92bf146f38af63154630e8921f7bd9ab041aed353b64cb2fe7021c4f1b95",
                "md5": "3fa37ce5f17d09bd8fdbc89f4ab928cf",
                "sha256": "4496b1282c70c442809fc1b151977c3d967bfb33e4e17cedbf226d97de18f709"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3fa37ce5f17d09bd8fdbc89f4ab928cf",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 616280,
            "upload_time": "2024-05-01T15:34:28",
            "upload_time_iso_8601": "2024-05-01T15:34:28.810919Z",
            "url": "https://files.pythonhosted.org/packages/19/8c/92bf146f38af63154630e8921f7bd9ab041aed353b64cb2fe7021c4f1b95/pyzmq-26.0.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b92140b2911afb3c53899579dd5ff6f1e17589dee6611f7890929a028f3dfc36",
                "md5": "aae3cf8aeb7a6f998e1a0970e5afa4f8",
                "sha256": "e4946d6bdb7ba972dfda282f9127e5756d4f299028b1566d1245fa0d438847e6"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "aae3cf8aeb7a6f998e1a0970e5afa4f8",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 709344,
            "upload_time": "2024-05-01T15:34:30",
            "upload_time_iso_8601": "2024-05-01T15:34:30.418311Z",
            "url": "https://files.pythonhosted.org/packages/b9/21/40b2911afb3c53899579dd5ff6f1e17589dee6611f7890929a028f3dfc36/pyzmq-26.0.3-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "64a1e7fa215b40c5fb0ccb593eddec33dffc7fb570586cb43380d387c3e7a052",
                "md5": "82bc4545acac5ddcbd17497258c710b6",
                "sha256": "03c0ae165e700364b266876d712acb1ac02693acd920afa67da2ebb91a0b3c09"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "82bc4545acac5ddcbd17497258c710b6",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 958118,
            "upload_time": "2024-05-01T15:34:32",
            "upload_time_iso_8601": "2024-05-01T15:34:32.151929Z",
            "url": "https://files.pythonhosted.org/packages/64/a1/e7fa215b40c5fb0ccb593eddec33dffc7fb570586cb43380d387c3e7a052/pyzmq-26.0.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "778b39116c1e42384487d5a0bd4d505b8d31c48ad2236d69b5011b84259ff58a",
                "md5": "5dd816701fcfd7c31bd46d9b9d4c06b5",
                "sha256": "3e3070e680f79887d60feeda051a58d0ac36622e1759f305a41059eff62c6da7"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "5dd816701fcfd7c31bd46d9b9d4c06b5",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 852928,
            "upload_time": "2024-05-01T15:34:34",
            "upload_time_iso_8601": "2024-05-01T15:34:34.439242Z",
            "url": "https://files.pythonhosted.org/packages/77/8b/39116c1e42384487d5a0bd4d505b8d31c48ad2236d69b5011b84259ff58a/pyzmq-26.0.3-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c6211ecbe40764c5d35ca6ece620d43c46e4baee543ca1ddf73525d51a5ffb69",
                "md5": "af24e74aa6b8aebe008e0c8d6ff705d5",
                "sha256": "6ca08b840fe95d1c2bd9ab92dac5685f949fc6f9ae820ec16193e5ddf603c3b2"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "af24e74aa6b8aebe008e0c8d6ff705d5",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 807767,
            "upload_time": "2024-05-01T15:34:36",
            "upload_time_iso_8601": "2024-05-01T15:34:36.145002Z",
            "url": "https://files.pythonhosted.org/packages/c6/21/1ecbe40764c5d35ca6ece620d43c46e4baee543ca1ddf73525d51a5ffb69/pyzmq-26.0.3-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b1db30f29f29db52ef75bb98e0562c1947f45df40cd233388a27dff4f3507b69",
                "md5": "ea7108a467053751d7520b8de1f8126e",
                "sha256": "e76654e9dbfb835b3518f9938e565c7806976c07b37c33526b574cc1a1050480"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ea7108a467053751d7520b8de1f8126e",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 616284,
            "upload_time": "2024-05-01T15:34:39",
            "upload_time_iso_8601": "2024-05-01T15:34:39.002405Z",
            "url": "https://files.pythonhosted.org/packages/b1/db/30f29f29db52ef75bb98e0562c1947f45df40cd233388a27dff4f3507b69/pyzmq-26.0.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c82ba5532717282bcd40312fa942afd6c6a75589282ebe3345a7f5fa57f4f5f7",
                "md5": "40fcd56b0d45253f56be4d82332b48e5",
                "sha256": "871587bdadd1075b112e697173e946a07d722459d20716ceb3d1bd6c64bd08ce"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "40fcd56b0d45253f56be4d82332b48e5",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 709343,
            "upload_time": "2024-05-01T15:34:40",
            "upload_time_iso_8601": "2024-05-01T15:34:40.894339Z",
            "url": "https://files.pythonhosted.org/packages/c8/2b/a5532717282bcd40312fa942afd6c6a75589282ebe3345a7f5fa57f4f5f7/pyzmq-26.0.3-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "74228ba37bfc214dc5909dc8cd96619889829128c42fa2a1279f6c486c5596f9",
                "md5": "36c8dd959b1eedcba3915b4027d7b769",
                "sha256": "d0a2d1bd63a4ad79483049b26514e70fa618ce6115220da9efdff63688808b17"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "36c8dd959b1eedcba3915b4027d7b769",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 958115,
            "upload_time": "2024-05-01T15:34:43",
            "upload_time_iso_8601": "2024-05-01T15:34:43.306000Z",
            "url": "https://files.pythonhosted.org/packages/74/22/8ba37bfc214dc5909dc8cd96619889829128c42fa2a1279f6c486c5596f9/pyzmq-26.0.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "01a116387aa34668135b308c8ab36c3512e30f847e1d4080c2e4b2754f5858a9",
                "md5": "547b71dab46682493b335607471331d3",
                "sha256": "0270b49b6847f0d106d64b5086e9ad5dc8a902413b5dbbb15d12b60f9c1747a4"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "547b71dab46682493b335607471331d3",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 616281,
            "upload_time": "2024-05-01T15:34:45",
            "upload_time_iso_8601": "2024-05-01T15:34:45.674502Z",
            "url": "https://files.pythonhosted.org/packages/01/a1/16387aa34668135b308c8ab36c3512e30f847e1d4080c2e4b2754f5858a9/pyzmq-26.0.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7f6c16490963af912ff0d4925fc1ab3140c09539a60845624dabc812e028e2d1",
                "md5": "4b24f3018705a3fd5743f1e52097cd93",
                "sha256": "703c60b9910488d3d0954ca585c34f541e506a091a41930e663a098d3b794c67"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "4b24f3018705a3fd5743f1e52097cd93",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 845189,
            "upload_time": "2024-05-01T15:34:48",
            "upload_time_iso_8601": "2024-05-01T15:34:48.014897Z",
            "url": "https://files.pythonhosted.org/packages/7f/6c/16490963af912ff0d4925fc1ab3140c09539a60845624dabc812e028e2d1/pyzmq-26.0.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9843d8fb6bea21503edc3c338bb78e68f0f6c6a3fce3f7f5b96b179bdbabbef0",
                "md5": "ea7ac91f460d2233cd12640054304096",
                "sha256": "74423631b6be371edfbf7eabb02ab995c2563fee60a80a30829176842e71722a"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ea7ac91f460d2233cd12640054304096",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 803656,
            "upload_time": "2024-05-01T15:34:49",
            "upload_time_iso_8601": "2024-05-01T15:34:49.720844Z",
            "url": "https://files.pythonhosted.org/packages/98/43/d8fb6bea21503edc3c338bb78e68f0f6c6a3fce3f7f5b96b179bdbabbef0/pyzmq-26.0.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "56e4c0467f13f5682247aab3b9204ea1b3fece1d6f35b77c7541f2c8b91887a7",
                "md5": "c56cd657ea4540e44360769bc9368d7d",
                "sha256": "4adfbb5451196842a88fda3612e2c0414134874bffb1c2ce83ab4242ec9e027d"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c56cd657ea4540e44360769bc9368d7d",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 802194,
            "upload_time": "2024-05-01T15:34:52",
            "upload_time_iso_8601": "2024-05-01T15:34:52.095477Z",
            "url": "https://files.pythonhosted.org/packages/56/e4/c0467f13f5682247aab3b9204ea1b3fece1d6f35b77c7541f2c8b91887a7/pyzmq-26.0.3-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cb208328228f7487fc273421394852ecfa474ed355614194b174589c7fdd9a30",
                "md5": "9689b7c6eccebe5884b36fa0db156c07",
                "sha256": "3516119f4f9b8671083a70b6afaa0a070f5683e431ab3dc26e9215620d7ca1ad"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9689b7c6eccebe5884b36fa0db156c07",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 709345,
            "upload_time": "2024-05-01T15:34:54",
            "upload_time_iso_8601": "2024-05-01T15:34:54.144799Z",
            "url": "https://files.pythonhosted.org/packages/cb/20/8328228f7487fc273421394852ecfa474ed355614194b174589c7fdd9a30/pyzmq-26.0.3-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c49a0e2ab500fd5a5a41e7d003e4a49faa7a0333db13e54498a3cf749b9eedd0",
                "md5": "c56246173de5cf86a291b0acfc14dc3f",
                "sha256": "dba7d9f2e047dfa2bca3b01f4f84aa5246725203d6284e3790f2ca15fba6b40a"
            },
            "downloads": -1,
            "filename": "pyzmq-26.0.3.tar.gz",
            "has_sig": false,
            "md5_digest": "c56246173de5cf86a291b0acfc14dc3f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 267708,
            "upload_time": "2024-05-01T15:34:55",
            "upload_time_iso_8601": "2024-05-01T15:34:55.819870Z",
            "url": "https://files.pythonhosted.org/packages/c4/9a/0e2ab500fd5a5a41e7d003e4a49faa7a0333db13e54498a3cf749b9eedd0/pyzmq-26.0.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-01 15:34:55",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "zeromq",
    "github_project": "pyzmq",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "circle": true,
    "lcname": "pyzmq"
}
        
Elapsed time: 0.24974s