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

Uploaded Source

Built Distributions

grpcio-1.54.0rc1-cp311-cp311-win_amd64.whl (4.1 MB view details)

Uploaded CPython 3.11 Windows x86-64

grpcio-1.54.0rc1-cp311-cp311-win32.whl (3.4 MB view details)

Uploaded CPython 3.11 Windows x86

grpcio-1.54.0rc1-cp311-cp311-musllinux_1_1_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

grpcio-1.54.0rc1-cp311-cp311-musllinux_1_1_i686.whl (5.6 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

grpcio-1.54.0rc1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

grpcio-1.54.0rc1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (5.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

grpcio-1.54.0rc1-cp311-cp311-manylinux_2_17_aarch64.whl (4.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

grpcio-1.54.0rc1-cp311-cp311-macosx_10_10_universal2.whl (8.6 MB view details)

Uploaded CPython 3.11 macOS 10.10+ universal2 (ARM64, x86-64)

grpcio-1.54.0rc1-cp311-cp311-linux_armv7l.whl (90.9 MB view details)

Uploaded CPython 3.11

grpcio-1.54.0rc1-cp310-cp310-win_amd64.whl (4.1 MB view details)

Uploaded CPython 3.10 Windows x86-64

grpcio-1.54.0rc1-cp310-cp310-win32.whl (3.4 MB view details)

Uploaded CPython 3.10 Windows x86

grpcio-1.54.0rc1-cp310-cp310-musllinux_1_1_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

grpcio-1.54.0rc1-cp310-cp310-musllinux_1_1_i686.whl (5.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

grpcio-1.54.0rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

grpcio-1.54.0rc1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (5.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

grpcio-1.54.0rc1-cp310-cp310-manylinux_2_17_aarch64.whl (4.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

grpcio-1.54.0rc1-cp310-cp310-macosx_12_0_universal2.whl (8.6 MB view details)

Uploaded CPython 3.10 macOS 12.0+ universal2 (ARM64, x86-64)

grpcio-1.54.0rc1-cp310-cp310-linux_armv7l.whl (90.8 MB view details)

Uploaded CPython 3.10

grpcio-1.54.0rc1-cp39-cp39-win_amd64.whl (4.1 MB view details)

Uploaded CPython 3.9 Windows x86-64

grpcio-1.54.0rc1-cp39-cp39-win32.whl (3.4 MB view details)

Uploaded CPython 3.9 Windows x86

grpcio-1.54.0rc1-cp39-cp39-musllinux_1_1_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

grpcio-1.54.0rc1-cp39-cp39-musllinux_1_1_i686.whl (5.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

grpcio-1.54.0rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

grpcio-1.54.0rc1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (5.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

grpcio-1.54.0rc1-cp39-cp39-manylinux_2_17_aarch64.whl (4.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

grpcio-1.54.0rc1-cp39-cp39-macosx_10_10_universal2.whl (8.7 MB view details)

Uploaded CPython 3.9 macOS 10.10+ universal2 (ARM64, x86-64)

grpcio-1.54.0rc1-cp39-cp39-linux_armv7l.whl (90.8 MB view details)

Uploaded CPython 3.9

grpcio-1.54.0rc1-cp38-cp38-win_amd64.whl (4.1 MB view details)

Uploaded CPython 3.8 Windows x86-64

grpcio-1.54.0rc1-cp38-cp38-win32.whl (3.4 MB view details)

Uploaded CPython 3.8 Windows x86

grpcio-1.54.0rc1-cp38-cp38-musllinux_1_1_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

grpcio-1.54.0rc1-cp38-cp38-musllinux_1_1_i686.whl (5.6 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

grpcio-1.54.0rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

grpcio-1.54.0rc1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (5.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

grpcio-1.54.0rc1-cp38-cp38-manylinux_2_17_aarch64.whl (4.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

grpcio-1.54.0rc1-cp38-cp38-macosx_10_10_universal2.whl (8.7 MB view details)

Uploaded CPython 3.8 macOS 10.10+ universal2 (ARM64, x86-64)

grpcio-1.54.0rc1-cp38-cp38-linux_armv7l.whl (90.8 MB view details)

Uploaded CPython 3.8

grpcio-1.54.0rc1-cp37-cp37m-win_amd64.whl (4.1 MB view details)

Uploaded CPython 3.7m Windows x86-64

grpcio-1.54.0rc1-cp37-cp37m-musllinux_1_1_x86_64.whl (5.3 MB view details)

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

grpcio-1.54.0rc1-cp37-cp37m-musllinux_1_1_i686.whl (5.6 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

grpcio-1.54.0rc1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.1 MB view details)

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

grpcio-1.54.0rc1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (5.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

grpcio-1.54.0rc1-cp37-cp37m-manylinux_2_17_aarch64.whl (4.6 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

grpcio-1.54.0rc1-cp37-cp37m-macosx_10_10_universal2.whl (8.6 MB view details)

Uploaded CPython 3.7m macOS 10.10+ universal2 (ARM64, x86-64)

grpcio-1.54.0rc1-cp37-cp37m-linux_armv7l.whl (90.4 MB view details)

Uploaded CPython 3.7m

File details

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

File metadata

  • Download URL: grpcio-1.54.0rc1.tar.gz
  • Upload date:
  • Size: 23.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.9

File hashes

Hashes for grpcio-1.54.0rc1.tar.gz
Algorithm Hash digest
SHA256 8b276e4fef34944fad1d61e2c2379091f0e20440963a7f7306a34ab715fdcfb1
MD5 8b6c3799d17409c84f4746c8079a260d
BLAKE2b-256 65e0e857890822937626ede5041b1d31a27255230adea67d33c8cf2f6f59a4cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.54.0rc1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 011c159ef550dd412a67feb55624215ebd9f94f20e170ce1fb9bdbd46c8e5c90
MD5 5a969a14755eb6789196da9271ddfce2
BLAKE2b-256 95c0fcf0771e5b1f09bbfe1c73a8141f08241e55b21a86483b786fd2286bfd3f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.54.0rc1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.9

File hashes

Hashes for grpcio-1.54.0rc1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1152e8ef8c889515e1461e1d93113571cafb0f73b58be482daf42462f79baaa7
MD5 daf6310744d52d2591d3f3fd22fcb1ce
BLAKE2b-256 44ccd55e958ec762d7af2c543857925a07e2deee177f809c0362cc47cdbf09c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.54.0rc1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 48d5c13b1fc2cb2f5dec7c535b0ae52ef7cb35d6345b6e3b427ef43a88711c77
MD5 ca9f9d51108ec66e97617068a41fb2ce
BLAKE2b-256 cb38e499b9e1f4a416566f914dd4dd4b47509f8f81a6935429fdc6fd7043b635

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.54.0rc1-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ce4de4aec258b037fca11034f418e05fbbf60ede9fd3e72b34052c51ba1be13d
MD5 78b4786e568fb319c4efe80da2a011d2
BLAKE2b-256 6c03a2af3a704e631911b586035669f2ce1f30e00a9d3f77677b58113187996a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.54.0rc1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2e4f11cdcbe499895a6482378f15545fce4e1cae652421a0081f3719aa18de06
MD5 d7a71ad088b569d20af9dda62d68524b
BLAKE2b-256 ebda60080541ce1d749ac4457b482fe7bcce75bce8ec53b62f47100297c45c3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.54.0rc1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a7be756b45c4f89acc7d60f5ed7d96a302471d6a09d348c3a7e35b6bb96c479c
MD5 fe316a33dca00e1a3514edb0d8501d7f
BLAKE2b-256 a5ee622a8ca72ecf856f1d96b587014c7277c1091c396b9b48fcb7a82ed4722e

See more details on using hashes here.

File details

Details for the file grpcio-1.54.0rc1-cp311-cp311-manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for grpcio-1.54.0rc1-cp311-cp311-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 76baf5bd9ca3029e6ecb662576740a70be63a618503d4ce3696f69a21feeb74f
MD5 77a59a690e199086fa0e9a1e8a913c63
BLAKE2b-256 50489931228f04ef0dbb6fe1a0cd8b5b254c88df832afd8f8e9edbf6d2a39414

See more details on using hashes here.

File details

Details for the file grpcio-1.54.0rc1-cp311-cp311-macosx_10_10_universal2.whl.

File metadata

File hashes

Hashes for grpcio-1.54.0rc1-cp311-cp311-macosx_10_10_universal2.whl
Algorithm Hash digest
SHA256 7c95aae18ba779d8a77ae79a4329e2e1169f08fa20b5398b76ae266fbb418b46
MD5 d92f3aff02ee8f306299f6ac3476880c
BLAKE2b-256 8444062599b09b90e6d0037abebaed13c9f62fb1023dfc988bf970456cb84ec2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.54.0rc1-cp311-cp311-linux_armv7l.whl
Algorithm Hash digest
SHA256 c9cdd661dbfcb369cd6ff0cfae9f6e1676a99f6fb874db4ed33925eb60f93af3
MD5 e3384fcbd9a669fc31e558b771b3b32a
BLAKE2b-256 d21a2c6e2cb729c04320284a6335793a6e6108d518821d48ffab4cdfe74d4185

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.54.0rc1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 81d0e9c619e69b50c7f5665e5c64ea6d71b8c77f975cfb5d7f228abfd3c30444
MD5 00d19a87a32ba484c5f352b9a1956d4a
BLAKE2b-256 0746a0642eaf113c3c1c515aa06c59b42c10b3401c51ea0598c0e4ffb181c71f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.54.0rc1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.9

File hashes

Hashes for grpcio-1.54.0rc1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c0ce38f2e35c081a2da21da7dcbedcf81079745134529ac16ad1b6752bf960d8
MD5 c1ccbb8a8ece07a2dcb29e128aef1891
BLAKE2b-256 a8169e2b11510d8a3e06d54b1f663dd011509d0955fd47ad321df183402e64b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.54.0rc1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0aa533e33027d088122743498751ffda831e58a61ddb0925c0eb3f66aaee0c28
MD5 aa505baa6cbe0ce7ca250f7c3e1f8346
BLAKE2b-256 aa2cfff90462e50870cb60e0cf0cd9a8ba33c300d46a6e13144dec0bf04f0789

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.54.0rc1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 530f2dae52cbe913090db668fc233625024ff089ca19a407370cd24333364ee0
MD5 079aeaa7c0b4f2bf949b5aece07b2531
BLAKE2b-256 20d947e0c80001174fb22a31bbe5f096bace3bc7b82be936179d723b51c941ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.54.0rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8a1b9023759a4dacd7286539a7fd9700d8fe82653d2de36f5f09a9e862bf1363
MD5 9f3e389dfe9f3b3895dfc945b67e2ee2
BLAKE2b-256 f6fcca447fe45e1d1e7f210beca6479d87ef3e17733280a676af1b5760adddb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.54.0rc1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 08d0a7841aa7588ee5a9269cdb6ffcfa9d9b26bc384ff563e165739b7be9eff0
MD5 dd33c6db4d1a5fff08fe33d69c9df138
BLAKE2b-256 b224d5bbca674ddcae7b418e7c895b888e2dd84305c40de7b90ae4f655ec5637

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.54.0rc1-cp310-cp310-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 c4b88e44dd4cd19e352b0c1b5267f319e24914369baecb20fa5765144965fd40
MD5 65b04226d26d7e02af3c24f8649db6d5
BLAKE2b-256 66387c7f23799115923c2bb63fe5a6d91e8e04b8b08fa77316208c3b47c0bf49

See more details on using hashes here.

File details

Details for the file grpcio-1.54.0rc1-cp310-cp310-macosx_12_0_universal2.whl.

File metadata

File hashes

Hashes for grpcio-1.54.0rc1-cp310-cp310-macosx_12_0_universal2.whl
Algorithm Hash digest
SHA256 7763bdb001c10200b1938838e75142e389f1767e8a4da0fea98b9feaac9b6788
MD5 db5056583838710906c33a8a8300e7b9
BLAKE2b-256 f11c5f29499eb1f98ce780225b58a1985e2248a22723f4b6bd927334a510da7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.54.0rc1-cp310-cp310-linux_armv7l.whl
Algorithm Hash digest
SHA256 81173c95b896e6eb681865d402b29735f32363ea9e44e4541bad0fe25f50c602
MD5 c50bb650c4a014b13b5db27f202a2777
BLAKE2b-256 6a6205aee748a86a967da59db0912abdd0faf2911e68ed4db9edd3527208d44c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.54.0rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9e58c528f1cb1cdaa64b9afd36ba1ff0d05c507229bcafb265533de9b31a45a2
MD5 1f1d1f392bd4dd2c65592838a0b6719d
BLAKE2b-256 a08a79d90a20a2693d6ec1b8be4b6caa2299aff461a866d4b0864e32817a73e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.54.0rc1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.9

File hashes

Hashes for grpcio-1.54.0rc1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8c668d0c7431f513f310da28ccda83c17fce9f2327daac7c2ccd7dd32d22fb0f
MD5 30f69b458bbde4fe8e27e6acb88a065d
BLAKE2b-256 7323956cc3b2dd35f967895c71f1dfb0b4714ac61fc496fd08a2f6e2662bf214

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.54.0rc1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 733f1bf20f694448362cc9dc05417e108ed4fd3bdff780d48a2e287c5b704299
MD5 24c3cc5934fc197bd614ed9ee04d1c23
BLAKE2b-256 90932534f6dc33d2b9981b59ee2aec0542484b552862c139461c273c415c239e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.54.0rc1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ba8d08ddf842b135fd9f77fe80c43c5f46260cf0c9d2ed0adb1b26d3585a1161
MD5 35352ff8c19f85e73b5c5a7bbb5dd259
BLAKE2b-256 f7751affe32ea71960c86fc309c59641072301ab064a67f22c8cc442862752ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.54.0rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1cea590a94a9e246ccdd2c227da15de97c7a6470fa6c0193b144fb410026cdff
MD5 419ee9b79624283a92071d7b35edc56d
BLAKE2b-256 b33e44133452eff4db938c6a5664eb6018cc5eaa94b36e019579cee6e4dff591

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.54.0rc1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 accf58bd8c2c93fb0be422e976d758a9c2dfbb0d281e51cfc688f3caedc4e3b1
MD5 9780076611a4fe5e7fd6436873fce22a
BLAKE2b-256 4636035ba3dc84442b9b205bc47329da6b20bf709630aa84b187178dec28a657

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.54.0rc1-cp39-cp39-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 d9922692487cbb684e18bff8d9c97ba60c0d27626f519cc3661e97ee5dbad962
MD5 b9d238053430cb235147bc4b301b362f
BLAKE2b-256 ccb06b4f474fc6b6707e6837bb5d09d089e7110a29d84dedcbdb1dbc13be16e9

See more details on using hashes here.

File details

Details for the file grpcio-1.54.0rc1-cp39-cp39-macosx_10_10_universal2.whl.

File metadata

File hashes

Hashes for grpcio-1.54.0rc1-cp39-cp39-macosx_10_10_universal2.whl
Algorithm Hash digest
SHA256 c7e303ec25468dfb6ad3534de0e5f02c807b690f595a7409711bd626fec93ded
MD5 56be6e06aca9d3dcba82c28726b0d3bf
BLAKE2b-256 ad6e798f24d2d8280ab8d373c6020432d774f6cdacc0d064c4f2ab3f1b9ac70c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.54.0rc1-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 6bece770e4f34b6b48a0c331b54905bd4eea5370c9640a43deea19be4e3b4c81
MD5 015e5ccbee339d2d15255ef740ef6848
BLAKE2b-256 db153b707b627a6c559772c90fad1a10e6a58abc1e954de97ff2054424413b4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.54.0rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 54060dfd67c44fba6f3da117c12b81f5473cd150143c354159edfa439ddbaee3
MD5 4b66bf3cd027ce77077f63901bba283b
BLAKE2b-256 54354e2a262ab68f2870b059e181a7feba07b4af1fe9f95a704835183c2fa337

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.54.0rc1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.9

File hashes

Hashes for grpcio-1.54.0rc1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 b750e02ed94ad9a0fca41076a22e185a9885b3913df25c1700541660ebb2c1e4
MD5 b130b3135d5d5f28bb800121e8373299
BLAKE2b-256 86f10fba16c4eb7f561f66f250e4aff22bfdfff5baf4afcd1a0e213cd920b61b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.54.0rc1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 792bdb9f9e1e7fc7405fcc18845892d179d1b27c495d8d8bed4124badd12dee6
MD5 59f0983ad1f74d00fa21dedf8e9e674f
BLAKE2b-256 00345ed9b8dd096dd1c65c4d9c362aa8cdc4e693cc90c099e01fcdb73b4db17d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.54.0rc1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 421c0b2cdcefe0133a35d104967482af1798808d86a25ba150cd58b3e81ba615
MD5 9b86317d583a5ebaf95d02b8c27a6ae7
BLAKE2b-256 ff51b17d31c7187a4ef93ae0787aeda2d9f679b4ce6f7610ae1c33b530a6205f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.54.0rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c8e608d70c1ca6cc26d7d59761b5ab653dff21954ef235b8ac9b935e938a300f
MD5 4d5858402d287495721fe1ae92cd7502
BLAKE2b-256 c062bd4ad93f067aaf642bddffef833455aef3ef4ec8f084e7e3dc9aab131fd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.54.0rc1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ce09919a35fe6a46d9130c64a0f6fe00705285de3cc375dfc327519ec452beb1
MD5 2bd420283200e6ba17d24ea29f3b7df5
BLAKE2b-256 b41a62a88d8cce631fd5f95cb983aaaf5a6462ab57787f01a36635baf1302345

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.54.0rc1-cp38-cp38-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 168a9754849ef73bb2aa363f9908658c166e9a0a86bc4bac6ffd93db6bb509dc
MD5 94aaf3638b89cd549bdbd11bb649847b
BLAKE2b-256 bbe508afb7f4947d58e012340943b1c942e179efd9e655be3bc0288d4cffd549

See more details on using hashes here.

File details

Details for the file grpcio-1.54.0rc1-cp38-cp38-macosx_10_10_universal2.whl.

File metadata

File hashes

Hashes for grpcio-1.54.0rc1-cp38-cp38-macosx_10_10_universal2.whl
Algorithm Hash digest
SHA256 42025d75a021193ec1bbabcfcf0c1aa4d2a7b7347ad3a728224f07fa8b6b32f6
MD5 91bf0b81969734598ef9118dd0cc7659
BLAKE2b-256 afa5c612069d40b8f818e706f5af4b5edc96f247c06d92574a4da2a9c295f70f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.54.0rc1-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 772188b2805cc5ad4b558f1a1ecd0f9351badebbe9b80d9281af3365b672ead5
MD5 19b81ed57f8a97ab2edaf492005683ee
BLAKE2b-256 7ff7776ecef2cef3ca37d3e893926ae871f3d55709494dd9755a58ec6eb2fc02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.54.0rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e5ca25a19b879caaba247418a90c30ad1857d3a4236619ff0f3783efe88fbedf
MD5 e5419ab98d79e1d2f9e6e8b08bc4039b
BLAKE2b-256 1fc43b6e732d64d5a7dfa4b223875a8eaac5d1349a28d5427df613925b5afedf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.54.0rc1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e70a78363d9686501444042e29360386e29c27d038ecce6c50a46ada7ce46723
MD5 018963d25bd419a7badeef2e536d2041
BLAKE2b-256 ea459dc595a28f472f50cc3e51fae405f2b01ed1c8746300c2d9ec4ee42b894c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.54.0rc1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e46d154d7645433a6b9dde2a5fdef5324bf2d5b3d72a76a2366296eed5008238
MD5 dc0ad26f4f7a659ccf1a726bb36a411f
BLAKE2b-256 7af98248073da1ff94325d7509423353538854d934324f21c0fbd68889276159

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.54.0rc1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 819156c2dda0757d3121236c99a3c646f512c641565aafb7407cfec44a2501dc
MD5 638efb3581f571e6836298cbd69bddbf
BLAKE2b-256 24e1d13a7ae66fc745dcc9140880d930bec65f36f41887f0c67d57a3c06afa7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.54.0rc1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b12c75983a8dfee1c2b5877e2b7843aee51765d82efcaacc0ef5626e8f73295a
MD5 45016e5bfae77417f646e5cb4a1b04e8
BLAKE2b-256 15146ef9203e4fa50601310826d007f01c414737fd6fd4265b718ed2ca7f02c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.54.0rc1-cp37-cp37m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 1b0d4b465b3c37c66bcc6a818e396a4508ca10021a7ec975cf355e65f5b423c5
MD5 9cea85955f1a39b774b4fd0c295463c0
BLAKE2b-256 41fd96a30943458e4f6c09604c02689f2870d513246e18b0136542fbe28edc09

See more details on using hashes here.

File details

Details for the file grpcio-1.54.0rc1-cp37-cp37m-macosx_10_10_universal2.whl.

File metadata

File hashes

Hashes for grpcio-1.54.0rc1-cp37-cp37m-macosx_10_10_universal2.whl
Algorithm Hash digest
SHA256 513a59f30a43c45b199c4f28e8f18cb3d94f87a6ec2a077b1ba7e7987db8150e
MD5 1b7225df055f7eddf2041e2a80f633cf
BLAKE2b-256 d21a9f3048148a16b637756b60ff287547a4f903cc99e386ce4254ec2a56ed28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.54.0rc1-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 6379e99d5ac8d14e5a0903e08ff48cd69c5aed7d3186440d7b6ec4134c8dbbd0
MD5 e8ee28df92fb20a1e1470806f2ffef8a
BLAKE2b-256 4e868189137c84fc1e398dbdb2538302703b684d9b0abcbda1264e162db8eb15

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