grpcio


Namegrpcio JSON
Version 1.62.2 PyPI version JSON
download
home_pagehttps://grpc.io
SummaryHTTP/2-based RPC framework
upload_time2024-04-18 17:59:08
maintainerNone
docs_urlNone
authorThe gRPC Authors
requires_python>=3.7
licenseApache License 2.0
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            gRPC Python
===========

|compat_check_pypi|

Package for gRPC Python.

.. |compat_check_pypi| image:: https://python-compatibility-tools.appspot.com/one_badge_image?package=grpcio
   :target: https://python-compatibility-tools.appspot.com/one_badge_target?package=grpcio

Supported Python Versions
-------------------------
Python >= 3.7

Installation
------------

gRPC Python is available for Linux, macOS, and Windows.

Installing From PyPI
~~~~~~~~~~~~~~~~~~~~

If you are installing locally...

::

  $ pip install grpcio

Else system wide (on Ubuntu)...

::

  $ sudo pip install grpcio

If you're on Windows make sure that you installed the :code:`pip.exe` component
when you installed Python (if not go back and install it!) then invoke:

::

  $ pip.exe install grpcio

Windows users may need to invoke :code:`pip.exe` from a command line ran as
administrator.

n.b. On Windows and on Mac OS X one *must* have a recent release of :code:`pip`
to retrieve the proper wheel from PyPI. Be sure to upgrade to the latest
version!

Installing From Source
~~~~~~~~~~~~~~~~~~~~~~

Building from source requires that you have the Python headers (usually a
package named :code:`python-dev`).

::

  $ export REPO_ROOT=grpc  # REPO_ROOT can be any directory of your choice
  $ git clone -b RELEASE_TAG_HERE https://github.com/grpc/grpc $REPO_ROOT
  $ cd $REPO_ROOT
  $ git submodule update --init

  # For the next two commands do `sudo pip install` if you get permission-denied errors
  $ pip install -r requirements.txt
  $ GRPC_PYTHON_BUILD_WITH_CYTHON=1 pip install .

You cannot currently install Python from source on Windows. Things might work
out for you in MSYS2 (follow the Linux instructions), but it isn't officially
supported at the moment.

Troubleshooting
~~~~~~~~~~~~~~~

Help, I ...

* **... see a** :code:`pkg_resources.VersionConflict` **when I try to install
  grpc**

  This is likely because :code:`pip` doesn't own the offending dependency,
  which in turn is likely because your operating system's package manager owns
  it. You'll need to force the installation of the dependency:

  :code:`pip install --ignore-installed $OFFENDING_DEPENDENCY`

  For example, if you get an error like the following:

  ::

    Traceback (most recent call last):
    File "<string>", line 17, in <module>
     ...
    File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 509, in find
      raise VersionConflict(dist, req)
    pkg_resources.VersionConflict: (six 1.8.0 (/usr/lib/python2.7/dist-packages), Requirement.parse('six>=1.10'))

  You can fix it by doing:

  ::

    sudo pip install --ignore-installed six

* **... see the following error on some platforms**

  ::

    /tmp/pip-build-U8pSsr/cython/Cython/Plex/Scanners.c:4:20: fatal error: Python.h: No such file or directory
    #include "Python.h"
                    ^
    compilation terminated.

  You can fix it by installing `python-dev` package. i.e

  ::

    sudo apt-get install python-dev


            

