Skip to main content

HTTP/2-based RPC framework

Reason this release was yanked:

Protos depending on descriptor.proto will fail to compile: https://github.com/grpc/grpc/issues/31020

Project description

compat_check_pypi

Package for gRPC Python.

Supported Python Versions

Python >= 3.7

Installation

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

Installing From PyPI

If you are installing locally…

$ pip install grpcio

Else system wide (on Ubuntu)…

$ sudo pip install grpcio

If you’re on Windows make sure that you installed the 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 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 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 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 -rrequirements.txt
$ GRPC_PYTHON_BUILD_WITH_CYTHON=1 pip install .

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

Troubleshooting

Help, I …

  • … see a pkg_resources.VersionConflict when I try to install grpc

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

    pip install --ignore-installed $OFFENDING_DEPENDENCY

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

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

    You can fix it by doing:

    sudo pip install --ignore-installed six
  • … see the following error on some platforms

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

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

    sudo apt-get install python-dev

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

grpcio-1.49.0.tar.gz (22.1 MB view details)

Uploaded Source

Built Distributions

grpcio-1.49.0-cp311-cp311-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.11 Windows x86-64

grpcio-1.49.0-cp311-cp311-win32.whl (3.1 MB view details)

Uploaded CPython 3.11 Windows x86

grpcio-1.49.0-cp311-cp311-musllinux_1_1_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

