grpcio


Namegrpcio JSON
Version 1.63.0 PyPI version JSON
download
home_pagehttps://grpc.io
SummaryHTTP/2-based RPC framework
upload_time2024-04-30 16:07:58
maintainerNone
docs_urlNone
authorThe gRPC Authors
requires_python>=3.8
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.8

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 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.8",
    "maintainer_email": null,
    "keywords": null,
    "author": "The gRPC Authors",
    "author_email": "grpc-io@googlegroups.com",
    "download_url": "https://files.pythonhosted.org/packages/0c/2a/23943e19b4bbbdad60a9d881e44cd53bb48b31c7419ebb7b983edfbbb708/grpcio-1.63.0.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.8\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 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.63.0",
    "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": "4ded368a6c3dd997bef45f08258b22ea2fc6c67d1c9fed3f907cb45e53ad53a6",
                "md5": "4a9eb56086b743b740cbaa6fcb847416",
                "sha256": "2e93aca840c29d4ab5db93f94ed0a0ca899e241f2e8aec6334ab3575dc46125c"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0-cp310-cp310-linux_armv7l.whl",
            "has_sig": false,
            "md5_digest": "4a9eb56086b743b740cbaa6fcb847416",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 4784794,
            "upload_time": "2024-04-30T16:01:14",
            "upload_time_iso_8601": "2024-04-30T16:01:14.932730Z",
            "url": "https://files.pythonhosted.org/packages/4d/ed/368a6c3dd997bef45f08258b22ea2fc6c67d1c9fed3f907cb45e53ad53a6/grpcio-1.63.0-cp310-cp310-linux_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2ff910bae7df60ceab06f71a9000a6c8cfe3c442800560a613ccb17bad07e82b",
                "md5": "ef781f3fe278d588e0bbc67355c4792a",
                "sha256": "91b73d3f1340fefa1e1716c8c1ec9930c676d6b10a3513ab6c26004cb02d8b3f"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0-cp310-cp310-macosx_12_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "ef781f3fe278d588e0bbc67355c4792a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 10073532,
            "upload_time": "2024-04-30T16:01:22",
            "upload_time_iso_8601": "2024-04-30T16:01:22.053838Z",
            "url": "https://files.pythonhosted.org/packages/2f/f9/10bae7df60ceab06f71a9000a6c8cfe3c442800560a613ccb17bad07e82b/grpcio-1.63.0-cp310-cp310-macosx_12_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dc456a93462a0e176b9a1eeadef7b6325bb995087507efc685df823dd3f312c8",
                "md5": "d16a77ef7f31a3dec3a0b5377874e55a",
                "sha256": "b3afbd9d6827fa6f475a4f91db55e441113f6d3eb9b7ebb8fb806e5bb6d6bd0d"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0-cp310-cp310-manylinux_2_17_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d16a77ef7f31a3dec3a0b5377874e55a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 5314584,
            "upload_time": "2024-04-30T16:01:27",
            "upload_time_iso_8601": "2024-04-30T16:01:27.348897Z",
            "url": "https://files.pythonhosted.org/packages/dc/45/6a93462a0e176b9a1eeadef7b6325bb995087507efc685df823dd3f312c8/grpcio-1.63.0-cp310-cp310-manylinux_2_17_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7026c32f2329a58b379a50be621e513e565abead58f058790b61defb2ba9304f",
                "md5": "8f5f1b4eae2db1dac92c147e3e8bb3a7",
                "sha256": "8f3f6883ce54a7a5f47db43289a0a4c776487912de1a0e2cc83fdaec9685cc9f"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "8f5f1b4eae2db1dac92c147e3e8bb3a7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 5862716,
            "upload_time": "2024-04-30T16:01:31",
            "upload_time_iso_8601": "2024-04-30T16:01:31.089830Z",
            "url": "https://files.pythonhosted.org/packages/70/26/c32f2329a58b379a50be621e513e565abead58f058790b61defb2ba9304f/grpcio-1.63.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "47825f51b0ac0e670aa6551f351c6c8a479149a36c413dd76db4b98d26dddbea",
                "md5": "fce507fa1c3db52a021da9a6f98a93fd",
                "sha256": "cf8dae9cc0412cb86c8de5a8f3be395c5119a370f3ce2e69c8b7d46bb9872c8d"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fce507fa1c3db52a021da9a6f98a93fd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 5570516,
            "upload_time": "2024-04-30T16:01:35",
            "upload_time_iso_8601": "2024-04-30T16:01:35.249367Z",
            "url": "https://files.pythonhosted.org/packages/47/82/5f51b0ac0e670aa6551f351c6c8a479149a36c413dd76db4b98d26dddbea/grpcio-1.63.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "45f644cb30cd17b5e22c99cce38bf85c0632e5cd4dac6161955d0670ba002dcc",
                "md5": "93c85bbe21dbd182fffa0f2f640fe11a",
                "sha256": "08e1559fd3b3b4468486b26b0af64a3904a8dbc78d8d936af9c1cf9636eb3e8b"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "93c85bbe21dbd182fffa0f2f640fe11a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 6167364,
            "upload_time": "2024-04-30T16:01:38",
            "upload_time_iso_8601": "2024-04-30T16:01:38.652861Z",
            "url": "https://files.pythonhosted.org/packages/45/f6/44cb30cd17b5e22c99cce38bf85c0632e5cd4dac6161955d0670ba002dcc/grpcio-1.63.0-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "243e2aa6f7cf03ead11b450eed8eab1d4d9839557fa0c3594bac10528c7d20f0",
                "md5": "45590ddeb9138ab42a51cf421bfef1bc",
                "sha256": "5c039ef01516039fa39da8a8a43a95b64e288f79f42a17e6c2904a02a319b357"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "45590ddeb9138ab42a51cf421bfef1bc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 5812631,
            "upload_time": "2024-04-30T16:01:42",
            "upload_time_iso_8601": "2024-04-30T16:01:42.407605Z",
            "url": "https://files.pythonhosted.org/packages/24/3e/2aa6f7cf03ead11b450eed8eab1d4d9839557fa0c3594bac10528c7d20f0/grpcio-1.63.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f5f7f746f68094724812a1c5bf2026a506950c0ecf66ca785c97f0405ecd3f62",
                "md5": "22bcc1aeaf6cc5b1f17bb07d916213cd",
                "sha256": "ad2ac8903b2eae071055a927ef74121ed52d69468e91d9bcbd028bd0e554be6d"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "22bcc1aeaf6cc5b1f17bb07d916213cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 3285526,
            "upload_time": "2024-04-30T16:01:46",
            "upload_time_iso_8601": "2024-04-30T16:01:46.492645Z",
            "url": "https://files.pythonhosted.org/packages/f5/f7/f746f68094724812a1c5bf2026a506950c0ecf66ca785c97f0405ecd3f62/grpcio-1.63.0-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7bff709f4a783054df627ae0b6dbcb7767bd10d395ca99d1fcd9021a395b8f9b",
                "md5": "6bd0e29879df30359626f99dd5c115c8",
                "sha256": "b2e44f59316716532a993ca2966636df6fbe7be4ab6f099de6815570ebe4383a"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6bd0e29879df30359626f99dd5c115c8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 3901625,
            "upload_time": "2024-04-30T16:01:49",
            "upload_time_iso_8601": "2024-04-30T16:01:49.824851Z",
            "url": "https://files.pythonhosted.org/packages/7b/ff/709f4a783054df627ae0b6dbcb7767bd10d395ca99d1fcd9021a395b8f9b/grpcio-1.63.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4ad2bc8826cd22c6089dad0654dc3ed15be4f651188ba7be1b5769da0292e537",
                "md5": "fb6a6d21402083e54a8e575a0937d68b",
                "sha256": "f28f8b2db7b86c77916829d64ab21ff49a9d8289ea1564a2b2a3a8ed9ffcccd3"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0-cp311-cp311-linux_armv7l.whl",
            "has_sig": false,
            "md5_digest": "fb6a6d21402083e54a8e575a0937d68b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 4792815,
            "upload_time": "2024-04-30T16:01:52",
            "upload_time_iso_8601": "2024-04-30T16:01:52.783690Z",
            "url": "https://files.pythonhosted.org/packages/4a/d2/bc8826cd22c6089dad0654dc3ed15be4f651188ba7be1b5769da0292e537/grpcio-1.63.0-cp311-cp311-linux_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a483c3a8480f170894c132ef00450ab11ed5c86ae047c54fd7b7faf6a53475c7",
                "md5": "c1bf8e83679997f511b44313cc8e8e4b",
                "sha256": "65bf975639a1f93bee63ca60d2e4951f1b543f498d581869922910a476ead2f5"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "c1bf8e83679997f511b44313cc8e8e4b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 10096700,
            "upload_time": "2024-04-30T16:01:56",
            "upload_time_iso_8601": "2024-04-30T16:01:56.745790Z",
            "url": "https://files.pythonhosted.org/packages/a4/83/c3a8480f170894c132ef00450ab11ed5c86ae047c54fd7b7faf6a53475c7/grpcio-1.63.0-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "615fc895622be1bd1257c3e1b4a0d39d182b8b5aaf890781b66df6c1ba854be4",
                "md5": "94205aabef9518aa2eca8e51f38a0641",
                "sha256": "b5194775fec7dc3dbd6a935102bb156cd2c35efe1685b0a46c67b927c74f0cfb"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0-cp311-cp311-manylinux_2_17_aarch64.whl",
            "has_sig": false,
            "md5_digest": "94205aabef9518aa2eca8e51f38a0641",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 5319219,
            "upload_time": "2024-04-30T16:02:00",
            "upload_time_iso_8601": "2024-04-30T16:02:00.967842Z",
            "url": "https://files.pythonhosted.org/packages/61/5f/c895622be1bd1257c3e1b4a0d39d182b8b5aaf890781b66df6c1ba854be4/grpcio-1.63.0-cp311-cp311-manylinux_2_17_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "42dfb159e15b4a539e7a10088e76cdc929124ab3432a14b66fc2d4273ae43848",
                "md5": "a30cb6232170400f6b006a562d7e95a4",
                "sha256": "e4cbb2100ee46d024c45920d16e888ee5d3cf47c66e316210bc236d5bebc42b3"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a30cb6232170400f6b006a562d7e95a4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 5864176,
            "upload_time": "2024-04-30T16:02:04",
            "upload_time_iso_8601": "2024-04-30T16:02:04.978239Z",
            "url": "https://files.pythonhosted.org/packages/42/df/b159e15b4a539e7a10088e76cdc929124ab3432a14b66fc2d4273ae43848/grpcio-1.63.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fbe0a92c7b0eeeb3d2b033ba2b8b5b2db1e640a841a452622d2a08351997affe",
                "md5": "bc8bdedd5c2ff2c560c905f8429c62d1",
                "sha256": "1ff737cf29b5b801619f10e59b581869e32f400159e8b12d7a97e7e3bdeee6a2"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bc8bdedd5c2ff2c560c905f8429c62d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 5568793,
            "upload_time": "2024-04-30T16:02:08",
            "upload_time_iso_8601": "2024-04-30T16:02:08.206739Z",
            "url": "https://files.pythonhosted.org/packages/fb/e0/a92c7b0eeeb3d2b033ba2b8b5b2db1e640a841a452622d2a08351997affe/grpcio-1.63.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "12dc4b61ae569214392beca780f914a1d3762be61e4594f65cc08b3c04d67011",
                "md5": "bc70bafb9c27c1c204753032bb31d0fe",
                "sha256": "cd1e68776262dd44dedd7381b1a0ad09d9930ffb405f737d64f505eb7f77d6c7"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "bc70bafb9c27c1c204753032bb31d0fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 6173857,
            "upload_time": "2024-04-30T16:02:12",
            "upload_time_iso_8601": "2024-04-30T16:02:12.446252Z",
            "url": "https://files.pythonhosted.org/packages/12/dc/4b61ae569214392beca780f914a1d3762be61e4594f65cc08b3c04d67011/grpcio-1.63.0-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "97beafeac278340c395c895abc385d254496c8560a5b2495c217c4a7b6f80722",
                "md5": "ecfca5d847a99a9e5b9f12d2c58eee24",
                "sha256": "93f45f27f516548e23e4ec3fbab21b060416007dbe768a111fc4611464cc773f"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ecfca5d847a99a9e5b9f12d2c58eee24",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 5814038,
            "upload_time": "2024-04-30T16:02:16",
            "upload_time_iso_8601": "2024-04-30T16:02:16.131162Z",
            "url": "https://files.pythonhosted.org/packages/97/be/afeac278340c395c895abc385d254496c8560a5b2495c217c4a7b6f80722/grpcio-1.63.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aba4e47cd5cf7cd796e1534edea59ef59826fb248fff487a80ee92465d8433a7",
                "md5": "aff39c540f646b45bee448b8892f6a4f",
                "sha256": "878b1d88d0137df60e6b09b74cdb73db123f9579232c8456f53e9abc4f62eb3c"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "aff39c540f646b45bee448b8892f6a4f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 3285516,
            "upload_time": "2024-04-30T16:02:19",
            "upload_time_iso_8601": "2024-04-30T16:02:19.984760Z",
            "url": "https://files.pythonhosted.org/packages/ab/a4/e47cd5cf7cd796e1534edea59ef59826fb248fff487a80ee92465d8433a7/grpcio-1.63.0-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3e735e69f620288b46de1f3428b3699397bfd6b9d4a5de944345046ec3ce3808",
                "md5": "3901f7df2d1a875f075ea3d6566f5cf9",
                "sha256": "756fed02dacd24e8f488f295a913f250b56b98fb793f41d5b2de6c44fb762434"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3901f7df2d1a875f075ea3d6566f5cf9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 3902147,
            "upload_time": "2024-04-30T16:02:23",
            "upload_time_iso_8601": "2024-04-30T16:02:23.571976Z",
            "url": "https://files.pythonhosted.org/packages/3e/73/5e69f620288b46de1f3428b3699397bfd6b9d4a5de944345046ec3ce3808/grpcio-1.63.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5337456461175eedc7d6d4d989c58c565e2202834b45f6c752987103ce687d48",
                "md5": "b527091782020169109a4c675f66fbb4",
                "sha256": "93a46794cc96c3a674cdfb59ef9ce84d46185fe9421baf2268ccb556f8f81f57"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0-cp312-cp312-linux_armv7l.whl",
            "has_sig": false,
            "md5_digest": "b527091782020169109a4c675f66fbb4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 4742156,
            "upload_time": "2024-04-30T16:02:26",
            "upload_time_iso_8601": "2024-04-30T16:02:26.552353Z",
            "url": "https://files.pythonhosted.org/packages/53/37/456461175eedc7d6d4d989c58c565e2202834b45f6c752987103ce687d48/grpcio-1.63.0-cp312-cp312-linux_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c7673295b2bf2714f35fb42444e8eccd401ab47388b184dd58af4d5ec86b1b06",
                "md5": "2f46946f69d75f2c40818333f4b2fba8",
                "sha256": "a7b19dfc74d0be7032ca1eda0ed545e582ee46cd65c162f9e9fc6b26ef827dc6"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0-cp312-cp312-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "2f46946f69d75f2c40818333f4b2fba8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 10059168,
            "upload_time": "2024-04-30T16:02:30",
            "upload_time_iso_8601": "2024-04-30T16:02:30.348958Z",
            "url": "https://files.pythonhosted.org/packages/c7/67/3295b2bf2714f35fb42444e8eccd401ab47388b184dd58af4d5ec86b1b06/grpcio-1.63.0-cp312-cp312-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2f6cd5b301a0f192c5d8421701b24765ba89826719b5567a1f146941c1f01bfd",
                "md5": "06cf957cdc1014d885261bc05c1bed77",
                "sha256": "8064d986d3a64ba21e498b9a376cbc5d6ab2e8ab0e288d39f266f0fca169b90d"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0-cp312-cp312-manylinux_2_17_aarch64.whl",
            "has_sig": false,
            "md5_digest": "06cf957cdc1014d885261bc05c1bed77",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 5257086,
            "upload_time": "2024-04-30T16:02:34",
            "upload_time_iso_8601": "2024-04-30T16:02:34.952062Z",
            "url": "https://files.pythonhosted.org/packages/2f/6c/d5b301a0f192c5d8421701b24765ba89826719b5567a1f146941c1f01bfd/grpcio-1.63.0-cp312-cp312-manylinux_2_17_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a18dcd98e1a9db0ee4d1c9c464a1def8ed2c245027b9cc6d58de2cc2c8f1723a",
                "md5": "71c3e48fe4ede9676f67af47859c229a",
                "sha256": "219bb1848cd2c90348c79ed0a6b0ea51866bc7e72fa6e205e459fedab5770172"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "71c3e48fe4ede9676f67af47859c229a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 5799250,
            "upload_time": "2024-04-30T16:02:38",
            "upload_time_iso_8601": "2024-04-30T16:02:38.802591Z",
            "url": "https://files.pythonhosted.org/packages/a1/8d/cd98e1a9db0ee4d1c9c464a1def8ed2c245027b9cc6d58de2cc2c8f1723a/grpcio-1.63.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "79485f4e0b0967579b0fb04efd158321161fef1e37a651b32b5432fb4a912c55",
                "md5": "5bbb23467e85afad04075b5b7fd05a6f",
                "sha256": "a2d60cd1d58817bc5985fae6168d8b5655c4981d448d0f5b6194bbcc038090d2"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5bbb23467e85afad04075b5b7fd05a6f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 5515614,
            "upload_time": "2024-04-30T16:02:42",
            "upload_time_iso_8601": "2024-04-30T16:02:42.301178Z",
            "url": "https://files.pythonhosted.org/packages/79/48/5f4e0b0967579b0fb04efd158321161fef1e37a651b32b5432fb4a912c55/grpcio-1.63.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "38a9a350a67a9aaa99c3a200b07397c7125beabede643c91f4c3fac42a334c84",
                "md5": "68aad675b6b3a610367588c5653205bf",
                "sha256": "9e350cb096e5c67832e9b6e018cf8a0d2a53b2a958f6251615173165269a91b0"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "68aad675b6b3a610367588c5653205bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 6119735,
            "upload_time": "2024-04-30T16:02:46",
            "upload_time_iso_8601": "2024-04-30T16:02:46.079483Z",
            "url": "https://files.pythonhosted.org/packages/38/a9/a350a67a9aaa99c3a200b07397c7125beabede643c91f4c3fac42a334c84/grpcio-1.63.0-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "473a9e3b3a990bf1a1c8f6b96d755f889063caba96e672ae5d2b81321fc07b6a",
                "md5": "42e5f21e564abb3099033e2c0c598081",
                "sha256": "56cdf96ff82e3cc90dbe8bac260352993f23e8e256e063c327b6cf9c88daf7a9"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "42e5f21e564abb3099033e2c0c598081",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 5759655,
            "upload_time": "2024-04-30T16:02:50",
            "upload_time_iso_8601": "2024-04-30T16:02:50.440738Z",
            "url": "https://files.pythonhosted.org/packages/47/3a/9e3b3a990bf1a1c8f6b96d755f889063caba96e672ae5d2b81321fc07b6a/grpcio-1.63.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ff194039283cd2442b7fcda6438ef8c35c82bed47bd751d87d7284a6a95675b0",
                "md5": "1501f512ecb414eedc78d90803d472ee",
                "sha256": "3a6d1f9ea965e750db7b4ee6f9fdef5fdf135abe8a249e75d84b0a3e0c668a1b"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "1501f512ecb414eedc78d90803d472ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 3261475,
            "upload_time": "2024-04-30T16:02:54",
            "upload_time_iso_8601": "2024-04-30T16:02:54.161121Z",
            "url": "https://files.pythonhosted.org/packages/ff/19/4039283cd2442b7fcda6438ef8c35c82bed47bd751d87d7284a6a95675b0/grpcio-1.63.0-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6d83d0ea07c0609b2c0bd1acafb3a89851ae4a8f9232bc7e01d693cbb98ad448",
                "md5": "9a01dedb41cc08c08223121b25358b1f",
                "sha256": "d2497769895bb03efe3187fb1888fc20e98a5f18b3d14b606167dacda5789434"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9a01dedb41cc08c08223121b25358b1f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 3895704,
            "upload_time": "2024-04-30T16:02:57",
            "upload_time_iso_8601": "2024-04-30T16:02:57.184597Z",
            "url": "https://files.pythonhosted.org/packages/6d/83/d0ea07c0609b2c0bd1acafb3a89851ae4a8f9232bc7e01d693cbb98ad448/grpcio-1.63.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2f4e34915c18bb6ece5d1560959bb1b6e32434310c26796fb5ac511802d9e243",
                "md5": "0ac8a52acdabce0841bedbb6bbe4cbea",
                "sha256": "fdf348ae69c6ff484402cfdb14e18c1b0054ac2420079d575c53a60b9b2853ae"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0-cp38-cp38-linux_armv7l.whl",
            "has_sig": false,
            "md5_digest": "0ac8a52acdabce0841bedbb6bbe4cbea",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 4801058,
            "upload_time": "2024-04-30T16:03:00",
            "upload_time_iso_8601": "2024-04-30T16:03:00.164982Z",
            "url": "https://files.pythonhosted.org/packages/2f/4e/34915c18bb6ece5d1560959bb1b6e32434310c26796fb5ac511802d9e243/grpcio-1.63.0-cp38-cp38-linux_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9e1a6c40702170e2d89398d88cb088dc283fd581ae77f4c5c7f27f9520814201",
                "md5": "854017f2ef7a3df79856f78221a29f1b",
                "sha256": "a3abfe0b0f6798dedd2e9e92e881d9acd0fdb62ae27dcbbfa7654a57e24060c0"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "854017f2ef7a3df79856f78221a29f1b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 10152250,
            "upload_time": "2024-04-30T16:03:04",
            "upload_time_iso_8601": "2024-04-30T16:03:04.553452Z",
            "url": "https://files.pythonhosted.org/packages/9e/1a/6c40702170e2d89398d88cb088dc283fd581ae77f4c5c7f27f9520814201/grpcio-1.63.0-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef2cb5b5f01b4a3f24f1160fd48161e010d97ee615907335dfc2c46144c109ce",
                "md5": "940407c822c98da5e9adb99af2731083",
                "sha256": "6ef0ad92873672a2a3767cb827b64741c363ebaa27e7f21659e4e31f4d750280"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0-cp38-cp38-manylinux_2_17_aarch64.whl",
            "has_sig": false,
            "md5_digest": "940407c822c98da5e9adb99af2731083",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 5334128,
            "upload_time": "2024-04-30T16:03:08",
            "upload_time_iso_8601": "2024-04-30T16:03:08.474715Z",
            "url": "https://files.pythonhosted.org/packages/ef/2c/b5b5f01b4a3f24f1160fd48161e010d97ee615907335dfc2c46144c109ce/grpcio-1.63.0-cp38-cp38-manylinux_2_17_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "59a5128ad41c57d2fae0eabb0008dde1c688fc8fbca8f533c9dd27a8f89c1702",
                "md5": "738bed8ed2f7386b11b12119f5821ee6",
                "sha256": "b416252ac5588d9dfb8a30a191451adbf534e9ce5f56bb02cd193f12d8845b7f"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "738bed8ed2f7386b11b12119f5821ee6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 5874541,
            "upload_time": "2024-04-30T16:03:11",
            "upload_time_iso_8601": "2024-04-30T16:03:11.852912Z",
            "url": "https://files.pythonhosted.org/packages/59/a5/128ad41c57d2fae0eabb0008dde1c688fc8fbca8f533c9dd27a8f89c1702/grpcio-1.63.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "99981d8d1e7509be046157bf089e9b8938cbb0dd014df745c2ab107a1e350820",
                "md5": "cbd650d943d429b26435f0643e0a715b",
                "sha256": "e3b77eaefc74d7eb861d3ffbdf91b50a1bb1639514ebe764c47773b833fa2d91"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cbd650d943d429b26435f0643e0a715b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 5589559,
            "upload_time": "2024-04-30T16:03:15",
            "upload_time_iso_8601": "2024-04-30T16:03:15.116994Z",
            "url": "https://files.pythonhosted.org/packages/99/98/1d8d1e7509be046157bf089e9b8938cbb0dd014df745c2ab107a1e350820/grpcio-1.63.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "398d78b14fbff986f04a37ed3db2f1416f26af85e1d13c182ae01b8d8e0cd827",
                "md5": "b1bd1b273eea811bdf7a33ccdd668ff2",
                "sha256": "b005292369d9c1f80bf70c1db1c17c6c342da7576f1c689e8eee4fb0c256af85"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "b1bd1b273eea811bdf7a33ccdd668ff2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 6187118,
            "upload_time": "2024-04-30T16:03:18",
            "upload_time_iso_8601": "2024-04-30T16:03:18.878361Z",
            "url": "https://files.pythonhosted.org/packages/39/8d/78b14fbff986f04a37ed3db2f1416f26af85e1d13c182ae01b8d8e0cd827/grpcio-1.63.0-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "86671ca41894ee7136326fa0b5d623253188540850195e88e747319d8556f8f4",
                "md5": "ab72a0c1a3c8eb03e2ae37e573943cc4",
                "sha256": "cdcda1156dcc41e042d1e899ba1f5c2e9f3cd7625b3d6ebfa619806a4c1aadda"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ab72a0c1a3c8eb03e2ae37e573943cc4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 5833884,
            "upload_time": "2024-04-30T16:03:22",
            "upload_time_iso_8601": "2024-04-30T16:03:22.220010Z",
            "url": "https://files.pythonhosted.org/packages/86/67/1ca41894ee7136326fa0b5d623253188540850195e88e747319d8556f8f4/grpcio-1.63.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b2618415eb978c1dad69c291c3bd87bc2ec2b6c9f0776a32914291d3b79b2cb4",
                "md5": "1ff76336b89774421480905627439368",
                "sha256": "01799e8649f9e94ba7db1aeb3452188048b0019dc37696b0f5ce212c87c560c3"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "1ff76336b89774421480905627439368",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 3287358,
            "upload_time": "2024-04-30T16:03:25",
            "upload_time_iso_8601": "2024-04-30T16:03:25.408705Z",
            "url": "https://files.pythonhosted.org/packages/b2/61/8415eb978c1dad69c291c3bd87bc2ec2b6c9f0776a32914291d3b79b2cb4/grpcio-1.63.0-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c7d0d155e0bc3cd3520bce6c4869e828a26c5ab55d62f865cb7b03f63fa44b3f",
                "md5": "8a8d007c9483ae1e8a2a6eb81f1b0955",
                "sha256": "6a1a3642d76f887aa4009d92f71eb37809abceb3b7b5a1eec9c554a246f20e3a"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8a8d007c9483ae1e8a2a6eb81f1b0955",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 3905391,
            "upload_time": "2024-04-30T16:03:28",
            "upload_time_iso_8601": "2024-04-30T16:03:28.922297Z",
            "url": "https://files.pythonhosted.org/packages/c7/d0/d155e0bc3cd3520bce6c4869e828a26c5ab55d62f865cb7b03f63fa44b3f/grpcio-1.63.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bea4478c69a357650bad2d2a93be83598555568e5f65daf218b3f3614d9f3db2",
                "md5": "7242ba633b5cc5f1b5f1bdaeca013cc0",
                "sha256": "75f701ff645858a2b16bc8c9fc68af215a8bb2d5a9b647448129de6e85d52bce"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0-cp39-cp39-linux_armv7l.whl",
            "has_sig": false,
            "md5_digest": "7242ba633b5cc5f1b5f1bdaeca013cc0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 4805061,
            "upload_time": "2024-04-30T16:03:32",
            "upload_time_iso_8601": "2024-04-30T16:03:32.555754Z",
            "url": "https://files.pythonhosted.org/packages/be/a4/478c69a357650bad2d2a93be83598555568e5f65daf218b3f3614d9f3db2/grpcio-1.63.0-cp39-cp39-linux_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef7ce78880e6ba43f96d7dd2cad34edcec8d3b1710fd6fb195c98b7f7d4a8781",
                "md5": "26dc24b241ee74cf242dfb5f52a71009",
                "sha256": "cacdef0348a08e475a721967f48206a2254a1b26ee7637638d9e081761a5ba86"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "26dc24b241ee74cf242dfb5f52a71009",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 10163647,
            "upload_time": "2024-04-30T16:03:36",
            "upload_time_iso_8601": "2024-04-30T16:03:36.478843Z",
            "url": "https://files.pythonhosted.org/packages/ef/7c/e78880e6ba43f96d7dd2cad34edcec8d3b1710fd6fb195c98b7f7d4a8781/grpcio-1.63.0-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5a1a3fbf09c5a9987dbc646f5c860e4d21b90bcea387defcbe9b36d26073befa",
                "md5": "d24a8196f15166e9a8e9d403d42ce210",
                "sha256": "0697563d1d84d6985e40ec5ec596ff41b52abb3fd91ec240e8cb44a63b895094"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0-cp39-cp39-manylinux_2_17_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d24a8196f15166e9a8e9d403d42ce210",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 5337126,
            "upload_time": "2024-04-30T16:03:41",
            "upload_time_iso_8601": "2024-04-30T16:03:41.222695Z",
            "url": "https://files.pythonhosted.org/packages/5a/1a/3fbf09c5a9987dbc646f5c860e4d21b90bcea387defcbe9b36d26073befa/grpcio-1.63.0-cp39-cp39-manylinux_2_17_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "16228d1984dfa3b05864fa41143fabcf3ec15980759505ae87a7dd9873efac40",
                "md5": "91fafd994f7100d39df69b9d270d51b7",
                "sha256": "6426e1fb92d006e47476d42b8f240c1d916a6d4423c5258ccc5b105e43438f61"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "91fafd994f7100d39df69b9d270d51b7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 5880697,
            "upload_time": "2024-04-30T16:03:44",
            "upload_time_iso_8601": "2024-04-30T16:03:44.988404Z",
            "url": "https://files.pythonhosted.org/packages/16/22/8d1984dfa3b05864fa41143fabcf3ec15980759505ae87a7dd9873efac40/grpcio-1.63.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "61a2e6dc2c5c438570eea26fc7f5652aae7a1eef9c22f1314f2ebd0de5fff270",
                "md5": "0fde265580819fb15087a0404b7a3008",
                "sha256": "e48cee31bc5f5a31fb2f3b573764bd563aaa5472342860edcc7039525b53e46a"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0fde265580819fb15087a0404b7a3008",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 5594545,
            "upload_time": "2024-04-30T16:03:49",
            "upload_time_iso_8601": "2024-04-30T16:03:49.161041Z",
            "url": "https://files.pythonhosted.org/packages/61/a2/e6dc2c5c438570eea26fc7f5652aae7a1eef9c22f1314f2ebd0de5fff270/grpcio-1.63.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "447fa640eaaf360c6352df74f2129487aa0b231425a8d937c2cdfaa275f2fb2d",
                "md5": "01dc6877ee5a268f0c78a6d756f9b198",
                "sha256": "50344663068041b34a992c19c600236e7abb42d6ec32567916b87b4c8b8833b3"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "01dc6877ee5a268f0c78a6d756f9b198",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 6189742,
            "upload_time": "2024-04-30T16:03:53",
            "upload_time_iso_8601": "2024-04-30T16:03:53.336058Z",
            "url": "https://files.pythonhosted.org/packages/44/7f/a640eaaf360c6352df74f2129487aa0b231425a8d937c2cdfaa275f2fb2d/grpcio-1.63.0-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8c47eb1ec558381b3cd386790d5eb5dfd7f5bc06cc1b1ba0e87df6ea44a0af42",
                "md5": "257d906fba78670a1706fcbbb696b734",
                "sha256": "259e11932230d70ef24a21b9fb5bb947eb4703f57865a404054400ee92f42f5d"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "257d906fba78670a1706fcbbb696b734",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 5833777,
            "upload_time": "2024-04-30T16:03:56",
            "upload_time_iso_8601": "2024-04-30T16:03:56.635610Z",
            "url": "https://files.pythonhosted.org/packages/8c/47/eb1ec558381b3cd386790d5eb5dfd7f5bc06cc1b1ba0e87df6ea44a0af42/grpcio-1.63.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9932a8ce9a3ae17b582157c2547381fc442d2b0e8fa9cd3534e8faf36cd67ee2",
                "md5": "1765b042a5a6ea2cd4e506001923c7c7",
                "sha256": "a44624aad77bf8ca198c55af811fd28f2b3eaf0a50ec5b57b06c034416ef2d0a"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "1765b042a5a6ea2cd4e506001923c7c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 3285370,
            "upload_time": "2024-04-30T16:03:59",
            "upload_time_iso_8601": "2024-04-30T16:03:59.596883Z",
            "url": "https://files.pythonhosted.org/packages/99/32/a8ce9a3ae17b582157c2547381fc442d2b0e8fa9cd3534e8faf36cd67ee2/grpcio-1.63.0-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5b2a39c19fe8322f65daa10d1190611037208e2bbc1d9d5e10207989b4116743",
                "md5": "851fc717cfc4362f24cd7ac68c22507d",
                "sha256": "166e5c460e5d7d4656ff9e63b13e1f6029b122104c1633d5f37eaea348d7356d"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "851fc717cfc4362f24cd7ac68c22507d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 3900909,
            "upload_time": "2024-04-30T16:04:03",
            "upload_time_iso_8601": "2024-04-30T16:04:03.167904Z",
            "url": "https://files.pythonhosted.org/packages/5b/2a/39c19fe8322f65daa10d1190611037208e2bbc1d9d5e10207989b4116743/grpcio-1.63.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0c2a23943e19b4bbbdad60a9d881e44cd53bb48b31c7419ebb7b983edfbbb708",
                "md5": "b9ea3a03f7b3f4f15ec599f18a196ae7",
                "sha256": "f3023e14805c61bc439fb40ca545ac3d5740ce66120a678a3c6c2c55b70343d1"
            },
            "downloads": -1,
            "filename": "grpcio-1.63.0.tar.gz",
            "has_sig": false,
            "md5_digest": "b9ea3a03f7b3f4f15ec599f18a196ae7",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 26327099,
            "upload_time": "2024-04-30T16:07:58",
            "upload_time_iso_8601": "2024-04-30T16:07:58.623269Z",
            "url": "https://files.pythonhosted.org/packages/0c/2a/23943e19b4bbbdad60a9d881e44cd53bb48b31c7419ebb7b983edfbbb708/grpcio-1.63.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-30 16:07:58",
    "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.27375s