Raw data

            {
    "_id": null,
    "home_page": "https://grpc.io",
    "name": "grpcio",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": null,
    "author": "The gRPC Authors",
    "author_email": "grpc-io@googlegroups.com",
    "download_url": "https://files.pythonhosted.org/packages/04/7a/cb869ec6d7f634c0153b4a38ae25bb33699b9307ea17f8cb22b609a46605/grpcio-1.62.2.tar.gz",
    "platform": null,
    "description": "gRPC Python\n===========\n\n|compat_check_pypi|\n\nPackage for gRPC Python.\n\n.. |compat_check_pypi| image:: https://python-compatibility-tools.appspot.com/one_badge_image?package=grpcio\n   :target: https://python-compatibility-tools.appspot.com/one_badge_target?package=grpcio\n\nSupported Python Versions\n-------------------------\nPython >= 3.7\n\nInstallation\n------------\n\ngRPC Python is available for Linux, macOS, and Windows.\n\nInstalling From PyPI\n~~~~~~~~~~~~~~~~~~~~\n\nIf you are installing locally...\n\n::\n\n  $ pip install grpcio\n\nElse system wide (on Ubuntu)...\n\n::\n\n  $ sudo pip install grpcio\n\nIf you're on Windows make sure that you installed the :code:`pip.exe` component\nwhen you installed Python (if not go back and install it!) then invoke:\n\n::\n\n  $ pip.exe install grpcio\n\nWindows users may need to invoke :code:`pip.exe` from a command line ran as\nadministrator.\n\nn.b. On Windows and on Mac OS X one *must* have a recent release of :code:`pip`\nto retrieve the proper wheel from PyPI. Be sure to upgrade to the latest\nversion!\n\nInstalling From Source\n~~~~~~~~~~~~~~~~~~~~~~\n\nBuilding from source requires that you have the Python headers (usually a\npackage named :code:`python-dev`).\n\n::\n\n  $ export REPO_ROOT=grpc  # REPO_ROOT can be any directory of your choice\n  $ git clone -b RELEASE_TAG_HERE https://github.com/grpc/grpc $REPO_ROOT\n  $ cd $REPO_ROOT\n  $ git submodule update --init\n\n  # For the next two commands do `sudo pip install` if you get permission-denied errors\n  $ pip install -r requirements.txt\n  $ GRPC_PYTHON_BUILD_WITH_CYTHON=1 pip install .\n\nYou cannot currently install Python from source on Windows. Things might work\nout for you in MSYS2 (follow the Linux instructions), but it isn't officially\nsupported at the moment.\n\nTroubleshooting\n~~~~~~~~~~~~~~~\n\nHelp, I ...\n\n* **... see a** :code:`pkg_resources.VersionConflict` **when I try to install\n  grpc**\n\n  This is likely because :code:`pip` doesn't own the offending dependency,\n  which in turn is likely because your operating system's package manager owns\n  it. You'll need to force the installation of the dependency:\n\n  :code:`pip install --ignore-installed $OFFENDING_DEPENDENCY`\n\n  For example, if you get an error like the following:\n\n  ::\n\n    Traceback (most recent call last):\n    File \"<string>\", line 17, in <module>\n     ...\n    File \"/usr/lib/python2.7/dist-packages/pkg_resources.py\", line 509, in find\n      raise VersionConflict(dist, req)\n    pkg_resources.VersionConflict: (six 1.8.0 (/usr/lib/python2.7/dist-packages), Requirement.parse('six>=1.10'))\n\n  You can fix it by doing:\n\n  ::\n\n    sudo pip install --ignore-installed six\n\n* **... see the following error on some platforms**\n\n  ::\n\n    /tmp/pip-build-U8pSsr/cython/Cython/Plex/Scanners.c:4:20: fatal error: Python.h: No such file or directory\n    #include \"Python.h\"\n                    ^\n    compilation terminated.\n\n  You can fix it by installing `python-dev` package. i.e\n\n  ::\n\n    sudo apt-get install python-dev\n\n",
    "bugtrack_url": null,
    "license": "Apache License 2.0",
    "summary": "HTTP/2-based RPC framework",
    "version": "1.62.2",
    "project_urls": {
        "Bug Tracker": "https://github.com/grpc/grpc/issues",
        "Documentation": "https://grpc.github.io/grpc/python",
        "Homepage": "https://grpc.io",
        "Source Code": "https://github.com/grpc/grpc"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "066bd55d80fc71fd6e7d0210df7b1fbbeced7a537b81ae7959a02976a9af3ddf",
                "md5": "826c73dbe502ba83f3414ff0f045ae6f",
                "sha256": "66344ea741124c38588a664237ac2fa16dfd226964cca23ddc96bd4accccbde5"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp310-cp310-linux_armv7l.whl",
            "has_sig": false,
            "md5_digest": "826c73dbe502ba83f3414ff0f045ae6f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 4766448,
            "upload_time": "2024-04-18T17:52:55",
            "upload_time_iso_8601": "2024-04-18T17:52:55.339590Z",
            "url": "https://files.pythonhosted.org/packages/06/6b/d55d80fc71fd6e7d0210df7b1fbbeced7a537b81ae7959a02976a9af3ddf/grpcio-1.62.2-cp310-cp310-linux_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cd599822c468e1d600b867c2d8e5d46a390824203911103a851ae8e758abfe0c",
                "md5": "5c5ea55ef2475f2fdeaf6467f4b24be4",
                "sha256": "5dab7ac2c1e7cb6179c6bfad6b63174851102cbe0682294e6b1d6f0981ad7138"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp310-cp310-macosx_12_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "5c5ea55ef2475f2fdeaf6467f4b24be4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 9991789,
            "upload_time": "2024-04-18T17:53:00",
            "upload_time_iso_8601": "2024-04-18T17:53:00.371512Z",
            "url": "https://files.pythonhosted.org/packages/cd/59/9822c468e1d600b867c2d8e5d46a390824203911103a851ae8e758abfe0c/grpcio-1.62.2-cp310-cp310-macosx_12_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1cf4bb7a477ed296f953cba8c76c4a6e37cf3438dbff8f22e6868e4041e6f79b",
                "md5": "09d3931fe5509fe15043a8702c4b994c",
                "sha256": "3ad00f3f0718894749d5a8bb0fa125a7980a2f49523731a9b1fabf2b3522aa43"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp310-cp310-manylinux_2_17_aarch64.whl",
            "has_sig": false,
            "md5_digest": "09d3931fe5509fe15043a8702c4b994c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 5290864,
            "upload_time": "2024-04-18T17:53:04",
            "upload_time_iso_8601": "2024-04-18T17:53:04.757577Z",
            "url": "https://files.pythonhosted.org/packages/1c/f4/bb7a477ed296f953cba8c76c4a6e37cf3438dbff8f22e6868e4041e6f79b/grpcio-1.62.2-cp310-cp310-manylinux_2_17_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "33b41a5a3665dff9fc3931b9ffaa479b27f6e6db12ed2beb73302c7ef3806dc6",
                "md5": "12158538dc3c1b997bc66d5ad5c2de36",
                "sha256": "2e72ddfee62430ea80133d2cbe788e0d06b12f865765cb24a40009668bd8ea05"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "12158538dc3c1b997bc66d5ad5c2de36",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 5828897,
            "upload_time": "2024-04-18T17:53:08",
            "upload_time_iso_8601": "2024-04-18T17:53:08.172641Z",
            "url": "https://files.pythonhosted.org/packages/33/b4/1a5a3665dff9fc3931b9ffaa479b27f6e6db12ed2beb73302c7ef3806dc6/grpcio-1.62.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bce138c6edb796faba9b164554f2fae20e49011826e961b3b1f8e41d074eb21c",
                "md5": "0aee504bc25c6b2d8c31acb27931ee3b",
                "sha256": "53d3a59a10af4c2558a8e563aed9f256259d2992ae0d3037817b2155f0341de1"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0aee504bc25c6b2d8c31acb27931ee3b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 5548329,
            "upload_time": "2024-04-18T17:53:12",
            "upload_time_iso_8601": "2024-04-18T17:53:12.305465Z",
            "url": "https://files.pythonhosted.org/packages/bc/e1/38c6edb796faba9b164554f2fae20e49011826e961b3b1f8e41d074eb21c/grpcio-1.62.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8783d24c10d57be9f865fa45e266bfceca46816e918941b2895f77e8a14d9b1a",
                "md5": "c3156e1dce7be305dc45334e15caaa9b",
                "sha256": "a1511a303f8074f67af4119275b4f954189e8313541da7b88b1b3a71425cdb10"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "c3156e1dce7be305dc45334e15caaa9b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 6113842,
            "upload_time": "2024-04-18T17:53:15",
            "upload_time_iso_8601": "2024-04-18T17:53:15.513963Z",
            "url": "https://files.pythonhosted.org/packages/87/83/d24c10d57be9f865fa45e266bfceca46816e918941b2895f77e8a14d9b1a/grpcio-1.62.2-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d5c4a3c0ab2f400f942e90925bff48f763346258db863a844680dd65e03d03e4",
                "md5": "e1632adc9101026ca69290aeafddbb59",
                "sha256": "b94d41b7412ef149743fbc3178e59d95228a7064c5ab4760ae82b562bdffb199"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e1632adc9101026ca69290aeafddbb59",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 5778468,
            "upload_time": "2024-04-18T17:53:18",
            "upload_time_iso_8601": "2024-04-18T17:53:18.571516Z",
            "url": "https://files.pythonhosted.org/packages/d5/c4/a3c0ab2f400f942e90925bff48f763346258db863a844680dd65e03d03e4/grpcio-1.62.2-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "70cbfb4487c1090e60c52a88c0e9fcce70f22fbb33fcb7ba0964bd39119d7c35",
                "md5": "c908fb39ae1a87c9396b604b592ce7e0",
                "sha256": "a75af2fc7cb1fe25785be7bed1ab18cef959a376cdae7c6870184307614caa3f"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "c908fb39ae1a87c9396b604b592ce7e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 3175970,
            "upload_time": "2024-04-18T17:53:21",
            "upload_time_iso_8601": "2024-04-18T17:53:21.726120Z",
            "url": "https://files.pythonhosted.org/packages/70/cb/fb4487c1090e60c52a88c0e9fcce70f22fbb33fcb7ba0964bd39119d7c35/grpcio-1.62.2-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f29bdf854f602b143238c8619e68d478f6a88c1c4761af6879cc3c5e69ca173a",
                "md5": "f5b533a1d2640d0b0d7a38f4c3c3ab45",
                "sha256": "80407bc007754f108dc2061e37480238b0dc1952c855e86a4fc283501ee6bb5d"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f5b533a1d2640d0b0d7a38f4c3c3ab45",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 3773793,
            "upload_time": "2024-04-18T17:53:24",
            "upload_time_iso_8601": "2024-04-18T17:53:24.755074Z",
            "url": "https://files.pythonhosted.org/packages/f2/9b/df854f602b143238c8619e68d478f6a88c1c4761af6879cc3c5e69ca173a/grpcio-1.62.2-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "08b5599940bd37c807d7c3f72d0a99bd35158ca3c972345d2c53b4a3de5506d7",
                "md5": "34f0b9a0b1d643ef561c0fc5895adeae",
                "sha256": "c1624aa686d4b36790ed1c2e2306cc3498778dffaf7b8dd47066cf819028c3ad"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp311-cp311-linux_armv7l.whl",
            "has_sig": false,
            "md5_digest": "34f0b9a0b1d643ef561c0fc5895adeae",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 4775120,
            "upload_time": "2024-04-18T17:53:28",
            "upload_time_iso_8601": "2024-04-18T17:53:28.405527Z",
            "url": "https://files.pythonhosted.org/packages/08/b5/599940bd37c807d7c3f72d0a99bd35158ca3c972345d2c53b4a3de5506d7/grpcio-1.62.2-cp311-cp311-linux_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cffe6c99e20e4a7deee2590524b0922f5093f5121afb425c5bd4a78828ffafb1",
                "md5": "e434201eff1d6fed2300c9d926df9f7d",
                "sha256": "1c1bb80299bdef33309dff03932264636450c8fdb142ea39f47e06a7153d3063"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp311-cp311-macosx_10_10_universal2.whl",
            "has_sig": false,
            "md5_digest": "e434201eff1d6fed2300c9d926df9f7d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 10020281,
            "upload_time": "2024-04-18T17:53:32",
            "upload_time_iso_8601": "2024-04-18T17:53:32.267420Z",
            "url": "https://files.pythonhosted.org/packages/cf/fe/6c99e20e4a7deee2590524b0922f5093f5121afb425c5bd4a78828ffafb1/grpcio-1.62.2-cp311-cp311-macosx_10_10_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "73ee9af6205181a259b31e8223c01d837d31b228d389d121bf3293c544a5476a",
                "md5": "554a179ef21b30c22dd93988b374d355",
                "sha256": "db068bbc9b1fa16479a82e1ecf172a93874540cb84be69f0b9cb9b7ac3c82670"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp311-cp311-manylinux_2_17_aarch64.whl",
            "has_sig": false,
            "md5_digest": "554a179ef21b30c22dd93988b374d355",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 5294556,
            "upload_time": "2024-04-18T17:53:35",
            "upload_time_iso_8601": "2024-04-18T17:53:35.985651Z",
            "url": "https://files.pythonhosted.org/packages/73/ee/9af6205181a259b31e8223c01d837d31b228d389d121bf3293c544a5476a/grpcio-1.62.2-cp311-cp311-manylinux_2_17_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1fcd3a1117df4dc6a0637b8939185636257d629671847a8795c64850fe154c27",
                "md5": "c7c2aa0b678174541ef45776b7b221da",
                "sha256": "e2cc8a308780edbe2c4913d6a49dbdb5befacdf72d489a368566be44cadaef1a"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c7c2aa0b678174541ef45776b7b221da",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 5830518,
            "upload_time": "2024-04-18T17:53:38",
            "upload_time_iso_8601": "2024-04-18T17:53:38.847250Z",
            "url": "https://files.pythonhosted.org/packages/1f/cd/3a1117df4dc6a0637b8939185636257d629671847a8795c64850fe154c27/grpcio-1.62.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "26d6fb04ae7cde69fbf0c2a7fbfa2fb93b338094ec57fe34555e9cb9befa0459",
                "md5": "f7755e1980ee5a567eef4d38edc5046b",
                "sha256": "d0695ae31a89f1a8fc8256050329a91a9995b549a88619263a594ca31b76d756"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f7755e1980ee5a567eef4d38edc5046b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 5546336,
            "upload_time": "2024-04-18T17:53:42",
            "upload_time_iso_8601": "2024-04-18T17:53:42.720678Z",
            "url": "https://files.pythonhosted.org/packages/26/d6/fb04ae7cde69fbf0c2a7fbfa2fb93b338094ec57fe34555e9cb9befa0459/grpcio-1.62.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dd0ac1b3aacc6d60b7b7c0f3e2101f6e839107884919c79b41cb940020361ae5",
                "md5": "38a4e63eef0b0bd590a103865a163450",
                "sha256": "88b4f9ee77191dcdd8810241e89340a12cbe050be3e0d5f2f091c15571cd3930"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "38a4e63eef0b0bd590a103865a163450",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 6116967,
            "upload_time": "2024-04-18T17:53:46",
            "upload_time_iso_8601": "2024-04-18T17:53:46.389042Z",
            "url": "https://files.pythonhosted.org/packages/dd/0a/c1b3aacc6d60b7b7c0f3e2101f6e839107884919c79b41cb940020361ae5/grpcio-1.62.2-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9c11cc50e796652aa94e073a065ecf80680a9ca48258bc1ce57cf72744397f7a",
                "md5": "1465aac8e6285bb3a0a189d3298e7054",
                "sha256": "2a0204532aa2f1afd467024b02b4069246320405bc18abec7babab03e2644e75"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1465aac8e6285bb3a0a189d3298e7054",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 5778771,
            "upload_time": "2024-04-18T17:53:49",
            "upload_time_iso_8601": "2024-04-18T17:53:49.369309Z",
            "url": "https://files.pythonhosted.org/packages/9c/11/cc50e796652aa94e073a065ecf80680a9ca48258bc1ce57cf72744397f7a/grpcio-1.62.2-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6c902f9b54e8c6dcc094937af4ff75cc045ce1cfbe805c4c148418528cf0b966",
                "md5": "4fd490241e30b4c334379969ebaebf07",
                "sha256": "6e784f60e575a0de554ef9251cbc2ceb8790914fe324f11e28450047f264ee6f"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "4fd490241e30b4c334379969ebaebf07",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 3170797,
            "upload_time": "2024-04-18T17:53:52",
            "upload_time_iso_8601": "2024-04-18T17:53:52.725100Z",
            "url": "https://files.pythonhosted.org/packages/6c/90/2f9b54e8c6dcc094937af4ff75cc045ce1cfbe805c4c148418528cf0b966/grpcio-1.62.2-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3c9cfe8b37679adf57c46323810b4d8a87b3416ca7b9721fcf816a30b35c23df",
                "md5": "03981da66c4fad6d439abcd07b4c14f7",
                "sha256": "112eaa7865dd9e6d7c0556c8b04ae3c3a2dc35d62ad3373ab7f6a562d8199200"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "03981da66c4fad6d439abcd07b4c14f7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 3769992,
            "upload_time": "2024-04-18T17:53:56",
            "upload_time_iso_8601": "2024-04-18T17:53:56.106886Z",
            "url": "https://files.pythonhosted.org/packages/3c/9c/fe8b37679adf57c46323810b4d8a87b3416ca7b9721fcf816a30b35c23df/grpcio-1.62.2-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "40bdacdcb5f9166b4e43b56feb1b863403547b87ef8582b7ba0109e65c766f5f",
                "md5": "f4867c7562b53c07da96ad6355afb9f1",
                "sha256": "65034473fc09628a02fb85f26e73885cf1ed39ebd9cf270247b38689ff5942c5"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp312-cp312-linux_armv7l.whl",
            "has_sig": false,
            "md5_digest": "f4867c7562b53c07da96ad6355afb9f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 4733161,
            "upload_time": "2024-04-18T17:53:59",
            "upload_time_iso_8601": "2024-04-18T17:53:59.895326Z",
            "url": "https://files.pythonhosted.org/packages/40/bd/acdcb5f9166b4e43b56feb1b863403547b87ef8582b7ba0109e65c766f5f/grpcio-1.62.2-cp312-cp312-linux_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5db214286af1774e02336b2e32bb6bb84fc75936b3be0648b5b60f84cdde3a25",
                "md5": "00f31a97dbce5af011682f489ede89b9",
                "sha256": "d2c1771d0ee3cf72d69bb5e82c6a82f27fbd504c8c782575eddb7839729fbaad"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp312-cp312-macosx_10_10_universal2.whl",
            "has_sig": false,
            "md5_digest": "00f31a97dbce5af011682f489ede89b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 9978473,
            "upload_time": "2024-04-18T17:54:04",
            "upload_time_iso_8601": "2024-04-18T17:54:04.060783Z",
            "url": "https://files.pythonhosted.org/packages/5d/b2/14286af1774e02336b2e32bb6bb84fc75936b3be0648b5b60f84cdde3a25/grpcio-1.62.2-cp312-cp312-macosx_10_10_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bb47b097ac8848be12e63c7d6baf935ddae9f1251a98a0713b5e45461a14cb93",
                "md5": "bc0fc9c6f84023a698bbf54a63562358",
                "sha256": "3abe6838196da518863b5d549938ce3159d809218936851b395b09cad9b5d64a"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp312-cp312-manylinux_2_17_aarch64.whl",
            "has_sig": false,
            "md5_digest": "bc0fc9c6f84023a698bbf54a63562358",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 5233919,
            "upload_time": "2024-04-18T17:54:07",
            "upload_time_iso_8601": "2024-04-18T17:54:07.687667Z",
            "url": "https://files.pythonhosted.org/packages/bb/47/b097ac8848be12e63c7d6baf935ddae9f1251a98a0713b5e45461a14cb93/grpcio-1.62.2-cp312-cp312-manylinux_2_17_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b49a13573112aa127fc1f1334c2aa22e95aefa5634f05d06f228b25a22f30863",
                "md5": "1196aaca99999d1ef2f5a02631a3e4c1",
                "sha256": "c5ffeb269f10cedb4f33142b89a061acda9f672fd1357331dbfd043422c94e9e"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "1196aaca99999d1ef2f5a02631a3e4c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 5766596,
            "upload_time": "2024-04-18T17:54:10",
            "upload_time_iso_8601": "2024-04-18T17:54:10.892971Z",
            "url": "https://files.pythonhosted.org/packages/b4/9a/13573112aa127fc1f1334c2aa22e95aefa5634f05d06f228b25a22f30863/grpcio-1.62.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "897c1412c5a39b59c3e8a72cd4f46d29450486c48746ab831c9750eb42d770e9",
                "md5": "7c763f979c831c8eb90843f53bb394d3",
                "sha256": "404d3b4b6b142b99ba1cff0b2177d26b623101ea2ce51c25ef6e53d9d0d87bcc"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7c763f979c831c8eb90843f53bb394d3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 5491637,
            "upload_time": "2024-04-18T17:54:14",
            "upload_time_iso_8601": "2024-04-18T17:54:14.091655Z",
            "url": "https://files.pythonhosted.org/packages/89/7c/1412c5a39b59c3e8a72cd4f46d29450486c48746ab831c9750eb42d770e9/grpcio-1.62.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7f5331c57c5527496352f31174a9ed7962374501449178769599dee0555ffd26",
                "md5": "e7d815580f1645045b66e34bf383ba02",
                "sha256": "262cda97efdabb20853d3b5a4c546a535347c14b64c017f628ca0cc7fa780cc6"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "e7d815580f1645045b66e34bf383ba02",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 6062874,
            "upload_time": "2024-04-18T17:54:18",
            "upload_time_iso_8601": "2024-04-18T17:54:18.557063Z",
            "url": "https://files.pythonhosted.org/packages/7f/53/31c57c5527496352f31174a9ed7962374501449178769599dee0555ffd26/grpcio-1.62.2-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1bca6531616cca14aec55d840f1332adb83ebac06daf46880634469a8fffcbe6",
                "md5": "930dcf0fd7e00f61caa941c3a00a1fb6",
                "sha256": "17708db5b11b966373e21519c4c73e5a750555f02fde82276ea2a267077c68ad"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "930dcf0fd7e00f61caa941c3a00a1fb6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 5728342,
            "upload_time": "2024-04-18T17:54:23",
            "upload_time_iso_8601": "2024-04-18T17:54:23.078012Z",
            "url": "https://files.pythonhosted.org/packages/1b/ca/6531616cca14aec55d840f1332adb83ebac06daf46880634469a8fffcbe6/grpcio-1.62.2-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "42f2ba50d809f6aae9b83c4d5b17ef377a349d493c32ec79e31cf577540940a5",
                "md5": "13e831d57f3a280c637e68af50e26ce1",
                "sha256": "b7ec9e2f8ffc8436f6b642a10019fc513722858f295f7efc28de135d336ac189"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "13e831d57f3a280c637e68af50e26ce1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 3158515,
            "upload_time": "2024-04-18T17:54:26",
            "upload_time_iso_8601": "2024-04-18T17:54:26.001273Z",
            "url": "https://files.pythonhosted.org/packages/42/f2/ba50d809f6aae9b83c4d5b17ef377a349d493c32ec79e31cf577540940a5/grpcio-1.62.2-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9788b8794e6270f3ca3efc1602ddb9f2f4c3eeb59a8523bb94a594ec2a768ba8",
                "md5": "6d1040c5f879e1bf545ee10c84717f1d",
                "sha256": "aa787b83a3cd5e482e5c79be030e2b4a122ecc6c5c6c4c42a023a2b581fdf17b"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6d1040c5f879e1bf545ee10c84717f1d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 3754786,
            "upload_time": "2024-04-18T17:54:29",
            "upload_time_iso_8601": "2024-04-18T17:54:29.496671Z",
            "url": "https://files.pythonhosted.org/packages/97/88/b8794e6270f3ca3efc1602ddb9f2f4c3eeb59a8523bb94a594ec2a768ba8/grpcio-1.62.2-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fb79706e474823b3d2b7828f651b5ce276912937f17443d7c44c16980978b4c9",
                "md5": "478bc515f07018c4b5acc28778d9a2ce",
                "sha256": "cfd23ad29bfa13fd4188433b0e250f84ec2c8ba66b14a9877e8bce05b524cf54"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp37-cp37m-linux_armv7l.whl",
            "has_sig": false,
            "md5_digest": "478bc515f07018c4b5acc28778d9a2ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 4783290,
            "upload_time": "2024-04-18T17:54:32",
            "upload_time_iso_8601": "2024-04-18T17:54:32.454985Z",
            "url": "https://files.pythonhosted.org/packages/fb/79/706e474823b3d2b7828f651b5ce276912937f17443d7c44c16980978b4c9/grpcio-1.62.2-cp37-cp37m-linux_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f38d1f7a940f75f22b285d972fdf1e04bfd192c6c4d11b97e219e4cceee56707",
                "md5": "bc25b35b8e3806005f161b08c1f88da1",
                "sha256": "af15e9efa4d776dfcecd1d083f3ccfb04f876d613e90ef8432432efbeeac689d"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp37-cp37m-macosx_10_10_universal2.whl",
            "has_sig": false,
            "md5_digest": "bc25b35b8e3806005f161b08c1f88da1",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 10034158,
            "upload_time": "2024-04-18T17:54:35",
            "upload_time_iso_8601": "2024-04-18T17:54:35.273578Z",
            "url": "https://files.pythonhosted.org/packages/f3/8d/1f7a940f75f22b285d972fdf1e04bfd192c6c4d11b97e219e4cceee56707/grpcio-1.62.2-cp37-cp37m-macosx_10_10_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e62a2ce43606e754e1adbbbe365a6752438b33a1af08aef4b454cf6547682d8a",
                "md5": "cecc843785787958c2e734798c58aafd",
                "sha256": "f4aa94361bb5141a45ca9187464ae81a92a2a135ce2800b2203134f7a1a1d479"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp37-cp37m-manylinux_2_17_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cecc843785787958c2e734798c58aafd",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 5299197,
            "upload_time": "2024-04-18T17:54:39",
            "upload_time_iso_8601": "2024-04-18T17:54:39.442369Z",
            "url": "https://files.pythonhosted.org/packages/e6/2a/2ce43606e754e1adbbbe365a6752438b33a1af08aef4b454cf6547682d8a/grpcio-1.62.2-cp37-cp37m-manylinux_2_17_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ad798caab802b20c0eb978380386cbe268325e0cf2a0138aef0c3734ebe570e1",
                "md5": "a699482307af56c63f0dd8cebd1cca64",
                "sha256": "82af3613a219512a28ee5c95578eb38d44dd03bca02fd918aa05603c41018051"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a699482307af56c63f0dd8cebd1cca64",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 5828278,
            "upload_time": "2024-04-18T17:54:42",
            "upload_time_iso_8601": "2024-04-18T17:54:42.311345Z",
            "url": "https://files.pythonhosted.org/packages/ad/79/8caab802b20c0eb978380386cbe268325e0cf2a0138aef0c3734ebe570e1/grpcio-1.62.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "11baa462bbe7cbb5aabc6e8845be445eef42269a6bb8c39f83b950630674d070",
                "md5": "1ad504ad439dce62c85d4eac7457c5b1",
                "sha256": "55ddaf53474e8caeb29eb03e3202f9d827ad3110475a21245f3c7712022882a9"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1ad504ad439dce62c85d4eac7457c5b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 5551035,
            "upload_time": "2024-04-18T17:54:45",
            "upload_time_iso_8601": "2024-04-18T17:54:45.132984Z",
            "url": "https://files.pythonhosted.org/packages/11/ba/a462bbe7cbb5aabc6e8845be445eef42269a6bb8c39f83b950630674d070/grpcio-1.62.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "39662be79e4b398c4725f564641c71e0c532079b17132b7eb488bbb28d266cda",
                "md5": "1319145935d2a98ed9823b30a977f1ab",
                "sha256": "c79b518c56dddeec79e5500a53d8a4db90da995dfe1738c3ac57fe46348be049"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "1319145935d2a98ed9823b30a977f1ab",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 6118112,
            "upload_time": "2024-04-18T17:54:47",
            "upload_time_iso_8601": "2024-04-18T17:54:47.855510Z",
            "url": "https://files.pythonhosted.org/packages/39/66/2be79e4b398c4725f564641c71e0c532079b17132b7eb488bbb28d266cda/grpcio-1.62.2-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "43d941cdd02557526d3207854be3d981d35c4e2b1e6f3a59a3fb11bf768930a3",
                "md5": "e13ea30e785c65d7fdc9fa77bb40c433",
                "sha256": "a5eb4844e5e60bf2c446ef38c5b40d7752c6effdee882f716eb57ae87255d20a"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e13ea30e785c65d7fdc9fa77bb40c433",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 5784147,
            "upload_time": "2024-04-18T17:54:52",
            "upload_time_iso_8601": "2024-04-18T17:54:52.179408Z",
            "url": "https://files.pythonhosted.org/packages/43/d9/41cdd02557526d3207854be3d981d35c4e2b1e6f3a59a3fb11bf768930a3/grpcio-1.62.2-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cba89344f2d3499b59ad8acbb190d97aba0f292f9165c4afc49341d0decdc569",
                "md5": "d8198846f32bd09437b41d55596808b4",
                "sha256": "aaae70364a2d1fb238afd6cc9fcb10442b66e397fd559d3f0968d28cc3ac929c"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d8198846f32bd09437b41d55596808b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 4515746,
            "upload_time": "2024-04-18T17:54:55",
            "upload_time_iso_8601": "2024-04-18T17:54:55.415967Z",
            "url": "https://files.pythonhosted.org/packages/cb/a8/9344f2d3499b59ad8acbb190d97aba0f292f9165c4afc49341d0decdc569/grpcio-1.62.2-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6fe4e8f3b092f703856774156a4006a78db58f9513839e89f2d71ee422dafecd",
                "md5": "c67168e97171c21e62d91b91ffdbe990",
                "sha256": "1bcfe5070e4406f489e39325b76caeadab28c32bf9252d3ae960c79935a4cc36"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp38-cp38-linux_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c67168e97171c21e62d91b91ffdbe990",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 4783895,
            "upload_time": "2024-04-18T17:54:58",
            "upload_time_iso_8601": "2024-04-18T17:54:58.232256Z",
            "url": "https://files.pythonhosted.org/packages/6f/e4/e8f3b092f703856774156a4006a78db58f9513839e89f2d71ee422dafecd/grpcio-1.62.2-cp38-cp38-linux_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "98bd79519d901e55e2020bc4f160c60d482935f433c9df882365563a1532a6a8",
                "md5": "7040423a7f4e216c4d0f7492bef1487b",
                "sha256": "da6a7b6b938c15fa0f0568e482efaae9c3af31963eec2da4ff13a6d8ec2888e4"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp38-cp38-macosx_10_10_universal2.whl",
            "has_sig": false,
            "md5_digest": "7040423a7f4e216c4d0f7492bef1487b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 10072757,
            "upload_time": "2024-04-18T17:55:02",
            "upload_time_iso_8601": "2024-04-18T17:55:02.827832Z",
            "url": "https://files.pythonhosted.org/packages/98/bd/79519d901e55e2020bc4f160c60d482935f433c9df882365563a1532a6a8/grpcio-1.62.2-cp38-cp38-macosx_10_10_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b5a9ea1708f75abe7c239e4c4ef0a503e853c71f29d3378ef0fe02a6f70bb0d9",
                "md5": "531df405b3ab2c4ad78741b57865948a",
                "sha256": "41955b641c34db7d84db8d306937b72bc4968eef1c401bea73081a8d6c3d8033"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp38-cp38-manylinux_2_17_aarch64.whl",
            "has_sig": false,
            "md5_digest": "531df405b3ab2c4ad78741b57865948a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 5310954,
            "upload_time": "2024-04-18T17:55:07",
            "upload_time_iso_8601": "2024-04-18T17:55:07.153468Z",
            "url": "https://files.pythonhosted.org/packages/b5/a9/ea1708f75abe7c239e4c4ef0a503e853c71f29d3378ef0fe02a6f70bb0d9/grpcio-1.62.2-cp38-cp38-manylinux_2_17_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9599d3479b0f08b25c58351e459743a0fb0cd3fdec0238f9971c1ef47a6a59e4",
                "md5": "ef881326bb5c6e86717962710a8085e0",
                "sha256": "c772f225483905f675cb36a025969eef9712f4698364ecd3a63093760deea1bc"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ef881326bb5c6e86717962710a8085e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 5840439,
            "upload_time": "2024-04-18T17:55:11",
            "upload_time_iso_8601": "2024-04-18T17:55:11.041093Z",
            "url": "https://files.pythonhosted.org/packages/95/99/d3479b0f08b25c58351e459743a0fb0cd3fdec0238f9971c1ef47a6a59e4/grpcio-1.62.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9d4b922cd999349f6a1d9bcd292edc5537a2d9c6cc79442a97d2fbc1ab17fd1e",
                "md5": "bcdf07c34e06fa6d0c62572667134bf5",
                "sha256": "07ce1f775d37ca18c7a141300e5b71539690efa1f51fe17f812ca85b5e73262f"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bcdf07c34e06fa6d0c62572667134bf5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 5565889,
            "upload_time": "2024-04-18T17:55:14",
            "upload_time_iso_8601": "2024-04-18T17:55:14.033327Z",
            "url": "https://files.pythonhosted.org/packages/9d/4b/922cd999349f6a1d9bcd292edc5537a2d9c6cc79442a97d2fbc1ab17fd1e/grpcio-1.62.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9679e6f3d8da56d6ce51c1b6cb0013889cb4f5215e72b048d9fcf5bd02bad76c",
                "md5": "0cd1a79a8b333fb59e73e5c508b1e8e3",
                "sha256": "26f415f40f4a93579fd648f48dca1c13dfacdfd0290f4a30f9b9aeb745026811"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "0cd1a79a8b333fb59e73e5c508b1e8e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 6132228,
            "upload_time": "2024-04-18T17:55:17",
            "upload_time_iso_8601": "2024-04-18T17:55:17.573003Z",
            "url": "https://files.pythonhosted.org/packages/96/79/e6f3d8da56d6ce51c1b6cb0013889cb4f5215e72b048d9fcf5bd02bad76c/grpcio-1.62.2-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6acdba98a50249d7e3f57e7746f5924d21162e6b9b003ef8609b630e4b08cad4",
                "md5": "6a422d1d730685ad3576c60c4e9074e3",
                "sha256": "db707e3685ff16fc1eccad68527d072ac8bdd2e390f6daa97bc394ea7de4acea"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6a422d1d730685ad3576c60c4e9074e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 5800938,
            "upload_time": "2024-04-18T17:55:20",
            "upload_time_iso_8601": "2024-04-18T17:55:20.636634Z",
            "url": "https://files.pythonhosted.org/packages/6a/cd/ba98a50249d7e3f57e7746f5924d21162e6b9b003ef8609b630e4b08cad4/grpcio-1.62.2-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bb3057134dea99ee3e3a1e1416f1f9313a24bb56a9955a89b6b41684e2439e7d",
                "md5": "6c662a7d4485dca407e624f63344eacf",
                "sha256": "589ea8e75de5fd6df387de53af6c9189c5231e212b9aa306b6b0d4f07520fbb9"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "6c662a7d4485dca407e624f63344eacf",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 3192285,
            "upload_time": "2024-04-18T17:55:23",
            "upload_time_iso_8601": "2024-04-18T17:55:23.608788Z",
            "url": "https://files.pythonhosted.org/packages/bb/30/57134dea99ee3e3a1e1416f1f9313a24bb56a9955a89b6b41684e2439e7d/grpcio-1.62.2-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1f888e35e763f4fae055eed6cbb9888c4c95526b52458082e846a02957f25ee6",
                "md5": "6f1f687e31ec418b8229c0bfce08fad4",
                "sha256": "3c3ed41f4d7a3aabf0f01ecc70d6b5d00ce1800d4af652a549de3f7cf35c4abd"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6f1f687e31ec418b8229c0bfce08fad4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 3787578,
            "upload_time": "2024-04-18T17:55:26",
            "upload_time_iso_8601": "2024-04-18T17:55:26.426079Z",
            "url": "https://files.pythonhosted.org/packages/1f/88/8e35e763f4fae055eed6cbb9888c4c95526b52458082e846a02957f25ee6/grpcio-1.62.2-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "08dc05b7834cf05cee4c5a1a9e5375db9fa7f9f72194410ba6c95bad69256d4a",
                "md5": "a5ad27d32931adae5bfcdf8f197b72e4",
                "sha256": "162ccf61499c893831b8437120600290a99c0bc1ce7b51f2c8d21ec87ff6af8b"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp39-cp39-linux_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a5ad27d32931adae5bfcdf8f197b72e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 4785974,
            "upload_time": "2024-04-18T17:55:29",
            "upload_time_iso_8601": "2024-04-18T17:55:29.097241Z",
            "url": "https://files.pythonhosted.org/packages/08/dc/05b7834cf05cee4c5a1a9e5375db9fa7f9f72194410ba6c95bad69256d4a/grpcio-1.62.2-cp39-cp39-linux_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "24094a81c8a8654050eaecab1d3ce728ad6601f32ca9f0a2aac9f81124c6bf24",
                "md5": "f85ed71b709b6cdf697fd50e5f0aca2b",
                "sha256": "f27246d7da7d7e3bd8612f63785a7b0c39a244cf14b8dd9dd2f2fab939f2d7f1"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp39-cp39-macosx_10_10_universal2.whl",
            "has_sig": false,
            "md5_digest": "f85ed71b709b6cdf697fd50e5f0aca2b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 10078695,
            "upload_time": "2024-04-18T17:55:32",
            "upload_time_iso_8601": "2024-04-18T17:55:32.880216Z",
            "url": "https://files.pythonhosted.org/packages/24/09/4a81c8a8654050eaecab1d3ce728ad6601f32ca9f0a2aac9f81124c6bf24/grpcio-1.62.2-cp39-cp39-macosx_10_10_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dd8634854787a9b9f00eab5cc4f0afa2e0a1f112c1d0d41b32e679e6810b4bc6",
                "md5": "4ca86f0e5196d5932fd06aeddb36b196",
                "sha256": "2507006c8a478f19e99b6fe36a2464696b89d40d88f34e4b709abe57e1337467"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp39-cp39-manylinux_2_17_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4ca86f0e5196d5932fd06aeddb36b196",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 5313330,
            "upload_time": "2024-04-18T17:55:37",
            "upload_time_iso_8601": "2024-04-18T17:55:37.220404Z",
            "url": "https://files.pythonhosted.org/packages/dd/86/34854787a9b9f00eab5cc4f0afa2e0a1f112c1d0d41b32e679e6810b4bc6/grpcio-1.62.2-cp39-cp39-manylinux_2_17_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "24d14e72c5d8854429d53e6671884f778b1db2aaf71f3cfc1fcbb872b51e211f",
                "md5": "8458cdf184a338df8cfa8c682b4ece13",
                "sha256": "a90ac47a8ce934e2c8d71e317d2f9e7e6aaceb2d199de940ce2c2eb611b8c0f4"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "8458cdf184a338df8cfa8c682b4ece13",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 5845266,
            "upload_time": "2024-04-18T17:55:41",
            "upload_time_iso_8601": "2024-04-18T17:55:41.253458Z",
            "url": "https://files.pythonhosted.org/packages/24/d1/4e72c5d8854429d53e6671884f778b1db2aaf71f3cfc1fcbb872b51e211f/grpcio-1.62.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4c0b65c15d7d12301a83a664b09361419036eba1cc62aa268a363f2bf9d7c61f",
                "md5": "703c8cd3a3394361fc4f4cf12fcc71bd",
                "sha256": "99701979bcaaa7de8d5f60476487c5df8f27483624f1f7e300ff4669ee44d1f2"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "703c8cd3a3394361fc4f4cf12fcc71bd",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 5572532,
            "upload_time": "2024-04-18T17:55:44",
            "upload_time_iso_8601": "2024-04-18T17:55:44.236640Z",
            "url": "https://files.pythonhosted.org/packages/4c/0b/65c15d7d12301a83a664b09361419036eba1cc62aa268a363f2bf9d7c61f/grpcio-1.62.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1a25439551f7d6452adefede9026c23d097cca97d9cd0be55c370eb08dc7ba8c",
                "md5": "cf1178d210ef0b7152fe090f47740b32",
                "sha256": "af7dc3f7a44f10863b1b0ecab4078f0a00f561aae1edbd01fd03ad4dcf61c9e9"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "cf1178d210ef0b7152fe090f47740b32",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 6134103,
            "upload_time": "2024-04-18T17:55:47",
            "upload_time_iso_8601": "2024-04-18T17:55:47.865256Z",
            "url": "https://files.pythonhosted.org/packages/1a/25/439551f7d6452adefede9026c23d097cca97d9cd0be55c370eb08dc7ba8c/grpcio-1.62.2-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b9a48e1d548fb1fce89d3b08bda240891e9a8309eb66e7049ca28af7c82c0eae",
                "md5": "ae29e3baf3e521b80fe3b3c95e49c997",
                "sha256": "fa63245271920786f4cb44dcada4983a3516be8f470924528cf658731864c14b"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ae29e3baf3e521b80fe3b3c95e49c997",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 5802768,
            "upload_time": "2024-04-18T17:55:52",
            "upload_time_iso_8601": "2024-04-18T17:55:52.362339Z",
            "url": "https://files.pythonhosted.org/packages/b9/a4/8e1d548fb1fce89d3b08bda240891e9a8309eb66e7049ca28af7c82c0eae/grpcio-1.62.2-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0014878e914a76e36204471bdcc6ad6c9c186e2540c7e9b910dc4778258569d2",
                "md5": "690e6c9a691f669cec7c837cb33cb0f6",
                "sha256": "c6ad9c39704256ed91a1cffc1379d63f7d0278d6a0bad06b0330f5d30291e3a3"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "690e6c9a691f669cec7c837cb33cb0f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 3192803,
            "upload_time": "2024-04-18T17:55:56",
            "upload_time_iso_8601": "2024-04-18T17:55:56.114445Z",
            "url": "https://files.pythonhosted.org/packages/00/14/878e914a76e36204471bdcc6ad6c9c186e2540c7e9b910dc4778258569d2/grpcio-1.62.2-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ecdf4845965bcedabcc71250452bf8f0924bb957c34ca131b637a7f31992ea40",
                "md5": "de9b59e17c422e64815fcd27785fdb06",
                "sha256": "16da954692fd61aa4941fbeda405a756cd96b97b5d95ca58a92547bba2c1624f"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "de9b59e17c422e64815fcd27785fdb06",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 3788542,
            "upload_time": "2024-04-18T17:55:59",
            "upload_time_iso_8601": "2024-04-18T17:55:59.703327Z",
            "url": "https://files.pythonhosted.org/packages/ec/df/4845965bcedabcc71250452bf8f0924bb957c34ca131b637a7f31992ea40/grpcio-1.62.2-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "047acb869ec6d7f634c0153b4a38ae25bb33699b9307ea17f8cb22b609a46605",
                "md5": "ea5ff99bd05131ed6bcabdd329e60c0a",
                "sha256": "c77618071d96b7a8be2c10701a98537823b9c65ba256c0b9067e0594cdbd954d"
            },
            "downloads": -1,
            "filename": "grpcio-1.62.2.tar.gz",
            "has_sig": false,
            "md5_digest": "ea5ff99bd05131ed6bcabdd329e60c0a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 26316089,
            "upload_time": "2024-04-18T17:59:08",
            "upload_time_iso_8601": "2024-04-18T17:59:08.664732Z",
            "url": "https://files.pythonhosted.org/packages/04/7a/cb869ec6d7f634c0153b4a38ae25bb33699b9307ea17f8cb22b609a46605/grpcio-1.62.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-18 17:59:08",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "grpc",
    "github_project": "grpc",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "grpcio"
}
        
Elapsed time: 0.27224s