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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

grpcio-1.50.0rc1-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.50.0rc1-cp311-cp311-musllinux_1_1_i686.whl (5.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

grpcio-1.50.0rc1-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.50.0rc1-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.50.0rc1-cp311-cp311-macosx_10_10_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.11 macOS 10.10+ x86-64

grpcio-1.50.0rc1-cp311-cp311-linux_armv7l.whl (75.3 MB view details)

Uploaded CPython 3.11

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

grpcio-1.50.0rc1-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.50.0rc1-cp310-cp310-musllinux_1_1_i686.whl (5.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

grpcio-1.50.0rc1-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.50.0rc1-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.50.0rc1-cp310-cp310-manylinux_2_17_aarch64.whl (67.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10 macOS 10.10+ x86-64

grpcio-1.50.0rc1-cp310-cp310-linux_armv7l.whl (75.1 MB view details)

Uploaded CPython 3.10

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

grpcio-1.50.0rc1-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.50.0rc1-cp39-cp39-musllinux_1_1_i686.whl (5.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

grpcio-1.50.0rc1-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.50.0rc1-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.50.0rc1-cp39-cp39-manylinux_2_17_aarch64.whl (67.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

grpcio-1.50.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.50.0rc1-cp39-cp39-linux_armv7l.whl (75.2 MB view details)

Uploaded CPython 3.9

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

grpcio-1.50.0rc1-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.50.0rc1-cp38-cp38-musllinux_1_1_i686.whl (5.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

grpcio-1.50.0rc1-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.50.0rc1-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.50.0rc1-cp38-cp38-manylinux_2_17_aarch64.whl (67.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

grpcio-1.50.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.50.0rc1-cp38-cp38-linux_armv7l.whl (75.3 MB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

grpcio-1.50.0rc1-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.50.0rc1-cp37-cp37m-musllinux_1_1_i686.whl (5.1 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

grpcio-1.50.0rc1-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.50.0rc1-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.50.0rc1-cp37-cp37m-manylinux_2_17_aarch64.whl (66.8 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.7m macOS 10.10+ x86-64

grpcio-1.50.0rc1-cp37-cp37m-linux_armv7l.whl (74.9 MB view details)

Uploaded CPython 3.7m

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.50.0rc1.tar.gz
Algorithm Hash digest
SHA256 bc50887373898f247f749afc70dc8093ed12b6657d7841893a80cb9efe6a1110
MD5 1820125d383da1e0b6ce3c7b3f858e85
BLAKE2b-256 62103be7fa7ddb13e1b110a4a9e71968587b04daa7f9ae8fae2bb8664a8baceb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.50.0rc1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0869c99a0b7d2e0a1c75a26ecd69886d9b36a2304c9d8f093c77ad37131fed56
MD5 f2b662e16d0091d0a0f02bed20ab4ff8
BLAKE2b-256 9620bb047f0e44d37e044e75a153385982cad276949cb5242a4014af54356f82

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.50.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.50.0rc1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6b6f9f5f430b9a7fc72626bdf13b8cd370593dab776c6c84e6ca535a958f8c11
MD5 9b6a81bf42823634bec439f176d458f8
BLAKE2b-256 103335e7992ff46d0bf6ad922a9ab47939d9bac2d59fe76d1c7c1c74fd903d2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.50.0rc1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6b8073205cdcf6770ec6a36be8ff5b99493b39581d0c6a1958c6347fa1ea0cd6
MD5 2c2e2946526b165ce88a049d2478ace0
BLAKE2b-256 5de017c0151e58cfe66ebd7f92f7270f5cd1e3cc51c0daa217937ce053f929bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.50.0rc1-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c8ff59b8ccb086da7f3ded3b2f0fe9294ed9b47b4abc4e353a42aa0396e89fa4
MD5 11351f6322ca42396b5b65dd88109f2e
BLAKE2b-256 0ccab4b4c2b511a9e9417c4c33614c4f64c23ec4d60e369e0822546155b80368

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.50.0rc1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d6f904e52718456fc5027b7ab9474a48e37e0bd2856d0ffbb13b09165cf72025
MD5 08d9798907dce117f7afa81b9b6fc26a
BLAKE2b-256 e3c6213df35c6caf16b1f22af2bb7e24ce1a0663493405065a16d06b5775e8fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.50.0rc1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 127dbf293e356bc0b4753886894e8fb42f4a8d2ffb29c06f278b863ebf922d20
MD5 8f089f4218ff5f66da7ab588e4cb2df3
BLAKE2b-256 b4ce46cf7a5fc21686323fb9717b58b5d6da486c16e6c2ded40b859c3aff4eff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.50.0rc1-cp311-cp311-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 7c53eeeebed2d8bc873f85321ae416b527c78fdab51df2f9268f3138eda2e49f
MD5 86277f46a1cbf2f441cbb0109778e2b2
BLAKE2b-256 80f7ecc2a38eb972fea2a31be8400897287a87b9d44f5139850259118550540a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.50.0rc1-cp311-cp311-linux_armv7l.whl
Algorithm Hash digest
SHA256 11dccd1932d5012a4d0f720bacb3bbc41c6c1dc55e310a4957b686ade4190d50
MD5 d2ae3ef4e04f6a85350452ccb68974da
BLAKE2b-256 62a2b1bb733e44d70635094bae913f59e2f4b02156059b9229d2395e9833343f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.50.0rc1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8da860019d1b5ca564516b7434dbf567fff81fa415e7068a683562be9ce79689
MD5 42a9b6e7b0dc47893d4e32b63038f1b9
BLAKE2b-256 d37bbef1d149e1c3bff51b183f1bd0371692ea9b4a2ef182f4cb81fab6911258

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.50.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.50.0rc1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 bc5569707b3947a1998012b9ae177dc734fc1001d185b77df019a1bd9e749e21
MD5 445ce50171e6f09ae70fcf244b122217
BLAKE2b-256 69131e6d650216bc5e53241f8942693bbf1a13ff4bb74ce129118f43effdca9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.50.0rc1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 073414a368f86536b5d964f77ca5966f3265e3be21fac8b5d6796c57a0532e70
MD5 cb7ee85fd148dae82749ed5015b31f30
BLAKE2b-256 191c467e35a3f81e27fc6bca36496c989bd367fb9e02fd725cc239296d8c28c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.50.0rc1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 95096b7bfa68bb27c7d62b5cfcbed0af77f155763e8de15d3c824c4574e12abd
MD5 d45caae782c27b39e015c404ec9bdae0
BLAKE2b-256 f9d9850de6bedfdaa7d93322b427dbc27ab316c8577f87bbfde2d0c8c9d00546

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.50.0rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ccd7a4b0ca880a6476d73d459521a1ef4bd7f5a3757c79b57a03cf0e8ba5f004
MD5 39a40e89fd55ecf063ce6a005f23e42e
BLAKE2b-256 9ab040357da6b36db9d42d0160261d9936cdcb10be560cd9b73f9ba95d1c33af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.50.0rc1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 993fc2df8a6d03a341d6e113172961551ed4d015fbb2acf283047744360bf2c0
MD5 f0fe1e73e0a69136e5ed0663870e0ebe
BLAKE2b-256 4706100e5e7c87a43f940d0caf301b6c71be7eb0fe6ae0c6ccc1c921f4fd6449

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.50.0rc1-cp310-cp310-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 a03b1156b389352dda0dab859c5c232e83ddffa3f1f20c1f1f3dff18cfadc2b4
MD5 af95160887614c21b996897f11deb2af
BLAKE2b-256 9f0d3451d53838890114f24f8cda73f33ef3a591aa2a20fb1f52aa66b7e99060

See more details on using hashes here.

File details

Details for the file grpcio-1.50.0rc1-cp310-cp310-macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.50.0rc1-cp310-cp310-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 f0f5da09e44ecc935e097c57d4b45ade7a8c843e12b47b65384148c1745a6169
MD5 8cd85ab6e6e102ef6a92341be57f3638
BLAKE2b-256 d8d505c95746bc699fa9aed4f33171a33496a117fa4594d171c73cd2bf6b9fd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.50.0rc1-cp310-cp310-linux_armv7l.whl
Algorithm Hash digest
SHA256 9c7acba7b86804290efb86329b526d954a505538f95acc2f7610b608ed728798
MD5 f6ecacecd2fddb80992c48454b5d7de5
BLAKE2b-256 6e9db01b6a4a083832f3b74fb4d4ba4477c4b4f2c4091ee73ec083aec088e579

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.50.0rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 384d92ab004475f3ea43665d95da6dbf9c520e5da51c7d7e71a22c087afee3dd
MD5 03c2056961f9352205bf70d163761ea6
BLAKE2b-256 826364ad9e101e29cac7f110450ab65d33609fd4e6d6492fc54108875878924d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.50.0rc1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b52d5d6dd306dc356b4200ee8b8e679a1630a39ac13b9a848ddecf30eed33693
MD5 c5869bccce9ee49b24e25db6b3d13b91
BLAKE2b-256 ffb45448a5b9749ece69415b9c11723b8579cd9522f8dc726b1d50139cce793c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.50.0rc1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f6f83d6b22e24157761837e7bd4ef08f698e6c9bf15a3ab9428749ec51a336f7
MD5 972dad1f12f3143a27a262c10c216474
BLAKE2b-256 4764aa3b85dc5263f902de305c7b23b772fefc447ee4f06919e0356436b49884

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.50.0rc1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 7f58942f0fb3973e9fa6b09a93fc83e2b2ab202bee4c6f90deaf1970c549b6cb
MD5 c5efdf9bf7088a824a16aaa4d59a4d57
BLAKE2b-256 92a386e3cc9085294177b6083d62c439a52b3647456e247a527ee065aa0c2bfb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.50.0rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7d510e7294ff00dce066468d31754cd94359cb921d26057a3ee932667d06f326
MD5 ad8a8735f3debfa6a66e7c63870b7ab4
BLAKE2b-256 3a339f922dde2392d45e16e19eeccff810846e97a1c34be67e92519cec4d2c40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.50.0rc1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 59e62ce491c664d7c4b00b6a2e28c47b8e307e128f2c37bb7234fc9c07270584
MD5 4838525f071c94f5b19ec0380ebe5e9c
BLAKE2b-256 990de92fb17dd5e04f725614805d2e60a98bd37a734aca098bf78e87e084404a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.50.0rc1-cp39-cp39-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 ec306ad8fe72ad8dcc8f9dfc1ab62d6d4e55f358e3072b59042f92157d016286
MD5 1523ecf7c1863c3c5b4014c318f0cc89
BLAKE2b-256 eab1816b463c19a0352a40e42f131a27917a8ca1947b841a8736403ee497da60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.50.0rc1-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 ed57e8cd2879266c56fe33b1f03ae1a4548743c4f66aa508cbb430b853f91398
MD5 d698a33036304b417f85369c8aeac73b
BLAKE2b-256 aee41f2a1fb969cb360376d35f8cb341fba9157c9f37b2b7cd766970316549ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.50.0rc1-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 5a61d4c8e2f83dd18914e35327ad53de7fad2a8605915aa46eba60bbd87a9bf7
MD5 3968c0dccf5b2b8187452699d01108fe
BLAKE2b-256 866857be9879a4419f7d6b55f7465c9ff0a2b409a1f620667914f1517baaaf31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.50.0rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 fb26aaa92ae47a0a62c7138039c13aea917881a79e237e40d3476e06223df93d
MD5 8b0f660984ac7d33f01dd3091dd8fec3
BLAKE2b-256 198fa6722884e9eadc145244fb8350158bb45e24fa3fcca642d0d4249a98d22e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.50.0rc1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 5fb09942f91731313bf3366d212b988c882e7b2754062215c83d7c0fa0b641dc
MD5 28f120dab45973be73e9a696d2ffb4b4
BLAKE2b-256 9a83020b9ac85af3ccefe365cf18a3ab0d1f212a654dac413309b1f68bc92305

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.50.0rc1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2dd3ddfa42738990ebfaa56dcf4f1a52c2b8a515a6b4747a891727d4133093ce
MD5 f272f8da36972c444234bc1bca1d3388
BLAKE2b-256 f846168f9e1a7fbb2dacb9e585eedf7bf4520419a8c29a85aa51f33e5b2ea875

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.50.0rc1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 a79bee3f435d62038d468b51769361ed21fb2b2c68d7ccc1697b21feedc0ff68
MD5 2ef2c6383c953bde7f021e6c1ddf279b
BLAKE2b-256 19c503127838401ad160675d8d579bf8696cc265d676bff5a13e806e0026860a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.50.0rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a2f90fde3e81d4208bee0b5fdf9210e003e8b0e73404eeafe0529cf32b371c76
MD5 a8f8f860e07ef297b73309aefc9bdf16
BLAKE2b-256 b71030652886f875ea36ace1dbd49aa3120a9e4ea207c36122cf89d94eff66a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.50.0rc1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cb3cc8626c80adb9e1cd616ca95baae35234ae9774b939c22ae297c448c1253b
MD5 348cc68ef6af721f7eb54cd5dc33d893
BLAKE2b-256 859e08bcaf17e46a2fddb5423053afa06bdb85c4d4bff3eff9164d0d49e197b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.50.0rc1-cp38-cp38-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 b14681e51428a886837cc421532d2f745e96c89ed4dfe48622394492a42ec4e6
MD5 06179235f40d8340beb52e1b81b017a6
BLAKE2b-256 0bda2169c3d417e3153d884982249bb98188f076f3678f8b733ddd52829b3030

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.50.0rc1-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 693bdd8d806fd9a2590942f5af85c579ba71b0d33497963aee0e6d96bf7da705
MD5 78dea0fe0c90fb8bbf3dc38e7544a32e
BLAKE2b-256 5931ab2e5740b2bfef0b9f34a2858be349d94c1b894492fdae2bdb04260dac06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.50.0rc1-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 5540369475f47264a474767fdb49bad1d0f0eefcae47fdc093adb80c317880ba
MD5 cab96c2ddaf057146ac514c3c400c199
BLAKE2b-256 1b8a957a8794d442a858c2344e2700ce33c97d442cda11c76714ca63956d174b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.50.0rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 67000796aa787174a2b8afc913742ef2a560d8f54c9051bf5baa0716d95fd059
MD5 78aea63496737d564eed86ce9e87c57b
BLAKE2b-256 47b133d0472439844dea98db7fbfa447226a24357b08de8ffc6a261d9b8b530e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.50.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.50.0rc1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 658e1fd55500ef36e73368931ad1b0977baf04d23b0707c3200b15b552b673c6
MD5 319f02753a47d724a6fa9b75a6ac45ff
BLAKE2b-256 5ed2927007cd30a1d2f904850af0ad3c705bf1594b9aeeb4525c22ba24b5de1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.50.0rc1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b5cef337557125e5801c2c4c3e991731447715f887488cf2b57e1e55ce4f1eb2
MD5 a32359913077ff0d7a1988396ca351bc
BLAKE2b-256 bc6d5d16d586a9d3418162b2e4337d45e03f6025db18d3ef739194e1f1d0a3ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.50.0rc1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 0fa050c16224845c7b2c18bf7252032a3022acf4c822a8f3ba1c8d1640820109
MD5 34bce100cc3829c3de10ea52ed6436d9
BLAKE2b-256 b33f2ed0156c731219a6c0ba8c612f68d4bf13913b358a0cf5494104853fa2de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.50.0rc1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b3dc465b49045f5a3d2068cd11e66f0bf37037dd6e2a12ba31cd46bcbd345924
MD5 9db02bec3ea53592b1c21cb2ead9a679
BLAKE2b-256 742b27fe0fc486ed5139bbbd467b1f6a501c2fefb92d465fde2325aa2fdd2d7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.50.0rc1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d5849a1d309cc325c7ee1c7084296b85b89c7db47cfc1e9b8daa9700bd6afe58
MD5 c65c4bcaf00e9361a4b26ac91a042773
BLAKE2b-256 24d3851a2cff7789cc8af5ef3d6a75bc0d6916a86bb4f00a1ae41f6c4e5f4c5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.50.0rc1-cp37-cp37m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 47aa01c39ad55513f829f7e5db533815304e6c1f05465d314718d8a925484542
MD5 11135717ae8ae8c376003e69a8c7b49a
BLAKE2b-256 804a478e938eb4df50477173df1172d4e5617647662ae65b4ed717ca4b21430a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.50.0rc1-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 d3672d47f5bb7ac89857b8bc53e3be1b929c153cf9c6382abfdba5f271fe117b
MD5 99b552358ca8d1b188234e183c4ccff2
BLAKE2b-256 f365963aef8d2efc3a53698c485603567e76c4d7cb2fdbf42332d4f3376f9862

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.50.0rc1-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 a38840b5374b95c2cc24ff046c0da5de27c43d41dc0a95d635f2330994a72e51
MD5 68948b9830968d4a83f33e8e0880389c
BLAKE2b-256 2c1a5c0c39559df7990207548f22f3300beb867e599d367fcda1e37e6c732399

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