grpcio-1.49.0-cp311-cp311-musllinux_1_1_i686.whl (5.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

grpcio-1.49.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

grpcio-1.49.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (4.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

grpcio-1.49.0-cp311-cp311-macosx_10_10_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.11 macOS 10.10+ x86-64

grpcio-1.49.0-cp311-cp311-linux_armv7l.whl (73.4 MB view details)

Uploaded CPython 3.11

grpcio-1.49.0-cp310-cp310-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.10 Windows x86-64

grpcio-1.49.0-cp310-cp310-win32.whl (3.1 MB view details)

Uploaded CPython 3.10 Windows x86

grpcio-1.49.0-cp310-cp310-musllinux_1_1_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

grpcio-1.49.0-cp310-cp310-musllinux_1_1_i686.whl (5.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

grpcio-1.49.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

grpcio-1.49.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (4.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

grpcio-1.49.0-cp310-cp310-manylinux_2_17_aarch64.whl (65.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

grpcio-1.49.0-cp310-cp310-macosx_10_10_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.10 macOS 10.10+ x86-64

grpcio-1.49.0-cp310-cp310-linux_armv7l.whl (73.2 MB view details)

Uploaded CPython 3.10

grpcio-1.49.0-cp39-cp39-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.9 Windows x86-64

grpcio-1.49.0-cp39-cp39-win32.whl (3.1 MB view details)

Uploaded CPython 3.9 Windows x86

grpcio-1.49.0-cp39-cp39-musllinux_1_1_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

grpcio-1.49.0-cp39-cp39-musllinux_1_1_i686.whl (5.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

grpcio-1.49.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

grpcio-1.49.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (4.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

grpcio-1.49.0-cp39-cp39-manylinux_2_17_aarch64.whl (65.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

grpcio-1.49.0-cp39-cp39-macosx_10_10_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.9 macOS 10.10+ x86-64

grpcio-1.49.0-cp39-cp39-linux_armv7l.whl (73.3 MB view details)

Uploaded CPython 3.9

grpcio-1.49.0-cp38-cp38-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.8 Windows x86-64

grpcio-1.49.0-cp38-cp38-win32.whl (3.1 MB view details)

Uploaded CPython 3.8 Windows x86

grpcio-1.49.0-cp38-cp38-musllinux_1_1_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

grpcio-1.49.0-cp38-cp38-musllinux_1_1_i686.whl (5.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

grpcio-1.49.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

grpcio-1.49.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (4.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

grpcio-1.49.0-cp38-cp38-manylinux_2_17_aarch64.whl (65.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

grpcio-1.49.0-cp38-cp38-macosx_10_10_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.8 macOS 10.10+ x86-64

grpcio-1.49.0-cp38-cp38-linux_armv7l.whl (73.4 MB view details)

Uploaded CPython 3.8

grpcio-1.49.0-cp37-cp37m-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.7m Windows x86-64

grpcio-1.49.0-cp37-cp37m-win32.whl (3.0 MB view details)

Uploaded CPython 3.7m Windows x86

grpcio-1.49.0-cp37-cp37m-musllinux_1_1_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

grpcio-1.49.0-cp37-cp37m-musllinux_1_1_i686.whl (5.1 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

grpcio-1.49.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

grpcio-1.49.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (4.9 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

grpcio-1.49.0-cp37-cp37m-manylinux_2_17_aarch64.whl (64.8 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

grpcio-1.49.0-cp37-cp37m-macosx_10_10_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.7m macOS 10.10+ x86-64

grpcio-1.49.0-cp37-cp37m-linux_armv7l.whl (73.0 MB view details)

Uploaded CPython 3.7m

File details

Details for the file grpcio-1.49.0.tar.gz.

File metadata

  • Download URL: grpcio-1.49.0.tar.gz
  • Upload date:
  • Size: 22.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for grpcio-1.49.0.tar.gz
Algorithm Hash digest
SHA256 90ec337f36db26fbc70a4c032bcbabb2008f950f4194e99385118a12688fdf92
MD5 ad42582a3355da91de04c4aca7fedc92
BLAKE2b-256 44d0789c52d384c97118b2dce430e3fcea50be85c5d0f9b6ab986865041bb2a3

See more details on using hashes here.

File details

Details for the file grpcio-1.49.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: grpcio-1.49.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for grpcio-1.49.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 894fba84ef949c7f2403eaf09c9d2421eeeec447f4d61829353a371d4d1edb57
MD5 115f6a39396a49ec0a46f8eb6fadb74a
BLAKE2b-256 9a4cbd7a11c06dbbc9a447b4c816b9d3d98e676ffe26d987f284caf570942afb

See more details on using hashes here.

File details

Details for the file grpcio-1.49.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: grpcio-1.49.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for grpcio-1.49.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a9e154ff1d55540db0ff9ee123687c45e7946a235d22a44c5347b2384b2a4753
MD5 9f162ac0337e6f592d8e92080bb6e6f0
BLAKE2b-256 77e8ddf16b838a45b372c5ef8d9caf41e770e6fb3b0c1508b7c729e71c76c826

See more details on using hashes here.

File details

Details for the file grpcio-1.49.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.49.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cb4a3812e90d8189ff96b1779c7e7e56d13e7525ef4928b7d897c62c0d8936e3
MD5 a265daa412bd36560b7f696da27daba6
BLAKE2b-256 31e7d656fdc94e9cd99b766ccd88da470e63ad3806e86d9c9ce0789e3043b36b

See more details on using hashes here.

File details

Details for the file grpcio-1.49.0-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.49.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 3477cec9b89334ddbb09b44cf099e9a81f4090b48fdd63310f91b71a762896d6
MD5 f4cd542f957f75e79593969dcff778d0
BLAKE2b-256 f8b55cf5a2709a31826abcf1a3ba5a1972c8d77faa629f0307cd91d166217dd0

See more details on using hashes here.

File details

Details for the file grpcio-1.49.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.49.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1532064b23130be7760c940b82961e3661cb785f686204a937e8edca007069fe
MD5 69159434aefd67e5a4b5f623ad16881d
BLAKE2b-256 e60b753e7629ea6cf69b0953b746e0cbe6f52487ecd662d96b0f7260d0fc3558

See more details on using hashes here.

File details

Details for the file grpcio-1.49.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.49.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 875cb37144865cc4d26e91add8c9672cf2c95f3547f15ae3daba8f27064fdb30
MD5 6c8759fa8d72b73eea80deb702a0ba54
BLAKE2b-256 4c7a07349131e60f33f54a7d46571cf4d6406434c31cb0c32f675dc82760dcad

See more details on using hashes here.

File details

Details for the file grpcio-1.49.0-cp311-cp311-macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.49.0-cp311-cp311-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 77742b6805c2b46a59b76f924b3018de89c4e3b565df7ef2d79d4d8eecd37a20
MD5 6cae8a2159a7c4114db3047a9db02fa9
BLAKE2b-256 a296403d262b9c9f54c594674100ce547f3fbae2d74f4ce27298132930c0b96a

See more details on using hashes here.

File details

Details for the file grpcio-1.49.0-cp311-cp311-linux_armv7l.whl.

File metadata

File hashes

Hashes for grpcio-1.49.0-cp311-cp311-linux_armv7l.whl
Algorithm Hash digest
SHA256 a3eccffe9cac99883cbfdcaac0af3d346d5499a7fcb7d57fdd2ec21209471c39
MD5 7fa488a0b4abbc2afa2680b5753d1940
BLAKE2b-256 c6fed116d8bd677374432b4253e31b5b76430433c9fb59ef2da2028c1b3b0558

See more details on using hashes here.

File details

Details for the file grpcio-1.49.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: grpcio-1.49.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for grpcio-1.49.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 07bbbb2675d5bcd5ea0dd5dc39d47d8cd9f81e12d5689d79079f5eb9bad87127
MD5 5b68da8092f4fb755551247f6b29c9f5
BLAKE2b-256 ba2db74e27f879767f0ccd4dfa4c4cc7b4b702fa1354efc43d567070355e7773

See more details on using hashes here.

File details

Details for the file grpcio-1.49.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: grpcio-1.49.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for grpcio-1.49.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 172cfa96c6d4de9d84bbd00ffea7aebe820f44430d31cdfea6ec6d209007c117
MD5 ca44d6962262937240db9be1f262f8ea
BLAKE2b-256 a66cf23f3a5e37eb4c848eb3832a9208e0d1050a0d954b421528ca751b02b1e2

See more details on using hashes here.

File details

Details for the file grpcio-1.49.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.49.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e26d4b147447cf63e7e20e92c7b938b6279c0cd463b421f0f6ecc2d991161614
MD5 80385d89de70851cb8a198fa63576ad3
BLAKE2b-256 47563f1ba8c4eba3b2b8d0e10c55a9cbdcfe0701071c836589d800bdbe27e307

See more details on using hashes here.

File details

Details for the file grpcio-1.49.0-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.49.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ad119d3db3a284e8f0dbf0149b904280e17a13c9eca38a250109cbee9d569a1d
MD5 05ff161ba7e24080b5db858b03b7dfd9
BLAKE2b-256 602d8d074781588cbb1509c9f7c799404adbe1607dd8ac3041e89db9d7b8f296

See more details on using hashes here.

File details

Details for the file grpcio-1.49.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.49.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 91763e949104894b639ad47243c69988fc0bbdcbead995280f7d3fcba3824a79
MD5 7cc1b515f2b09d82fe3807c93017b96b
BLAKE2b-256 9130eb03b51124dff7f7b29c4d85760739a29ddb011df12b8475232f2931e7bf

See more details on using hashes here.

File details

Details for the file grpcio-1.49.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.49.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a821831518758b725ba857d791a43959e8ffdbe5935e89a50222496fe2ed0f9c
MD5 d00baf70171e9d204d3d4b1da1442377
BLAKE2b-256 eef7c0e65dd3db7b18fe89777c8bd0c504247de7a8c2656b88fa795d997f9123

See more details on using hashes here.

File details

Details for the file grpcio-1.49.0-cp310-cp310-manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for grpcio-1.49.0-cp310-cp310-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 7ea88f3dfe2606a93193e8dc240659b5eedcee77ef90d655cbc792273a5c3eb2
MD5 31229af7f9b5793591895c126bacff62
BLAKE2b-256 030fa7def811e31e2f9ce04be422c2e814e5f9a5a4a6de0426932311f2e9677e

See more details on using hashes here.

File details

Details for the file grpcio-1.49.0-cp310-cp310-macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.49.0-cp310-cp310-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 ebb539e0cf618593dc08ea9bf6fc72c538b632663f8efc1a344f6db62545dfaa
MD5 18fb05c846b2f366b62d18fed31117c2
BLAKE2b-256 248155681cf3fc4de21727e4a12d392d74a5fdd402a2f678f705e7dab9eac0ae

See more details on using hashes here.

File details

Details for the file grpcio-1.49.0-cp310-cp310-linux_armv7l.whl.

File metadata

File hashes

Hashes for grpcio-1.49.0-cp310-cp310-linux_armv7l.whl
Algorithm Hash digest
SHA256 79298b2b153d00f34ecbf5db8ec1be9bf37172ff9d2b63a2e0c6ef67f85daf1e
MD5 410987793a4e6e77e98866e3cfef7a46
BLAKE2b-256 599089d4ed77097021890e0863cf843dcb8997147bc505d51d9081a3a4f558c7

See more details on using hashes here.

File details

Details for the file grpcio-1.49.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: grpcio-1.49.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for grpcio-1.49.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4e0374c5b31fdf5cd4a2f3209e5341762a34c80acedbaca0896ccb904ecdd707
MD5 46531911e7780c550ffd5cd09583c799
BLAKE2b-256 e75167ab3fe5475c478e75959f4a5b3f77201294b66b6069624d20c230a5f23d

See more details on using hashes here.

File details

Details for the file grpcio-1.49.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: grpcio-1.49.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for grpcio-1.49.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 60d31d1377429f0f83fe10887276e8bdef16fb297dfbccab896a145d7b171bc8
MD5 45df879d8988fd061cdf71da65039d4a
BLAKE2b-256 15159054cae5945139cd4a6c754edcd2669cefe5b722a201cbbd68d9421e16c8

See more details on using hashes here.

File details

Details for the file grpcio-1.49.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.49.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b3bc29e95a578b5c5a1bf2908ef56f45ad8b669178298cf6a8357a6883baff99
MD5 4943237e477622a544f4d7c18b942c05
BLAKE2b-256 e3a1c81946a35c5171947150d026fc4901b6b1a5c34525b2dcd4e11ac2f25efc

See more details on using hashes here.

File details

Details for the file grpcio-1.49.0-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.49.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 49a8a3aa2d61f1940983795cea78d336f86ab2e5c92029adfc7e6a8ee0fe6e3a
MD5 d8717904a5970a7d866fc23fcab0fea1
BLAKE2b-256 5a7f365d256311e89001710a0753a725ba17381c92df76b361604c99b4f9b660

See more details on using hashes here.

File details

Details for the file grpcio-1.49.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.49.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ede5041e8a98ce8761d7b6d966da872ac6a5bf2d8de776b402ea509c8ba8a8bc
MD5 2f082d78cac6a8550c235449194333fb
BLAKE2b-256 76330c8d049da8d036b9f90588dc02ed3dc727bf965575cc090d0aaf4e9f7beb

See more details on using hashes here.

File details

Details for the file grpcio-1.49.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.49.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b40ca1a353ad0410f979d3ac7fdb07e2ad65717411c0c3e2df12a4b811898637
MD5 578f66a4a5e4103706aa9f99a4d3b2f9
BLAKE2b-256 ac94dc509162d9d795396eb47b0de566570f0cae68d6f563077267856aa90f0e

See more details on using hashes here.

File details

Details for the file grpcio-1.49.0-cp39-cp39-manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for grpcio-1.49.0-cp39-cp39-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 6cbcbbab1c8f677d6b3bb55b22bfce87bd10713a8ef439098f86ada96e69eda8
MD5 f411ad8b32b68129862a65b9e609d5a6
BLAKE2b-256 016c64a5b8641e3d230fd14e77147ab96a637b4b7d2dbef9324237449d485c41

See more details on using hashes here.

File details

Details for the file grpcio-1.49.0-cp39-cp39-macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.49.0-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 4f70df4d99945a7dc4a358cf0d2c027bba2d3125bc8ad1acb069480747fc58de
MD5 34e56caa789cddfb11925c6dd0194dd1
BLAKE2b-256 70ae29238a490375a8b4a6c2992b4a21f16316b0a94111f5ac176ea4c027b6b1

See more details on using hashes here.

File details

Details for the file grpcio-1.49.0-cp39-cp39-linux_armv7l.whl.

File metadata

File hashes

Hashes for grpcio-1.49.0-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 5df1748ac9d679f47ee39226a7389f73e8c7c49910c7493b0f61735825a0b5ec
MD5 3a0482bd00f7e948fef7611488f10edd
BLAKE2b-256 517ee504ea76dc1010da11d21af49053b775c9ca91c6fb0da296b96514bab609

See more details on using hashes here.

File details

Details for the file grpcio-1.49.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: grpcio-1.49.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for grpcio-1.49.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 faa91b060bf3c520d0a4f11bd550d1b4026d649f188b082690270182fb462ec4
MD5 c7a5c13bc588e47e87bf86ac89cefebf
BLAKE2b-256 d516c0b524a7db677d67c5c1935639b0a875a8a6a2e36f88d612991ef8c74c2e

See more details on using hashes here.

File details

Details for the file grpcio-1.49.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: grpcio-1.49.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for grpcio-1.49.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 dcb480c4141dd051120a3de9af555ef09fc3ce1d0cb47e95b22ac1406554af18
MD5 e28add1939845587fe92db362cef8ff7
BLAKE2b-256 1e99546424a19f3339cde683258321e4c736fc1fb4af07df3249bc860673cee5

See more details on using hashes here.

File details

Details for the file grpcio-1.49.0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.49.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 717ed04e949022e33e10c4d11b2a9567da2de5a02019535058482ea54d9f795c
MD5 9d21cdc2c4aa72ab1ee05926570d3d54
BLAKE2b-256 346d77dc2809d68b937dd10dd99861c30e7e97b9d8da91f569a75ad7f2abb65f

See more details on using hashes here.

File details

Details for the file grpcio-1.49.0-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.49.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 3cc65127b0755fc0cf4f7e095f2d0ed25fe225eb1525b76c0a32de3efaf7c22f
MD5 eec3a7b8bb64fda1d16aa80adac8ebe5
BLAKE2b-256 d368d7c8abe80b21d73a68880454a6ca6091d35e79f4e09446b9b935d7266e8a

See more details on using hashes here.

File details

Details for the file grpcio-1.49.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.49.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b0522e5c678411977db57bb6a4c6dd29e1defc0961ebf2c0a29871459cce0fd9
MD5 78611d964aa36952208f824a8f2d751c
BLAKE2b-256 7d96d2f4bb2c922c3bf01d2efe8058c8c220d504d87391313f0b305c4d9ef112

See more details on using hashes here.

File details

Details for the file grpcio-1.49.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.49.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 63c3823fc525882989c0a42191d1efeb37c4d4f4c1dc555cc21d721fe11570e3
MD5 eec78507793707773866cb6de318f079
BLAKE2b-256 39c127eb28daf6d4de9ed5b9822cf297250a7d50e0821402bbc3df2455adf8aa

See more details on using hashes here.

File details

Details for the file grpcio-1.49.0-cp38-cp38-manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for grpcio-1.49.0-cp38-cp38-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 a0c39a3d81a727d36c855781886a66d868681e5dc8de76a766a7c3c4827f649b
MD5 9040569e120a305cdc05a1a32b1b1ad8
BLAKE2b-256 c0fed88debb958e7c904bb9e72eb5319eb5be31b14a4804bf6b31bac0a861da8

See more details on using hashes here.

File details

Details for the file grpcio-1.49.0-cp38-cp38-macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.49.0-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 9736f24b9a0a5b66df739fa2e82132c1c420cc470df003e53596dcec8d90a52a
MD5 05d057d2c88497b6a255c699f993d63e
BLAKE2b-256 76987e99368ec6425c9212438bcb89425e95c5767709f46eb24dbad11823c741

See more details on using hashes here.

File details

Details for the file grpcio-1.49.0-cp38-cp38-linux_armv7l.whl.

File metadata

File hashes

Hashes for grpcio-1.49.0-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 8d6f4ace5b41502b11c2456d2fa3a2d7ee776bbb7d2c3c05e0309d420654c95a
MD5 5da54d33005cb6eaafc6abf62c734156
BLAKE2b-256 bbeabc9a600a50b4ab540ff196b616725cc8aad5865f2cb67275cc04ce5ea329

See more details on using hashes here.

File details

Details for the file grpcio-1.49.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: grpcio-1.49.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for grpcio-1.49.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 bc39e9bd568b210ba9e44819736eb5e95cada054381dec5a3d2ec0a5f7c0178f
MD5 8feb840c2c650e41f7eb4c4bb4b1bb6b
BLAKE2b-256 3d020276af9089339dcc40a48f180791c75af75e2edaba035007198a458ef5eb

See more details on using hashes here.

File details

Details for the file grpcio-1.49.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: grpcio-1.49.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for grpcio-1.49.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 6ea56034245fe04ca3c411d2bf7032782722973e4cd2964e89d55110d2142bac
MD5 44270160d386af33324c348e6553e4ad
BLAKE2b-256 5d1eaa4572b5b4b8633743767ff1e42c2ccabb4016e6d3342801130cb14caad4

See more details on using hashes here.

File details

Details for the file grpcio-1.49.0-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.49.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 41d8e725b816964691650967b017a621d935ba7393a153fcf8d6dcae5e41e4b3
MD5 b891d91271ceecef021d38a15ac720a7
BLAKE2b-256 28e8feb1edf98760e616f4fec21c879d90f4bdfbdb59d30f53d26dbdb994f803

See more details on using hashes here.

File details

Details for the file grpcio-1.49.0-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.49.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 db056a709ea38b2da97a6811ed6719329f6576a32240e102e897a05b681a1674
MD5 0dda30222cf1180200e5b78e45b1c032
BLAKE2b-256 2ab36507c6cdbc704f74ef76e62f029b2d6d784ad3edb56981f3b22122bccf49

See more details on using hashes here.

File details

Details for the file grpcio-1.49.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.49.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 85150bce2438feb2a814e0c2dec09fb6e86a58b69a06279a1a49426b88b84176
MD5 73786b026b9ae657df695e98772657c6
BLAKE2b-256 117633fae6066bedd1f266e4e04cdcdfa9355c73217e77cab89b6ef844235a4b

See more details on using hashes here.

File details

Details for the file grpcio-1.49.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.49.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 82a40b2fea553a85d045b1934633d108643d3b870a08fa19d47137d967e8e716
MD5 0d50aef3e7a9475afec69ab3aceeadab
BLAKE2b-256 70d60ed35742f2fdf5a07b36aae697b71646f310b63eedfe75e7145229b9cd41

See more details on using hashes here.

File details

Details for the file grpcio-1.49.0-cp37-cp37m-manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for grpcio-1.49.0-cp37-cp37m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 3e7b20e78b8dcee038002fd42ae13d5e6e81efa7d21cc6682a25f4cbd18f0491
MD5 3864b15f57e59fa2b5c7bbad090ffd11
BLAKE2b-256 aa314612c14a9d5371c148da50e1734b9fe59ccb0a94a9aebcdd168778588e50

See more details on using hashes here.

File details

Details for the file grpcio-1.49.0-cp37-cp37m-macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.49.0-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 4ae542364be7b2cb13d8372c2a601a84c77a93327c93a31cda64fd9c5c333448
MD5 ca4c6130f673bf5e938a54f01e94c65a
BLAKE2b-256 d1a663a3c078d498c4bdd25b65b6b7588ce97da0332917fed693c961a8c96259

See more details on using hashes here.

File details

Details for the file grpcio-1.49.0-cp37-cp37m-linux_armv7l.whl.

File metadata

File hashes

Hashes for grpcio-1.49.0-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 fcd45c259cabb739b8b0c3a539ad2796f627fef77e53e55e6c2b5389b59a00ff
MD5 653785aee57e4b6db4175cf2de9cff64
BLAKE2b-256 66db96239ebc45deceec7451295a334b9f630e1cb0a9115725598653ae2320cc

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page