Skip to main content

HTTP/2-based RPC framework

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.51.0rc1.tar.gz (22.2 MB view details)

Uploaded Source

Built Distributions

grpcio-1.51.0rc1-cp311-cp311-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

grpcio-1.51.0rc1-cp311-cp311-musllinux_1_1_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

grpcio-1.51.0rc1-cp311-cp311-musllinux_1_1_i686.whl (5.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

grpcio-1.51.0rc1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

grpcio-1.51.0rc1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (5.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

grpcio-1.51.0rc1-cp311-cp311-macosx_10_10_x86_64.whl (8.1 MB view details)

Uploaded CPython 3.11 macOS 10.10+ x86-64

grpcio-1.51.0rc1-cp311-cp311-linux_armv7l.whl (80.4 MB view details)

Uploaded CPython 3.11

grpcio-1.51.0rc1-cp310-cp310-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

grpcio-1.51.0rc1-cp310-cp310-musllinux_1_1_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

grpcio-1.51.0rc1-cp310-cp310-musllinux_1_1_i686.whl (5.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

grpcio-1.51.0rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

grpcio-1.51.0rc1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (5.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

grpcio-1.51.0rc1-cp310-cp310-manylinux_2_17_aarch64.whl (71.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

grpcio-1.51.0rc1-cp310-cp310-macosx_12_0_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.10 macOS 12.0+ x86-64

grpcio-1.51.0rc1-cp310-cp310-linux_armv7l.whl (80.2 MB view details)

Uploaded CPython 3.10

grpcio-1.51.0rc1-cp39-cp39-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.9 Windows x86-64

grpcio-1.51.0rc1-cp39-cp39-win32.whl (3.2 MB view details)

Uploaded CPython 3.9 Windows x86

grpcio-1.51.0rc1-cp39-cp39-musllinux_1_1_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

grpcio-1.51.0rc1-cp39-cp39-musllinux_1_1_i686.whl (5.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

grpcio-1.51.0rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

grpcio-1.51.0rc1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (5.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

grpcio-1.51.0rc1-cp39-cp39-manylinux_2_17_aarch64.whl (71.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

grpcio-1.51.0rc1-cp39-cp39-macosx_10_10_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.9 macOS 10.10+ x86-64

grpcio-1.51.0rc1-cp39-cp39-linux_armv7l.whl (80.3 MB view details)

Uploaded CPython 3.9

grpcio-1.51.0rc1-cp38-cp38-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.8 Windows x86-64

grpcio-1.51.0rc1-cp38-cp38-win32.whl (3.2 MB view details)

Uploaded CPython 3.8 Windows x86

grpcio-1.51.0rc1-cp38-cp38-musllinux_1_1_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

grpcio-1.51.0rc1-cp38-cp38-musllinux_1_1_i686.whl (5.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

grpcio-1.51.0rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

grpcio-1.51.0rc1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (5.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

grpcio-1.51.0rc1-cp38-cp38-manylinux_2_17_aarch64.whl (71.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

grpcio-1.51.0rc1-cp38-cp38-macosx_10_10_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.8 macOS 10.10+ x86-64

grpcio-1.51.0rc1-cp38-cp38-linux_armv7l.whl (80.4 MB view details)

Uploaded CPython 3.8

grpcio-1.51.0rc1-cp37-cp37m-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.7m Windows x86-64

grpcio-1.51.0rc1-cp37-cp37m-win32.whl (3.1 MB view details)

Uploaded CPython 3.7m Windows x86

grpcio-1.51.0rc1-cp37-cp37m-musllinux_1_1_x86_64.whl (5.0 MB view details)

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

grpcio-1.51.0rc1-cp37-cp37m-musllinux_1_1_i686.whl (5.3 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

grpcio-1.51.0rc1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

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

grpcio-1.51.0rc1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (5.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

grpcio-1.51.0rc1-cp37-cp37m-manylinux_2_17_aarch64.whl (71.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

grpcio-1.51.0rc1-cp37-cp37m-macosx_10_10_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.7m macOS 10.10+ x86-64

grpcio-1.51.0rc1-cp37-cp37m-linux_armv7l.whl (80.0 MB view details)

Uploaded CPython 3.7m

File details

Details for the file grpcio-1.51.0rc1.tar.gz.

File metadata

  • Download URL: grpcio-1.51.0rc1.tar.gz
  • Upload date:
  • Size: 22.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.7

File hashes

Hashes for grpcio-1.51.0rc1.tar.gz
Algorithm Hash digest
SHA256 60b57eeae0c095a68139445345cc564f49b2ce4e37168d5510022e72dd491dec
MD5 bc55c556187ca487016b5a8aa20688b4
BLAKE2b-256 fdcbbfaa11656cc7fea6f0ccf0132448693e8213d966c760e58574e5c7707131

See more details on using hashes here.

File details

Details for the file grpcio-1.51.0rc1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for grpcio-1.51.0rc1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 56c239bf6e3b9666eb9f0fc1a94d1bececdab615573f8544ff35e79fdd49b6b3
MD5 3f928eea6a081c2dbc73f3575b610d1a
BLAKE2b-256 77aec3d361ebaa68a3dd32a86589304bc9c4be2d6a5aeb9bc8dbec2d42ce97cd

See more details on using hashes here.

File details

Details for the file grpcio-1.51.0rc1-cp311-cp311-win32.whl.

File metadata

  • Download URL: grpcio-1.51.0rc1-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.7

File hashes

Hashes for grpcio-1.51.0rc1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f06537336e77a54eadf11a707c1b995c2afb3f6f77d7fa053e914f617e1fb290
MD5 f9cea437f1124f0b0c9ec75df1b5b1fb
BLAKE2b-256 789e6030d510032ff34727ed3cf2b177cfb24aaccf46014a9b6160ca293c7671

See more details on using hashes here.

File details

Details for the file grpcio-1.51.0rc1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.51.0rc1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 eb18bd3b8c79e968959efdf1973f26dd31b3015768f8c12b0da6ba733d16fecc
MD5 8ea2359a5cde5234ac597e89214279aa
BLAKE2b-256 d923c1ff1ddbf3bd7631805575dc55d34a101d713b000a4d79c39a3a46dd4ee1

See more details on using hashes here.

File details

Details for the file grpcio-1.51.0rc1-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.51.0rc1-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4c04cf32baec7112d8b227d584080b74d61db06fba0b5337ce8d1e9da59c8416
MD5 78d377c9207e9072c1f3e367383a1651
BLAKE2b-256 41f651039dee02f9195a42a0a8b0eb2d8d725ef99bf33d1c6edd046053131d0c

See more details on using hashes here.

File details

Details for the file grpcio-1.51.0rc1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.51.0rc1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 131c57823694e4ffe7045335e7ed79bfc4071e63d36336faaef2db452a96a4de
MD5 9403917a117ac2fddcf4a21397459205
BLAKE2b-256 45bc669d3368efc80831e43af9211a519a2e5b79c3e50c6d88a359eb5d655ef6

See more details on using hashes here.

File details

Details for the file grpcio-1.51.0rc1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.51.0rc1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ad949c48b29e63b2171abdefa7000ae6f7c10ad662894d7f2c84b948096634f9
MD5 df798b5b0f0a6190f5470aed844a45fb
BLAKE2b-256 dce19709527326924cbe34cd02c4f086e216007010ff3ff0a3a7c5e54c679b9d

See more details on using hashes here.

File details

Details for the file grpcio-1.51.0rc1-cp311-cp311-macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.51.0rc1-cp311-cp311-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 be3401b7e01f3cf02a96f44769ea4818da06a5751b895dd518cd5354e27664dc
MD5 97694159ccf7b4a2a14fa93a07769125
BLAKE2b-256 47052ccd7f15eacb1f70ab4ac710bf0dd2eb168573b4893a0e86e23a0aea59e0

See more details on using hashes here.

File details

Details for the file grpcio-1.51.0rc1-cp311-cp311-linux_armv7l.whl.

File metadata

File hashes

Hashes for grpcio-1.51.0rc1-cp311-cp311-linux_armv7l.whl
Algorithm Hash digest
SHA256 952923a560c6b2e8cdb3331e3c45eae151fdedcd92fb8d7dce615f4de0faafc8
MD5 187a3a5aa6e3c9fa274993b1fe046642
BLAKE2b-256 4b49b2c9bb060ad267f4bec92e015be73382f9cc1730c330a145ecb8d00f6caa

See more details on using hashes here.

File details

Details for the file grpcio-1.51.0rc1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for grpcio-1.51.0rc1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 28d984da6de8c7f18175837c983acaa7177ab34d4a9a447726eeec9f0807357a
MD5 bd7cb3ea8b4b5311697f16ffa02f5e2b
BLAKE2b-256 7ab377d470529c8710b63e95e277fd4eb164c7f4d15960eae52a003a23d2ab5a

See more details on using hashes here.

File details

Details for the file grpcio-1.51.0rc1-cp310-cp310-win32.whl.

File metadata

  • Download URL: grpcio-1.51.0rc1-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.7

File hashes

Hashes for grpcio-1.51.0rc1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ca2b7d2c3ec50f3d2992c395aae49ea428034eca76d4650c4d3761aa07c6a1a1
MD5 483c2b5e62942086439193bab90b54ea
BLAKE2b-256 30c147407cae128e06d08cea34ae4872ca9e2a6b886842a9173641db68ce0784

See more details on using hashes here.

File details

Details for the file grpcio-1.51.0rc1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.51.0rc1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e986f45c37a4f522fb0f32410108e8e788e3308c839a79297c00fbf14a9bdfba
MD5 bcf48475ef27cb7c438b8223ca43205f
BLAKE2b-256 a3d7578a15ff9fc70010d0579016aa692e47179e23fd86c578f160f5cb799e5e

See more details on using hashes here.

File details

Details for the file grpcio-1.51.0rc1-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.51.0rc1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 33477ad683d6261eb49412279b3a1e82779267037139503d6b0336d1ab02ed76
MD5 d4a0cd160b514f3d031b66494c4da338
BLAKE2b-256 efc7b7351ac213c00c9c11d2a7fe172cb91a788129b7c99d3ab6f52def5bf0cb

See more details on using hashes here.

File details

Details for the file grpcio-1.51.0rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.51.0rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b93b88503e64b5f173f1b47778ab3fabf884979ef266d071af05a10e428e41a
MD5 91d34b4c39ce637a74c7c10a0117454b
BLAKE2b-256 49c659c8cc10619df1eefdfcce8b7e0cf1c80364b6d0c6a1bd19f389392ff8d3

See more details on using hashes here.

File details

Details for the file grpcio-1.51.0rc1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.51.0rc1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0afb9012fd31022fc2f7ff499a9aa16c37bd37a99c5cda734cd05ee90d1adacb
MD5 163c0489cbb77a0838f1b65197aacfd9
BLAKE2b-256 a63be8699133572bf736159ac2dc108df2f567512e98e8a371c4749e0504b23c

See more details on using hashes here.

File details

Details for the file grpcio-1.51.0rc1-cp310-cp310-manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for grpcio-1.51.0rc1-cp310-cp310-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 92c149d30f6e24f5991e5e9e2c0cd742728d15914f6b54e5479db32bd71b4f18
MD5 c299a3406d48c6e96cd688043582e6e8
BLAKE2b-256 023b962d5c854ba590c5782d66153f8a3e2f8f83ce048eef6f69ed2e646d2372

See more details on using hashes here.

File details

Details for the file grpcio-1.51.0rc1-cp310-cp310-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.51.0rc1-cp310-cp310-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 deb5556dd2a432a9f66ce5c708304c0a920ff5a13ed6c118b5040cf33eb530af
MD5 929dcdbbc3ac499189165e7a49ead458
BLAKE2b-256 0391e3aa5fbd76b1d6ffaf5ca2a675481ad67e79cab4b66bf1e3f9c04c06b1ee

See more details on using hashes here.

File details

Details for the file grpcio-1.51.0rc1-cp310-cp310-linux_armv7l.whl.

File metadata

File hashes

Hashes for grpcio-1.51.0rc1-cp310-cp310-linux_armv7l.whl
Algorithm Hash digest
SHA256 13fe5aab9c974b1f516ec4847a45599b9bbb6950fb7410915757669ee2d5dae3
MD5 610935af4537b50a4c3a09fe4f02c41b
BLAKE2b-256 a877c5838fa3fc9c771e48bb1876ad43f07653a517962ebd53aa07a2bdb4e8ae

See more details on using hashes here.

File details

Details for the file grpcio-1.51.0rc1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for grpcio-1.51.0rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8fe7b8c87b9bbc8d895fda581169b3b05fbde81287ba58e4395788530cb3e4da
MD5 b8b136c9debdb7f664e88fcb22950983
BLAKE2b-256 d43505350f36b4b8d559d43fb60952c6ad80c182877a390483ed95597ea6d4b5

See more details on using hashes here.

File details

Details for the file grpcio-1.51.0rc1-cp39-cp39-win32.whl.

File metadata

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

File hashes

Hashes for grpcio-1.51.0rc1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 43872d3e12f1c17c1a257c84ccee6d7a9c4749fcd6d47023398910c55676faab
MD5 b9a08c5a2418f984a36e82306cc88732
BLAKE2b-256 030af5336c50bafea1711b4d77f5a303ec97ad82d04908ed6c2affb397723ce7

See more details on using hashes here.

File details

Details for the file grpcio-1.51.0rc1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.51.0rc1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a9568431f96c7bae3ef3f8116718686890a935b23a3dfa68cc6ce93e0f11e804
MD5 b8c92a71706a2529d2a47a7b1dadbeb5
BLAKE2b-256 917ff0cb394d9f521fe2929a035252f8b048b497fa672edc1af2b9f4555f7a46

See more details on using hashes here.

File details

Details for the file grpcio-1.51.0rc1-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.51.0rc1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4bae645facdf896f44b7470ab9ca68b31553ac8e4bfea171dd94fa335dd6e3ac
MD5 d2000c250aac20d74229d2b62e1e69ca
BLAKE2b-256 ee63719383c9fe2f0ea6f13e4d4fa8c420230502a2e307a37fb842df83556b13

See more details on using hashes here.

File details

Details for the file grpcio-1.51.0rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.51.0rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a0718200346620a641b8efd085269fa8e1fdff80960667126402f6c9636785dd
MD5 1976bb34f29c14073b5ba17542d7bd3d
BLAKE2b-256 53382be279d65edee1414d91507563f89a14f51cd95dbf0c8f8eb6b0e036a7bd

See more details on using hashes here.

File details

Details for the file grpcio-1.51.0rc1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.51.0rc1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8bb90076b57df0cada4ec1dac981500baa861b4039011c23d6cdb827cc6eb125
MD5 017f74b41ef7703cec14bb201561c45e
BLAKE2b-256 3c347f377a5aa9a66c2b5cb3c605dd3e193aa5d965b9d0b98adde66e0b9a2f70

See more details on using hashes here.

File details

Details for the file grpcio-1.51.0rc1-cp39-cp39-manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for grpcio-1.51.0rc1-cp39-cp39-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 923d6af36d829626e55576c0b2d04b3179eac60436fdb6415031c4d199af4ac2
MD5 c0e1128cb40fe2361d4734bee01184c8
BLAKE2b-256 82afad4d68281e5f22d708a98c4e21d32b8dec28c340582a5107b35ca3c829a1

See more details on using hashes here.

File details

Details for the file grpcio-1.51.0rc1-cp39-cp39-macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.51.0rc1-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 bed8f624d9d10ffe8f5a9e9246e2b8898909a5602037d17069e831fbd894f5b6
MD5 c39bd3caa50423d22ddfd97fa467f3be
BLAKE2b-256 3206e1f118ec1dfaef16651707289d94795d2b2592ae1d6243902e0241664995

See more details on using hashes here.

File details

Details for the file grpcio-1.51.0rc1-cp39-cp39-linux_armv7l.whl.

File metadata

File hashes

Hashes for grpcio-1.51.0rc1-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 5b988d9f0ff941c31a09c0a95d24141097d0066a68c13779fac67781b8d07440
MD5 cd6e72a0d960f028dfd3e3b349ffea74
BLAKE2b-256 313732f0429fa762c46c588fc7ad9ffb0e3839c2f9e9e79e6816efa5bd581ac1

See more details on using hashes here.

File details

Details for the file grpcio-1.51.0rc1-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for grpcio-1.51.0rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3ce4c675a74136af0568609259fcbb2980ec9e3e79e8e785e58e5bf17ca95400
MD5 4b7bba80b586442b0ddfe5f333f2210e
BLAKE2b-256 c8e2eb4803fc6d267270429f7507023e438ee083c25298a2b207c2c3e75da6f2

See more details on using hashes here.

File details

Details for the file grpcio-1.51.0rc1-cp38-cp38-win32.whl.

File metadata

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

File hashes

Hashes for grpcio-1.51.0rc1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 47d38716e069a27df9a30c774cb486d6ee752f2e5ee7ae1b4df5068aff13b834
MD5 83fdb010a4606915280ba85605ce1faa
BLAKE2b-256 989271ed38986f409daf28bc3261408e4d7dccecfbb0d1dd74700364c730c868

See more details on using hashes here.

File details

Details for the file grpcio-1.51.0rc1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.51.0rc1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2bfaf95e21fb07ca22b9c53d4c3131a126a4ace2326fb9c1214e09437d6a7c46
MD5 8ffbc30e8d9e4070dac378c0803ab1d2
BLAKE2b-256 bf31ef49cf3b8756f857a13671d9058b214716891a5facec0946e76fbc5e00f2

See more details on using hashes here.

File details

Details for the file grpcio-1.51.0rc1-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.51.0rc1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 833539e283d22d15b90ee4a56027e16b1d9492bba1617732b7f49286e53b8128
MD5 62334c8141a2f2e00a6d6b757afc76ff
BLAKE2b-256 c8489c3a17e591983a46b90003f5e38c109804a91d78c8446e1147a617afd662

See more details on using hashes here.

File details

Details for the file grpcio-1.51.0rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.51.0rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c5eade2c666fdf261503d48d144837aa6ed6c8f0296a79a2f88b521a36b42d1
MD5 24e2e3fefe02f3d0b9fdf5a59ad22631
BLAKE2b-256 24a468f3ca70dd2b7a7850b8fc48cb3d0957390110a22e44bb4d7b479ccff1f3

See more details on using hashes here.

File details

Details for the file grpcio-1.51.0rc1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.51.0rc1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 de5e28097819d6c230d344442098643e5f0c8537b42d8a30ae22802fa21e612a
MD5 33feff4792f4823d66b3727586a2b066
BLAKE2b-256 dc2acb3b6421c1063fef2718c46f6066e48159ead5563424a45999e6aca6237e

See more details on using hashes here.

File details

Details for the file grpcio-1.51.0rc1-cp38-cp38-manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for grpcio-1.51.0rc1-cp38-cp38-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 5df5729e972f98f391f4f03c6bc1e1d3aada79d8f6bf3df9d0041a01b42b2c59
MD5 a10b749721aaaa6ee1ee499507d7292d
BLAKE2b-256 9a9790169e3e248c951946d1717470c93c803b4163eabdaf00f3e605b3ef9283

See more details on using hashes here.

File details

Details for the file grpcio-1.51.0rc1-cp38-cp38-macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.51.0rc1-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 6dd2f72d9d9d526cfb8d327d4d5cbe5e84164d13a1a3d7a2987623e42b0de788
MD5 0c2f80a8f58b6db38375e790db054108
BLAKE2b-256 eabee01a7f13414cfcb8628e9c4eee1833c16222a9b1417f244c030f765b8433

See more details on using hashes here.

File details

Details for the file grpcio-1.51.0rc1-cp38-cp38-linux_armv7l.whl.

File metadata

File hashes

Hashes for grpcio-1.51.0rc1-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 50a582462224f31c5fe5c8474b3bc890b3f91a634e697a9b377c47c66bd3d3dc
MD5 37820961cf7d9bb813db8cb942d2391c
BLAKE2b-256 2b5ea0ef8b51769f36a71850bc4740354ca9bce108fe90fa4e89325bff085708

See more details on using hashes here.

File details

Details for the file grpcio-1.51.0rc1-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for grpcio-1.51.0rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 1695f113e30ff521970a5aa8475f10a8e48d8161bfd9a51fdd83ccb1a303e26a
MD5 3081609e4d53b42e945cb99f528966b1
BLAKE2b-256 5d8721decb3d7c113d324b50f9a7d21150d4d419302e4e91f8a59201d74e91ce

See more details on using hashes here.

File details

Details for the file grpcio-1.51.0rc1-cp37-cp37m-win32.whl.

File metadata

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

File hashes

Hashes for grpcio-1.51.0rc1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 5eb372e356010afa362e51cb5d7c77f2fbcccb1dc4948aad7d7f62525d831b36
MD5 61b3fca28b1712e48a09a0034e683b9e
BLAKE2b-256 bdc3b7a36826bbdcc87341e8982cd24960a79dee56667cc4caf41a2fe01e017d

See more details on using hashes here.

File details

Details for the file grpcio-1.51.0rc1-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.51.0rc1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2d807f81f70ea356eb25c5fbf90b5345c781ebd89c5cd1d3a394223576fedb3a
MD5 2ada1f75745ef195ef0970ee703b1d2a
BLAKE2b-256 fa207fe3bafe3111fbf09ed863f332c08dc102c6cbb45cebf8d93ce21cf2546a

See more details on using hashes here.

File details

Details for the file grpcio-1.51.0rc1-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.51.0rc1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e12e0461d2850cd66f36ada66f1aa53553e2cd6055842e7780e330bd29e1c034
MD5 6bfc418e7475a161a9f38aee6fdf3446
BLAKE2b-256 449a5c0d5256babd1574f2d8d0cf65e558e0d2936fceb4a90caaeb154cb50119

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.51.0rc1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7204b58156ad10120eb87d925723f510c2bbcd4b2fa8702cc5fdc8ba6c882aa0
MD5 8f8b959c56a7faa6ecdad19ecc37f851
BLAKE2b-256 f5a50ef265c657e72fa541332ecb10cb23ece8c441892e781616618385a8f2d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.51.0rc1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4a1880bd60fff02f96218339f8d3c40f2a1777439db00a0cae84d4b4a05c7632
MD5 511edadb13907142dc0eb315fb376923
BLAKE2b-256 fc843c57fa9576ecd0950617dad6538b41c18958aac8d79541fa6a26d05fdb6e

See more details on using hashes here.

File details

Details for the file grpcio-1.51.0rc1-cp37-cp37m-manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for grpcio-1.51.0rc1-cp37-cp37m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 4868f416b2a48fb1b8a3ccb070899069fdd02cdcbe81efb0076c031a0464bacc
MD5 3c5e5fe822111b0ff80372620c761f09
BLAKE2b-256 03f54705f9a73c56e592c0e29576bd629e81c73a3b18e6bdc5b135bfd6c1f1d8

See more details on using hashes here.

File details

Details for the file grpcio-1.51.0rc1-cp37-cp37m-macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.51.0rc1-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 67404ed0832abce5e672b868d25ffcb943bc5c84fd061268fe9e410586a7373d
MD5 454750ac307ec7a0ed0b1b5f240794ae
BLAKE2b-256 f2b8033b078f2ce008ddb435c9695cb45f2eedc07bd374d08645be7b738fcf7b

See more details on using hashes here.

File details

Details for the file grpcio-1.51.0rc1-cp37-cp37m-linux_armv7l.whl.

File metadata

File hashes

Hashes for grpcio-1.51.0rc1-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 c4d1fb448915ab50067b05d1fde21917ac4a0f23f89a2ec8281ccb237796e5dd
MD5 37c0ee9e6d8f4d8c22c45dccded34674
BLAKE2b-256 5a73e025bda98f8e7a224eda34aa1ebd07f178cd14b1d5c7690cc3f54cde4c48

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