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
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
# To include systemd socket-activation feature in the build,
# first install the `libsystemd-dev` package, then :
$ export GRPC_PYTHON_BUILD_WITH_SYSTEMD=1
# 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
Versioning
~~~~~~~~~~
gRPC Python is developed in a monorepo shared with implementations of gRPC in
other programming languages. While the minor versions are released in
lock-step with other languages in the repo (e.g. 1.63.0 is guaranteed to exist
for all languages), patch versions may be specific to only a single
language. For example, if 1.63.1 is a C++-specific patch, 1.63.1 may not be
uploaded to PyPi. As a result, it is __not__ a good assumption that the latest
patch for a given minor version on Github is also the latest patch for that
same minor version on PyPi.
Raw data
{
"_id": null,
"home_page": "https://grpc.io",
"name": "grpcio",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": null,
"author": "The gRPC Authors",
"author_email": "grpc-io@googlegroups.com",
"download_url": "https://files.pythonhosted.org/packages/38/b4/35feb8f7cab7239c5b94bd2db71abb3d6adb5f335ad8f131abb6060840b6/grpcio-1.74.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\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 # To include systemd socket-activation feature in the build,\n # first install the `libsystemd-dev` package, then :\n $ export GRPC_PYTHON_BUILD_WITH_SYSTEMD=1\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\nVersioning\n~~~~~~~~~~\n\ngRPC Python is developed in a monorepo shared with implementations of gRPC in\nother programming languages. While the minor versions are released in\nlock-step with other languages in the repo (e.g. 1.63.0 is guaranteed to exist\nfor all languages), patch versions may be specific to only a single\nlanguage. For example, if 1.63.1 is a C++-specific patch, 1.63.1 may not be\nuploaded to PyPi. As a result, it is __not__ a good assumption that the latest\npatch for a given minor version on Github is also the latest patch for that\nsame minor version on PyPi.\n\n",
"bugtrack_url": null,
"license": "Apache License 2.0",
"summary": "HTTP/2-based RPC framework",
"version": "1.74.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": null,
"digests": {
"blake2b_256": "665468e51a90797ad7afc5b0a7881426c337f6a9168ebab73c3210b76aa7c90d",
"md5": "c9267f5d3884b549954a590f830b4e6d",
"sha256": "85bd5cdf4ed7b2d6438871adf6afff9af7096486fcf51818a81b77ef4dd30907"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp310-cp310-linux_armv7l.whl",
"has_sig": false,
"md5_digest": "c9267f5d3884b549954a590f830b4e6d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 5481935,
"upload_time": "2025-07-24T18:52:43",
"upload_time_iso_8601": "2025-07-24T18:52:43.756085Z",
"url": "https://files.pythonhosted.org/packages/66/54/68e51a90797ad7afc5b0a7881426c337f6a9168ebab73c3210b76aa7c90d/grpcio-1.74.0-cp310-cp310-linux_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "322aaf817c7e9843929e93e54d09c9aee2555c2e8d81b93102a9426b36e91833",
"md5": "706b15f864ad94af7922eab540d88ce6",
"sha256": "68c8ebcca945efff9d86d8d6d7bfb0841cf0071024417e2d7f45c5e46b5b08eb"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp310-cp310-macosx_11_0_universal2.whl",
"has_sig": false,
"md5_digest": "706b15f864ad94af7922eab540d88ce6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 10986796,
"upload_time": "2025-07-24T18:52:47",
"upload_time_iso_8601": "2025-07-24T18:52:47.219142Z",
"url": "https://files.pythonhosted.org/packages/32/2a/af817c7e9843929e93e54d09c9aee2555c2e8d81b93102a9426b36e91833/grpcio-1.74.0-cp310-cp310-macosx_11_0_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d594d67756638d7bb07750b07d0826c68e414124574b53840ba1ff777abcd388",
"md5": "0b10c570f9cbb2f48a9edc24032be090",
"sha256": "e154d230dc1bbbd78ad2fdc3039fa50ad7ffcf438e4eb2fa30bce223a70c7486"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp310-cp310-manylinux_2_17_aarch64.whl",
"has_sig": false,
"md5_digest": "0b10c570f9cbb2f48a9edc24032be090",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 5983663,
"upload_time": "2025-07-24T18:52:49",
"upload_time_iso_8601": "2025-07-24T18:52:49.463824Z",
"url": "https://files.pythonhosted.org/packages/d5/94/d67756638d7bb07750b07d0826c68e414124574b53840ba1ff777abcd388/grpcio-1.74.0-cp310-cp310-manylinux_2_17_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "35f5c5e4853bf42148fea8532d49e919426585b73eafcf379a712934652a8de9",
"md5": "882a115e705fbd958389072268c60c51",
"sha256": "e8978003816c7b9eabe217f88c78bc26adc8f9304bf6a594b02e5a49b2ef9c11"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "882a115e705fbd958389072268c60c51",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 6653765,
"upload_time": "2025-07-24T18:52:51",
"upload_time_iso_8601": "2025-07-24T18:52:51.094117Z",
"url": "https://files.pythonhosted.org/packages/35/f5/c5e4853bf42148fea8532d49e919426585b73eafcf379a712934652a8de9/grpcio-1.74.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fd75a1991dd64b331d199935e096cc9daa3415ee5ccbe9f909aa48eded7bba34",
"md5": "e33ebd4673a0e7de2739517ea6ad980b",
"sha256": "c3d7bd6e3929fd2ea7fbc3f562e4987229ead70c9ae5f01501a46701e08f1ad9"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e33ebd4673a0e7de2739517ea6ad980b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 6215172,
"upload_time": "2025-07-24T18:52:53",
"upload_time_iso_8601": "2025-07-24T18:52:53.282642Z",
"url": "https://files.pythonhosted.org/packages/fd/75/a1991dd64b331d199935e096cc9daa3415ee5ccbe9f909aa48eded7bba34/grpcio-1.74.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "01a47cef3dbb3b073d0ce34fd507efc44ac4c9442a0ef9fba4fb3f5c551efef5",
"md5": "bf284a95074d4af5881a2cd7f6f04f16",
"sha256": "136b53c91ac1d02c8c24201bfdeb56f8b3ac3278668cbb8e0ba49c88069e1bdc"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp310-cp310-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "bf284a95074d4af5881a2cd7f6f04f16",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 6329142,
"upload_time": "2025-07-24T18:52:54",
"upload_time_iso_8601": "2025-07-24T18:52:54.927242Z",
"url": "https://files.pythonhosted.org/packages/01/a4/7cef3dbb3b073d0ce34fd507efc44ac4c9442a0ef9fba4fb3f5c551efef5/grpcio-1.74.0-cp310-cp310-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bfd3587920f882b46e835ad96014087054655312400e2f1f1446419e5179a383",
"md5": "884c5e0a07f56d7ca1006efffa69e025",
"sha256": "fe0f540750a13fd8e5da4b3eaba91a785eea8dca5ccd2bc2ffe978caa403090e"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp310-cp310-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "884c5e0a07f56d7ca1006efffa69e025",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 7018632,
"upload_time": "2025-07-24T18:52:56",
"upload_time_iso_8601": "2025-07-24T18:52:56.523141Z",
"url": "https://files.pythonhosted.org/packages/bf/d3/587920f882b46e835ad96014087054655312400e2f1f1446419e5179a383/grpcio-1.74.0-cp310-cp310-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1f95c70a3b15a0bc83334b507e3d2ae20ee8fa38d419b8758a4d838f5c2a7d32",
"md5": "99de29792502aaf4feb9a89af0ca2f64",
"sha256": "4e4181bfc24413d1e3a37a0b7889bea68d973d4b45dd2bc68bb766c140718f82"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "99de29792502aaf4feb9a89af0ca2f64",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 6509641,
"upload_time": "2025-07-24T18:52:58",
"upload_time_iso_8601": "2025-07-24T18:52:58.495056Z",
"url": "https://files.pythonhosted.org/packages/1f/95/c70a3b15a0bc83334b507e3d2ae20ee8fa38d419b8758a4d838f5c2a7d32/grpcio-1.74.0-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4b062e7042d06247d668ae69ea6998eca33f475fd4e2855f94dcb2aa5daef334",
"md5": "85de0f44a761f82aa60c0af7d63ac66a",
"sha256": "1733969040989f7acc3d94c22f55b4a9501a30f6aaacdbccfaba0a3ffb255ab7"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "85de0f44a761f82aa60c0af7d63ac66a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 3817478,
"upload_time": "2025-07-24T18:53:00",
"upload_time_iso_8601": "2025-07-24T18:53:00.128044Z",
"url": "https://files.pythonhosted.org/packages/4b/06/2e7042d06247d668ae69ea6998eca33f475fd4e2855f94dcb2aa5daef334/grpcio-1.74.0-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9320e02b9dcca3ee91124060b65bbf5b8e1af80b3b76a30f694b44b964ab4d71",
"md5": "6b94c4603764f91163b3ca08032682bc",
"sha256": "9e912d3c993a29df6c627459af58975b2e5c897d93287939b9d5065f000249b5"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "6b94c4603764f91163b3ca08032682bc",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 4493971,
"upload_time": "2025-07-24T18:53:02",
"upload_time_iso_8601": "2025-07-24T18:53:02.068703Z",
"url": "https://files.pythonhosted.org/packages/93/20/e02b9dcca3ee91124060b65bbf5b8e1af80b3b76a30f694b44b964ab4d71/grpcio-1.74.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e777b2f06db9f240a5abeddd23a0e49eae2b6ac54d85f0e5267784ce02269c3b",
"md5": "4fa3060495f4ba3cf530b278e0a47fbf",
"sha256": "69e1a8180868a2576f02356565f16635b99088da7df3d45aaa7e24e73a054e31"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp311-cp311-linux_armv7l.whl",
"has_sig": false,
"md5_digest": "4fa3060495f4ba3cf530b278e0a47fbf",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 5487368,
"upload_time": "2025-07-24T18:53:03",
"upload_time_iso_8601": "2025-07-24T18:53:03.548244Z",
"url": "https://files.pythonhosted.org/packages/e7/77/b2f06db9f240a5abeddd23a0e49eae2b6ac54d85f0e5267784ce02269c3b/grpcio-1.74.0-cp311-cp311-linux_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "48990ac8678a819c28d9a370a663007581744a9f2a844e32f0fa95e1ddda5b9e",
"md5": "7e226a85709d00d7d882ee28e8ba299d",
"sha256": "8efe72fde5500f47aca1ef59495cb59c885afe04ac89dd11d810f2de87d935d4"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp311-cp311-macosx_11_0_universal2.whl",
"has_sig": false,
"md5_digest": "7e226a85709d00d7d882ee28e8ba299d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 10999804,
"upload_time": "2025-07-24T18:53:05",
"upload_time_iso_8601": "2025-07-24T18:53:05.095846Z",
"url": "https://files.pythonhosted.org/packages/48/99/0ac8678a819c28d9a370a663007581744a9f2a844e32f0fa95e1ddda5b9e/grpcio-1.74.0-cp311-cp311-macosx_11_0_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "45c6a2d586300d9e14ad72e8dc211c7aecb45fe9846a51e558c5bca0c9102c7f",
"md5": "c8668d9b291796433935fb63a41ebc3c",
"sha256": "a8f0302f9ac4e9923f98d8e243939a6fb627cd048f5cd38595c97e38020dffce"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp311-cp311-manylinux_2_17_aarch64.whl",
"has_sig": false,
"md5_digest": "c8668d9b291796433935fb63a41ebc3c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 5987667,
"upload_time": "2025-07-24T18:53:07",
"upload_time_iso_8601": "2025-07-24T18:53:07.157891Z",
"url": "https://files.pythonhosted.org/packages/45/c6/a2d586300d9e14ad72e8dc211c7aecb45fe9846a51e558c5bca0c9102c7f/grpcio-1.74.0-cp311-cp311-manylinux_2_17_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c9575f338bf56a7f22584e68d669632e521f0de460bb3749d54533fc3d0fca4f",
"md5": "5d450cd32bf6a01fe39cbbe4b41cb651",
"sha256": "2f609a39f62a6f6f05c7512746798282546358a37ea93c1fcbadf8b2fed162e3"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "5d450cd32bf6a01fe39cbbe4b41cb651",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 6655612,
"upload_time": "2025-07-24T18:53:09",
"upload_time_iso_8601": "2025-07-24T18:53:09.244382Z",
"url": "https://files.pythonhosted.org/packages/c9/57/5f338bf56a7f22584e68d669632e521f0de460bb3749d54533fc3d0fca4f/grpcio-1.74.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "82eaa4820c4c44c8b35b1903a6c72a5bdccec92d0840cf5c858c498c66786ba5",
"md5": "f46aa068fa5672543bf4b614e85bdc6e",
"sha256": "c98e0b7434a7fa4e3e63f250456eaef52499fba5ae661c58cc5b5477d11e7182"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "f46aa068fa5672543bf4b614e85bdc6e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 6219544,
"upload_time": "2025-07-24T18:53:11",
"upload_time_iso_8601": "2025-07-24T18:53:11.221384Z",
"url": "https://files.pythonhosted.org/packages/82/ea/a4820c4c44c8b35b1903a6c72a5bdccec92d0840cf5c858c498c66786ba5/grpcio-1.74.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a4170537630a921365928f5abb6d14c79ba4dcb3e662e0dbeede8af4138d9dcf",
"md5": "fd0dbc302c54508e244c0158a130b69f",
"sha256": "662456c4513e298db6d7bd9c3b8df6f75f8752f0ba01fb653e252ed4a59b5a5d"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp311-cp311-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "fd0dbc302c54508e244c0158a130b69f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 6334863,
"upload_time": "2025-07-24T18:53:12",
"upload_time_iso_8601": "2025-07-24T18:53:12.925235Z",
"url": "https://files.pythonhosted.org/packages/a4/17/0537630a921365928f5abb6d14c79ba4dcb3e662e0dbeede8af4138d9dcf/grpcio-1.74.0-cp311-cp311-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e2a685ca6cb9af3f13e1320d0a806658dca432ff88149d5972df1f7b51e87127",
"md5": "8455181117dd6be504af6bd33eb86b4b",
"sha256": "3d14e3c4d65e19d8430a4e28ceb71ace4728776fd6c3ce34016947474479683f"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp311-cp311-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "8455181117dd6be504af6bd33eb86b4b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 7019320,
"upload_time": "2025-07-24T18:53:15",
"upload_time_iso_8601": "2025-07-24T18:53:15.002266Z",
"url": "https://files.pythonhosted.org/packages/e2/a6/85ca6cb9af3f13e1320d0a806658dca432ff88149d5972df1f7b51e87127/grpcio-1.74.0-cp311-cp311-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4fa7fe2beab970a1e25d2eff108b3cf4f7d9a53c185106377a3d1989216eba45",
"md5": "c5d378e66518cde9c890da49464e85b1",
"sha256": "1bf949792cee20d2078323a9b02bacbbae002b9e3b9e2433f2741c15bdeba1c4"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "c5d378e66518cde9c890da49464e85b1",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 6514228,
"upload_time": "2025-07-24T18:53:16",
"upload_time_iso_8601": "2025-07-24T18:53:16.999971Z",
"url": "https://files.pythonhosted.org/packages/4f/a7/fe2beab970a1e25d2eff108b3cf4f7d9a53c185106377a3d1989216eba45/grpcio-1.74.0-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6ac22f9c945c8a248cebc3ccda1b7a1bf1775b9d7d59e444dbb18c0014e23da6",
"md5": "9ea1dd1a12b12474678680a0808b11ac",
"sha256": "55b453812fa7c7ce2f5c88be3018fb4a490519b6ce80788d5913f3f9d7da8c7b"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "9ea1dd1a12b12474678680a0808b11ac",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 3817216,
"upload_time": "2025-07-24T18:53:20",
"upload_time_iso_8601": "2025-07-24T18:53:20.564376Z",
"url": "https://files.pythonhosted.org/packages/6a/c2/2f9c945c8a248cebc3ccda1b7a1bf1775b9d7d59e444dbb18c0014e23da6/grpcio-1.74.0-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ffd1a9cf9c94b55becda2199299a12b9feef0c79946b0d9d34c989de6d12d05d",
"md5": "b26fa79f4e746826eba6abcfca7f5b20",
"sha256": "86ad489db097141a907c559988c29718719aa3e13370d40e20506f11b4de0d11"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "b26fa79f4e746826eba6abcfca7f5b20",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 4495380,
"upload_time": "2025-07-24T18:53:22",
"upload_time_iso_8601": "2025-07-24T18:53:22.058027Z",
"url": "https://files.pythonhosted.org/packages/ff/d1/a9cf9c94b55becda2199299a12b9feef0c79946b0d9d34c989de6d12d05d/grpcio-1.74.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4c5de504d5d5c4469823504f65687d6c8fb97b7f7bf0b34873b7598f1df24630",
"md5": "3983c960b174e184963e7def9f5721e7",
"sha256": "8533e6e9c5bd630ca98062e3a1326249e6ada07d05acf191a77bc33f8948f3d8"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp312-cp312-linux_armv7l.whl",
"has_sig": false,
"md5_digest": "3983c960b174e184963e7def9f5721e7",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 5445551,
"upload_time": "2025-07-24T18:53:23",
"upload_time_iso_8601": "2025-07-24T18:53:23.641304Z",
"url": "https://files.pythonhosted.org/packages/4c/5d/e504d5d5c4469823504f65687d6c8fb97b7f7bf0b34873b7598f1df24630/grpcio-1.74.0-cp312-cp312-linux_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4301730e37056f96f2f6ce9f17999af1556df62ee8dab7fa48bceeaab5fd3008",
"md5": "e6de4986e4df3c3e369b28c79a2280d9",
"sha256": "2918948864fec2a11721d91568effffbe0a02b23ecd57f281391d986847982f6"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp312-cp312-macosx_11_0_universal2.whl",
"has_sig": false,
"md5_digest": "e6de4986e4df3c3e369b28c79a2280d9",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 10979810,
"upload_time": "2025-07-24T18:53:25",
"upload_time_iso_8601": "2025-07-24T18:53:25.349400Z",
"url": "https://files.pythonhosted.org/packages/43/01/730e37056f96f2f6ce9f17999af1556df62ee8dab7fa48bceeaab5fd3008/grpcio-1.74.0-cp312-cp312-macosx_11_0_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "793d09fd100473ea5c47083889ca47ffd356576173ec134312f6aa0e13111dee",
"md5": "33bbc75a1c846d4f62d8eefd5658cb77",
"sha256": "60d2d48b0580e70d2e1954d0d19fa3c2e60dd7cbed826aca104fff518310d1c5"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp312-cp312-manylinux_2_17_aarch64.whl",
"has_sig": false,
"md5_digest": "33bbc75a1c846d4f62d8eefd5658cb77",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 5941946,
"upload_time": "2025-07-24T18:53:27",
"upload_time_iso_8601": "2025-07-24T18:53:27.387552Z",
"url": "https://files.pythonhosted.org/packages/79/3d/09fd100473ea5c47083889ca47ffd356576173ec134312f6aa0e13111dee/grpcio-1.74.0-cp312-cp312-manylinux_2_17_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8a9912d2cca0a63c874c6d3d195629dcd85cdf5d6f98a30d8db44271f8a97b93",
"md5": "6b737b3924827397e09ee67c871fded4",
"sha256": "3601274bc0523f6dc07666c0e01682c94472402ac2fd1226fd96e079863bfa49"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "6b737b3924827397e09ee67c871fded4",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 6621763,
"upload_time": "2025-07-24T18:53:29",
"upload_time_iso_8601": "2025-07-24T18:53:29.193377Z",
"url": "https://files.pythonhosted.org/packages/8a/99/12d2cca0a63c874c6d3d195629dcd85cdf5d6f98a30d8db44271f8a97b93/grpcio-1.74.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9d2c930b0e7a2f1029bbc193443c7bc4dc2a46fedb0203c8793dcd97081f1520",
"md5": "0dc0457d83eb44cea2c4357c043ea064",
"sha256": "176d60a5168d7948539def20b2a3adcce67d72454d9ae05969a2e73f3a0feee7"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "0dc0457d83eb44cea2c4357c043ea064",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 6180664,
"upload_time": "2025-07-24T18:53:30",
"upload_time_iso_8601": "2025-07-24T18:53:30.823400Z",
"url": "https://files.pythonhosted.org/packages/9d/2c/930b0e7a2f1029bbc193443c7bc4dc2a46fedb0203c8793dcd97081f1520/grpcio-1.74.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dbd5ff8a2442180ad0867717e670f5ec42bfd8d38b92158ad6bcd864e6d4b1ed",
"md5": "acd913b1cf868d1b8ebe1937efa64812",
"sha256": "e759f9e8bc908aaae0412642afe5416c9f983a80499448fcc7fab8692ae044c3"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp312-cp312-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "acd913b1cf868d1b8ebe1937efa64812",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 6301083,
"upload_time": "2025-07-24T18:53:32",
"upload_time_iso_8601": "2025-07-24T18:53:32.454418Z",
"url": "https://files.pythonhosted.org/packages/db/d5/ff8a2442180ad0867717e670f5ec42bfd8d38b92158ad6bcd864e6d4b1ed/grpcio-1.74.0-cp312-cp312-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b0bab361d390451a37ca118e4ec7dccec690422e05bc85fba2ec72b06cefec9f",
"md5": "081147507dee449f10408b05f68a2152",
"sha256": "9e7c4389771855a92934b2846bd807fc25a3dfa820fd912fe6bd8136026b2707"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp312-cp312-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "081147507dee449f10408b05f68a2152",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 6994132,
"upload_time": "2025-07-24T18:53:34",
"upload_time_iso_8601": "2025-07-24T18:53:34.506261Z",
"url": "https://files.pythonhosted.org/packages/b0/ba/b361d390451a37ca118e4ec7dccec690422e05bc85fba2ec72b06cefec9f/grpcio-1.74.0-cp312-cp312-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3b0c3a5fa47d2437a44ced74141795ac0251bbddeae74bf81df3447edd767d27",
"md5": "ee13e9f90845275e2d8b1276fac4e21f",
"sha256": "cce634b10aeab37010449124814b05a62fb5f18928ca878f1bf4750d1f0c815b"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp312-cp312-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "ee13e9f90845275e2d8b1276fac4e21f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 6489616,
"upload_time": "2025-07-24T18:53:36",
"upload_time_iso_8601": "2025-07-24T18:53:36.217508Z",
"url": "https://files.pythonhosted.org/packages/3b/0c/3a5fa47d2437a44ced74141795ac0251bbddeae74bf81df3447edd767d27/grpcio-1.74.0-cp312-cp312-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ae95ab64703b436d99dc5217228babc76047d60e9ad14df129e307b5fec81fd0",
"md5": "f202ee99420abf0958141c1f79026960",
"sha256": "885912559974df35d92219e2dc98f51a16a48395f37b92865ad45186f294096c"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "f202ee99420abf0958141c1f79026960",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 3807083,
"upload_time": "2025-07-24T18:53:37",
"upload_time_iso_8601": "2025-07-24T18:53:37.911803Z",
"url": "https://files.pythonhosted.org/packages/ae/95/ab64703b436d99dc5217228babc76047d60e9ad14df129e307b5fec81fd0/grpcio-1.74.0-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8459900aa2445891fc47a33f7d2f76e00ca5d6ae6584b20d19af9c06fa09bf9a",
"md5": "61c9516b9e525adc9112c9aae1d5b862",
"sha256": "42f8fee287427b94be63d916c90399ed310ed10aadbf9e2e5538b3e497d269bc"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "61c9516b9e525adc9112c9aae1d5b862",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 4490123,
"upload_time": "2025-07-24T18:53:39",
"upload_time_iso_8601": "2025-07-24T18:53:39.528371Z",
"url": "https://files.pythonhosted.org/packages/84/59/900aa2445891fc47a33f7d2f76e00ca5d6ae6584b20d19af9c06fa09bf9a/grpcio-1.74.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d4d81004a5f468715221450e66b051c839c2ce9a985aa3ee427422061fcbb6aa",
"md5": "84240b16eb0e87d7c803b79359222acf",
"sha256": "2bc2d7d8d184e2362b53905cb1708c84cb16354771c04b490485fa07ce3a1d89"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp313-cp313-linux_armv7l.whl",
"has_sig": false,
"md5_digest": "84240b16eb0e87d7c803b79359222acf",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 5449488,
"upload_time": "2025-07-24T18:53:41",
"upload_time_iso_8601": "2025-07-24T18:53:41.174253Z",
"url": "https://files.pythonhosted.org/packages/d4/d8/1004a5f468715221450e66b051c839c2ce9a985aa3ee427422061fcbb6aa/grpcio-1.74.0-cp313-cp313-linux_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "940e33731a03f63740d7743dced423846c831d8e6da808fcd02821a4416df7fa",
"md5": "932dedb4a46657dadff1391192499f2b",
"sha256": "c14e803037e572c177ba54a3e090d6eb12efd795d49327c5ee2b3bddb836bf01"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp313-cp313-macosx_11_0_universal2.whl",
"has_sig": false,
"md5_digest": "932dedb4a46657dadff1391192499f2b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 10974059,
"upload_time": "2025-07-24T18:53:43",
"upload_time_iso_8601": "2025-07-24T18:53:43.066159Z",
"url": "https://files.pythonhosted.org/packages/94/0e/33731a03f63740d7743dced423846c831d8e6da808fcd02821a4416df7fa/grpcio-1.74.0-cp313-cp313-macosx_11_0_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0dc63d2c14d87771a421205bdca991467cfe473ee4c6a1231c1ede5248c62ab8",
"md5": "d8321c9d28cd7cc9f461c73c8e571ef6",
"sha256": "f6ec94f0e50eb8fa1744a731088b966427575e40c2944a980049798b127a687e"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp313-cp313-manylinux_2_17_aarch64.whl",
"has_sig": false,
"md5_digest": "d8321c9d28cd7cc9f461c73c8e571ef6",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 5945647,
"upload_time": "2025-07-24T18:53:45",
"upload_time_iso_8601": "2025-07-24T18:53:45.269461Z",
"url": "https://files.pythonhosted.org/packages/0d/c6/3d2c14d87771a421205bdca991467cfe473ee4c6a1231c1ede5248c62ab8/grpcio-1.74.0-cp313-cp313-manylinux_2_17_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c5835a354c8aaff58594eef7fffebae41a0f8995a6258bbc6809b800c33d4c13",
"md5": "73f85dfb336d7b1763f2e4d79bcbf00e",
"sha256": "566b9395b90cc3d0d0c6404bc8572c7c18786ede549cdb540ae27b58afe0fb91"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "73f85dfb336d7b1763f2e4d79bcbf00e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 6626101,
"upload_time": "2025-07-24T18:53:47",
"upload_time_iso_8601": "2025-07-24T18:53:47.015759Z",
"url": "https://files.pythonhosted.org/packages/c5/83/5a354c8aaff58594eef7fffebae41a0f8995a6258bbc6809b800c33d4c13/grpcio-1.74.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3fca4fdc7bf59bf6994aa45cbd4ef1055cd65e2884de6113dbd49f75498ddb08",
"md5": "493cf768525a223933a5da02a5497a72",
"sha256": "e1ea6176d7dfd5b941ea01c2ec34de9531ba494d541fe2057c904e601879f249"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "493cf768525a223933a5da02a5497a72",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 6182562,
"upload_time": "2025-07-24T18:53:48",
"upload_time_iso_8601": "2025-07-24T18:53:48.967632Z",
"url": "https://files.pythonhosted.org/packages/3f/ca/4fdc7bf59bf6994aa45cbd4ef1055cd65e2884de6113dbd49f75498ddb08/grpcio-1.74.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fd482869e5b2c1922583686f7ae674937986807c2f676d08be70d0a541316270",
"md5": "742120de7152f47e6d4e5522696cdead",
"sha256": "64229c1e9cea079420527fa8ac45d80fc1e8d3f94deaa35643c381fa8d98f362"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp313-cp313-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "742120de7152f47e6d4e5522696cdead",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 6303425,
"upload_time": "2025-07-24T18:53:50",
"upload_time_iso_8601": "2025-07-24T18:53:50.847995Z",
"url": "https://files.pythonhosted.org/packages/fd/48/2869e5b2c1922583686f7ae674937986807c2f676d08be70d0a541316270/grpcio-1.74.0-cp313-cp313-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a60ebac93147b9a164f759497bc6913e74af1cb632c733c7af62c0336782bd38",
"md5": "54ad140dc687424aeec559a9378562c2",
"sha256": "0f87bddd6e27fc776aacf7ebfec367b6d49cad0455123951e4488ea99d9b9b8f"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp313-cp313-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "54ad140dc687424aeec559a9378562c2",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 6996533,
"upload_time": "2025-07-24T18:53:52",
"upload_time_iso_8601": "2025-07-24T18:53:52.747578Z",
"url": "https://files.pythonhosted.org/packages/a6/0e/bac93147b9a164f759497bc6913e74af1cb632c733c7af62c0336782bd38/grpcio-1.74.0-cp313-cp313-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "84359f6b2503c1fd86d068b46818bbd7329db26a87cdd8c01e0d1a9abea1104c",
"md5": "445788e3be7fb978c198df2cf04dfa20",
"sha256": "3b03d8f2a07f0fea8c8f74deb59f8352b770e3900d143b3d1475effcb08eec20"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp313-cp313-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "445788e3be7fb978c198df2cf04dfa20",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 6491489,
"upload_time": "2025-07-24T18:53:55",
"upload_time_iso_8601": "2025-07-24T18:53:55.060166Z",
"url": "https://files.pythonhosted.org/packages/84/35/9f6b2503c1fd86d068b46818bbd7329db26a87cdd8c01e0d1a9abea1104c/grpcio-1.74.0-cp313-cp313-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7533a04e99be2a82c4cbc4039eb3a76f6c3632932b9d5d295221389d10ac9ca7",
"md5": "f1ff65fb13cb3ea18b6d2958dc179dd3",
"sha256": "b6a73b2ba83e663b2480a90b82fdae6a7aa6427f62bf43b29912c0cfd1aa2bfa"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "f1ff65fb13cb3ea18b6d2958dc179dd3",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 3805811,
"upload_time": "2025-07-24T18:53:56",
"upload_time_iso_8601": "2025-07-24T18:53:56.798121Z",
"url": "https://files.pythonhosted.org/packages/75/33/a04e99be2a82c4cbc4039eb3a76f6c3632932b9d5d295221389d10ac9ca7/grpcio-1.74.0-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3480de3eb55eb581815342d097214bed4c59e806b05f1b3110df03b2280d6dfd",
"md5": "f97f877c3926562a7ae7de469ea5e49f",
"sha256": "fd3c71aeee838299c5887230b8a1822795325ddfea635edd82954c1eaa831e24"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "f97f877c3926562a7ae7de469ea5e49f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 4489214,
"upload_time": "2025-07-24T18:53:59",
"upload_time_iso_8601": "2025-07-24T18:53:59.771814Z",
"url": "https://files.pythonhosted.org/packages/34/80/de3eb55eb581815342d097214bed4c59e806b05f1b3110df03b2280d6dfd/grpcio-1.74.0-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0ddedd7db504703c3b669f1b83265e2fbb5d79c8d3da86ea52cbd9202b9a8b05",
"md5": "d693b28a2368df6b9a192984733f7755",
"sha256": "4bc5fca10aaf74779081e16c2bcc3d5ec643ffd528d9e7b1c9039000ead73bae"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp39-cp39-linux_armv7l.whl",
"has_sig": false,
"md5_digest": "d693b28a2368df6b9a192984733f7755",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 5480998,
"upload_time": "2025-07-24T18:54:01",
"upload_time_iso_8601": "2025-07-24T18:54:01.868483Z",
"url": "https://files.pythonhosted.org/packages/0d/de/dd7db504703c3b669f1b83265e2fbb5d79c8d3da86ea52cbd9202b9a8b05/grpcio-1.74.0-cp39-cp39-linux_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1c576537ace3af4c97f2b013ceff1f2e789c52b8448334ca3a0c36e7421cf6ed",
"md5": "f4f72543fad7bb5d2a53aedc81a67306",
"sha256": "6bab67d15ad617aff094c382c882e0177637da73cbc5532d52c07b4ee887a87b"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp39-cp39-macosx_11_0_universal2.whl",
"has_sig": false,
"md5_digest": "f4f72543fad7bb5d2a53aedc81a67306",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 10990945,
"upload_time": "2025-07-24T18:54:03",
"upload_time_iso_8601": "2025-07-24T18:54:03.854380Z",
"url": "https://files.pythonhosted.org/packages/1c/57/6537ace3af4c97f2b013ceff1f2e789c52b8448334ca3a0c36e7421cf6ed/grpcio-1.74.0-cp39-cp39-macosx_11_0_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d8f2579410017de16cd27f35326df6fecde81bff6e9b43c871d28263fa8a77a4",
"md5": "84c9efc3d268f1ff0099d52e99d77f3c",
"sha256": "655726919b75ab3c34cdad39da5c530ac6fa32696fb23119e36b64adcfca174a"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp39-cp39-manylinux_2_17_aarch64.whl",
"has_sig": false,
"md5_digest": "84c9efc3d268f1ff0099d52e99d77f3c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 5983968,
"upload_time": "2025-07-24T18:54:06",
"upload_time_iso_8601": "2025-07-24T18:54:06.434318Z",
"url": "https://files.pythonhosted.org/packages/d8/f2/579410017de16cd27f35326df6fecde81bff6e9b43c871d28263fa8a77a4/grpcio-1.74.0-cp39-cp39-manylinux_2_17_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a06a0f3571003663d991f4ea953b82dc518fed094c182decc48c9b0242bec7e3",
"md5": "85c31a81df4409c0fcb176f6f429c678",
"sha256": "1a2b06afe2e50ebfd46247ac3ba60cac523f54ec7792ae9ba6073c12daf26f0a"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "85c31a81df4409c0fcb176f6f429c678",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 6654768,
"upload_time": "2025-07-24T18:54:08",
"upload_time_iso_8601": "2025-07-24T18:54:08.632892Z",
"url": "https://files.pythonhosted.org/packages/a0/6a/0f3571003663d991f4ea953b82dc518fed094c182decc48c9b0242bec7e3/grpcio-1.74.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "24e31d42cb00e0390bacab3c9ee79e37416140d907c8c7c7a92654c535805963",
"md5": "ebb0700b3c953d0e44f9b4f44c128215",
"sha256": "5f251c355167b2360537cf17bea2cf0197995e551ab9da6a0a59b3da5e8704f9"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "ebb0700b3c953d0e44f9b4f44c128215",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 6215627,
"upload_time": "2025-07-24T18:54:10",
"upload_time_iso_8601": "2025-07-24T18:54:10.584080Z",
"url": "https://files.pythonhosted.org/packages/24/e3/1d42cb00e0390bacab3c9ee79e37416140d907c8c7c7a92654c535805963/grpcio-1.74.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "77844f8312bc4430eda1cdbc4e8689f54daa807b5d304d4ea53e9d27c448889b",
"md5": "6cff99830f391ad5d9b6a7ad72752a32",
"sha256": "8f7b5882fb50632ab1e48cb3122d6df55b9afabc265582808036b6e51b9fd6b7"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp39-cp39-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "6cff99830f391ad5d9b6a7ad72752a32",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 6330938,
"upload_time": "2025-07-24T18:54:12",
"upload_time_iso_8601": "2025-07-24T18:54:12.557475Z",
"url": "https://files.pythonhosted.org/packages/77/84/4f8312bc4430eda1cdbc4e8689f54daa807b5d304d4ea53e9d27c448889b/grpcio-1.74.0-cp39-cp39-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2fc0422d2b40110716a4775212256a56ac71586be2403a7b7055818bfd0fc203",
"md5": "c7001d2d649c39cdedb6f27fbb860297",
"sha256": "834988b6c34515545b3edd13e902c1acdd9f2465d386ea5143fb558f153a7176"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp39-cp39-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "c7001d2d649c39cdedb6f27fbb860297",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 7019216,
"upload_time": "2025-07-24T18:54:14",
"upload_time_iso_8601": "2025-07-24T18:54:14.475092Z",
"url": "https://files.pythonhosted.org/packages/2f/c0/422d2b40110716a4775212256a56ac71586be2403a7b7055818bfd0fc203/grpcio-1.74.0-cp39-cp39-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6f84668ab6df27fb35886dfa1242f2d302d0cd319c72e3dd3845a322ecabf61b",
"md5": "6c67963b33d7696fc06abfab41cbbb10",
"sha256": "22b834cef33429ca6cc28303c9c327ba9a3fafecbf62fae17e9a7b7163cc43ac"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "6c67963b33d7696fc06abfab41cbbb10",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 6510719,
"upload_time": "2025-07-24T18:54:16",
"upload_time_iso_8601": "2025-07-24T18:54:16.775857Z",
"url": "https://files.pythonhosted.org/packages/6f/84/668ab6df27fb35886dfa1242f2d302d0cd319c72e3dd3845a322ecabf61b/grpcio-1.74.0-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ed6a981150f20dd435b9c46cd504038b4fbae2171b43fe70019914d80159e156",
"md5": "020710597d45a4e40f34996065af68c3",
"sha256": "7d95d71ff35291bab3f1c52f52f474c632db26ea12700c2ff0ea0532cb0b5854"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "020710597d45a4e40f34996065af68c3",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 3819185,
"upload_time": "2025-07-24T18:54:18",
"upload_time_iso_8601": "2025-07-24T18:54:18.673872Z",
"url": "https://files.pythonhosted.org/packages/ed/6a/981150f20dd435b9c46cd504038b4fbae2171b43fe70019914d80159e156/grpcio-1.74.0-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "755fd64b9745bb9def186e1be11b42d4d310570799d6170ac75829ef1c67c176",
"md5": "eafc03f19156647ff0825d3c3788f33d",
"sha256": "ecde9ab49f58433abe02f9ed076c7b5be839cf0153883a6d23995937a82392fa"
},
"downloads": -1,
"filename": "grpcio-1.74.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "eafc03f19156647ff0825d3c3788f33d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 4495789,
"upload_time": "2025-07-24T18:54:20",
"upload_time_iso_8601": "2025-07-24T18:54:20.582790Z",
"url": "https://files.pythonhosted.org/packages/75/5f/d64b9745bb9def186e1be11b42d4d310570799d6170ac75829ef1c67c176/grpcio-1.74.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "38b435feb8f7cab7239c5b94bd2db71abb3d6adb5f335ad8f131abb6060840b6",
"md5": "3840ec9f177eb729d61a9e69c223d6ea",
"sha256": "80d1f4fbb35b0742d3e3d3bb654b7381cd5f015f8497279a1e9c21ba623e01b1"
},
"downloads": -1,
"filename": "grpcio-1.74.0.tar.gz",
"has_sig": false,
"md5_digest": "3840ec9f177eb729d61a9e69c223d6ea",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 12756048,
"upload_time": "2025-07-24T18:54:23",
"upload_time_iso_8601": "2025-07-24T18:54:23.039869Z",
"url": "https://files.pythonhosted.org/packages/38/b4/35feb8f7cab7239c5b94bd2db71abb3d6adb5f335ad8f131abb6060840b6/grpcio-1.74.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-24 18:54:23",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "grpc",
"github_project": "grpc",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"requirements": [
{
"name": "coverage",
"specs": [
[
">=",
"4.0"
]
]
},
{
"name": "cython",
"specs": [
[
"==",
"3.1.1"
]
]
},
{
"name": "protobuf",
"specs": [
[
">=",
"6.31.1"
],
[
"<",
"7.0.0"
]
]
},
{
"name": "typing-extensions",
"specs": [
[
"==",
"4.13.2"
]
]
},
{
"name": "wheel",
"specs": [
[
">=",
"0.29"
]
]
}
],
"lcname": "grpcio"
}