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

Uploaded Source

Built Distributions

grpcio-1.57.0rc1-cp311-cp311-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.11 Windows x86-64

grpcio-1.57.0rc1-cp311-cp311-win32.whl (3.6 MB view details)

Uploaded CPython 3.11 Windows x86

grpcio-1.57.0rc1-cp311-cp311-musllinux_1_1_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

grpcio-1.57.0rc1-cp311-cp311-musllinux_1_1_i686.whl (5.8 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

grpcio-1.57.0rc1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

grpcio-1.57.0rc1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (5.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

grpcio-1.57.0rc1-cp311-cp311-manylinux_2_17_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

grpcio-1.57.0rc1-cp311-cp311-macosx_10_10_universal2.whl (9.0 MB view details)

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

grpcio-1.57.0rc1-cp311-cp311-linux_armv7l.whl (96.4 MB view details)

Uploaded CPython 3.11

grpcio-1.57.0rc1-cp310-cp310-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.10 Windows x86-64

grpcio-1.57.0rc1-cp310-cp310-win32.whl (3.6 MB view details)

Uploaded CPython 3.10 Windows x86

grpcio-1.57.0rc1-cp310-cp310-musllinux_1_1_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

grpcio-1.57.0rc1-cp310-cp310-musllinux_1_1_i686.whl (5.8 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

grpcio-1.57.0rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

grpcio-1.57.0rc1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (5.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

grpcio-1.57.0rc1-cp310-cp310-manylinux_2_17_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

grpcio-1.57.0rc1-cp310-cp310-macosx_12_0_universal2.whl (9.0 MB view details)

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

grpcio-1.57.0rc1-cp310-cp310-linux_armv7l.whl (96.2 MB view details)

Uploaded CPython 3.10

grpcio-1.57.0rc1-cp39-cp39-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.9 Windows x86-64

grpcio-1.57.0rc1-cp39-cp39-win32.whl (3.6 MB view details)

Uploaded CPython 3.9 Windows x86

grpcio-1.57.0rc1-cp39-cp39-musllinux_1_1_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

grpcio-1.57.0rc1-cp39-cp39-musllinux_1_1_i686.whl (5.8 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

grpcio-1.57.0rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

grpcio-1.57.0rc1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (5.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

grpcio-1.57.0rc1-cp39-cp39-manylinux_2_17_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

grpcio-1.57.0rc1-cp39-cp39-macosx_10_10_universal2.whl (9.1 MB view details)

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

grpcio-1.57.0rc1-cp39-cp39-linux_armv7l.whl (96.2 MB view details)

Uploaded CPython 3.9

grpcio-1.57.0rc1-cp38-cp38-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.8 Windows x86-64

grpcio-1.57.0rc1-cp38-cp38-win32.whl (3.6 MB view details)

Uploaded CPython 3.8 Windows x86

grpcio-1.57.0rc1-cp38-cp38-musllinux_1_1_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

grpcio-1.57.0rc1-cp38-cp38-musllinux_1_1_i686.whl (5.8 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

grpcio-1.57.0rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

grpcio-1.57.0rc1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (5.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

grpcio-1.57.0rc1-cp38-cp38-manylinux_2_17_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

grpcio-1.57.0rc1-cp38-cp38-macosx_10_10_universal2.whl (9.1 MB view details)

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

grpcio-1.57.0rc1-cp38-cp38-linux_armv7l.whl (96.0 MB view details)

Uploaded CPython 3.8

grpcio-1.57.0rc1-cp37-cp37m-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.7m Windows x86-64

grpcio-1.57.0rc1-cp37-cp37m-musllinux_1_1_x86_64.whl (5.5 MB view details)

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

grpcio-1.57.0rc1-cp37-cp37m-musllinux_1_1_i686.whl (5.8 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

grpcio-1.57.0rc1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.3 MB view details)

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

grpcio-1.57.0rc1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (5.5 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

grpcio-1.57.0rc1-cp37-cp37m-manylinux_2_17_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

grpcio-1.57.0rc1-cp37-cp37m-macosx_10_10_universal2.whl (9.0 MB view details)

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

grpcio-1.57.0rc1-cp37-cp37m-linux_armv7l.whl (95.6 MB view details)

Uploaded CPython 3.7m

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.57.0rc1.tar.gz
Algorithm Hash digest
SHA256 d00d113b9a7bad1c11f9b16b6bdf4b70d96164fd9c367cd6cb1780cb954d22e3
MD5 83ca00e20a2d136d54552cd411a25be0
BLAKE2b-256 44e4f62700e5c7b2c48433a15bc463770d7a858a278c467c03ef80c44479c7fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.57.0rc1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3d052b1033474b7e9863871cd3a9732985c63b91e52c79231002b522dd439a02
MD5 0b48410df5034177abe663287eb61b8e
BLAKE2b-256 e1a0ce6b6695dce1fb720c94e9dbde43da691d6608f3e506929427f4f8fd46bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.57.0rc1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 3.6 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.57.0rc1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 cc0c98c83d4936d6e094684d4245f7ff48fef925617bf7ab45deeb57632e90cb
MD5 c12cc1bdcbb10d707beb7691daf1347f
BLAKE2b-256 fec5ee27147fb4ab5548dd6bf97ae32f4ad80afbe7393db4ec029f2e44f238a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.57.0rc1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e88833630f79508f50f0cb04a8a81dbfc995c2da233f6f4fcb4285b661ba7d20
MD5 586dc5c0da016c8579f39a69e9fea902
BLAKE2b-256 f01e91035a0569a4bd8b321bf572af765cec04d83061f6f3d0df3991caa1896f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.57.0rc1-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 bf36dcceb2ec27c8c74cb6377dc186fc2811755166ffa278a91879c2e45ae95e
MD5 078e91252846853e2e1f80efac446ce6
BLAKE2b-256 f8587e5c7811efe3e55e359b0f1a5430554793dcaa185e72e30f494859f61753

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.57.0rc1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6c988272517782229a654eb3e82414f144bec0adfba994934e6467587e4459a4
MD5 a6c093df58f9e0469213befea5a3f0af
BLAKE2b-256 12f6dfcc27a43b9ac210e0a31bdb04b4327ea482f838cb160e85c57da578782d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.57.0rc1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7bda6b22c6ba16d31af3c68d40283fa57ac4ac4db366b41f3b63ebe860f232e4
MD5 1828e302edbbdc1f1c2e22abd5f61242
BLAKE2b-256 3e380ffe70d90b66d89c262bcb2d9d02f59f1d6d0461aa64151d9cb05dbdb831

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.57.0rc1-cp311-cp311-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 4e1d0e8fd0e4dc4294aa49afaddeccd7b71c3d1037771b72eb3c1fe3514f57bc
MD5 d645fff46d13309dfe161d7db59e7dbc
BLAKE2b-256 3ab3a0505e28432906ed7785b2d2e0fcef8adec2f84b0b9d7d2d13a2726b9a73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.57.0rc1-cp311-cp311-macosx_10_10_universal2.whl
Algorithm Hash digest
SHA256 d3f54574052448303dc96e801ac91d7ee572ca46242b0f07b419cf70d1533e1a
MD5 5504951f0d0cdf36996dc80638ddab8f
BLAKE2b-256 11d34a8356cf286cb2f7dc525459f74dba8ad3ac5aaa1370ba016b8407f3dbd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.57.0rc1-cp311-cp311-linux_armv7l.whl
Algorithm Hash digest
SHA256 5236346598f4fcc7eaded6fb80f5b468389f1615ac25e25383f45589237c46dc
MD5 1d070914d9af0ae4e18b268a10c49ff6
BLAKE2b-256 91f96c83d6dea64b16f989390ca1e7ec88eca61a7f5b40bfd9caba004c45ce79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.57.0rc1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 008bd96d9417ad72c364d0f1194ab9b36e378197791997f42d787ac74d21fcf7
MD5 a32f80141697bc2b3b92cb213e2ffb6d
BLAKE2b-256 15774b39bd24278809836d6840e17c3111892c56ebc573d43a35f007bc86db00

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.57.0rc1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 3.6 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.57.0rc1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 34c76e433462903c1250c78e7d33e7acd097d2590e8c21cf6f194f3ed43a6782
MD5 d547eb67c83e1895ee9392d57b9f3a35
BLAKE2b-256 22c819ca54edae0057eedee9e238a2ebaa261c12290f08c7889b0afc38337ba6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.57.0rc1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c265ec08ca246912124b4c1ab0d92e11faa0e68005c1639072cdf1e65dae13d5
MD5 25c84cab0f0e18a88e8660ac38425a53
BLAKE2b-256 a5e870832a7b3db96f2ed4b7bcbf943242c0d9ce55a3bd1444b268d2156cc38c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.57.0rc1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 db01a468e4819416d4e79134a5d8b0c445e4e8ab3462629d831b697ec889a9c8
MD5 62e69ad3468204e205a6cfc028b78aa2
BLAKE2b-256 e90995204c3780a2a686fdab11ed870e61c49caeb111f634b979843a9aa93201

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.57.0rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 04d28c82cd676f74cb3fb47d2f585069a51c385a374fb04f859359956fd3f10b
MD5 8c049d7863f00ff9650cb893429f0046
BLAKE2b-256 610471ce9636caa66e144c08611a87794b82fc1ca47adf2d1ca4995baf44a764

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.57.0rc1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9ff30f17f9bb386963d733f44c2069e339e1c98fb7a32fd2a0b9c6c1b116c872
MD5 964c9e2753bab9e3ef45b3cb88d51f88
BLAKE2b-256 a34d5a69e662840ea707b3255e576f266d09153cfbce351ec343b495da5c159b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.57.0rc1-cp310-cp310-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 3bd4ba6c82f2be91ed5e59a4cb2da622facb17238a71e5a7dc69cce351158973
MD5 0c8231dd668a92f050c421ae89758f4c
BLAKE2b-256 8d5ae8988ee0b10eb9d9b76d3677a0d61b6837e3586c906b164c72b0e0756051

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.57.0rc1-cp310-cp310-macosx_12_0_universal2.whl
Algorithm Hash digest
SHA256 876416a363981b585cfb1353dcc850855c1dd20d436007d8657f632880373f30
MD5 27554a007b5bacbf56859b72e505a265
BLAKE2b-256 26d834749124c3b94c7683d23ec2c08b08a7c80c1a8f956c3fc71056f714ef86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.57.0rc1-cp310-cp310-linux_armv7l.whl
Algorithm Hash digest
SHA256 907283a67e60fae06eb1266707e9dca6fcad3304d47967c2e63dc1b651b1ba01
MD5 50ca2ca14c1b12699e82f5d32cd743c6
BLAKE2b-256 53dd43336d5ee935138f5c936a53fe5b87fc21bcda31426fb2deb2fce573ed1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.57.0rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 904da92025ff10c143ecfbb0d70d02f8345ca674b0d11e928c2336679375ce4b
MD5 3e364cf53598f0bbefb7d4554d1043db
BLAKE2b-256 4046654e9f3dfa8d7e36573a2ce50e9057802d88b4e2031fff3863047a0395f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.57.0rc1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 3.6 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.57.0rc1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c6535f4933c102a205e6f19ccca7431e1c9ca3e7b4f585a98291d489b6d82d1c
MD5 56dd73e12e6ac7f11e6cc6397dfe3e1d
BLAKE2b-256 22a8c623437e1502c7b563d424fa91874177b459f0d6f568e155b5e47fb09000

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.57.0rc1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3cec90a7704604b6efbab6ec1bf3bb12dcae89e9ef593f85f068a5ef1f9e64c0
MD5 838e132390f8b3c45b3d9a2566222c88
BLAKE2b-256 6ab40040574ce96d8a2452bb6e57dea0ac7030fe294533e63ebbd6a4c3647a73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.57.0rc1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 fd0747b824ab7ae9233c35ea99ea361127f430730d4bb8225a27eba11977c259
MD5 42a5795a882bd1ced47e6394ffdcfa7f
BLAKE2b-256 d3817ace004dfe3998915d0f10568eb96ee2e641416d30b45bfc13d6cca50bc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.57.0rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 348714e7d4d2422bbc31b800ee2d5cccba87bac647c853c60b7e25834371bab8
MD5 938e12c92763206fe3d353aa6e551847
BLAKE2b-256 6c991f136c7393541210dfdac9b19936fa25cf6393cb7ef3c011c6625b7a9d88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.57.0rc1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 de4a55f99a490245265f21f938cb5a8997e40ccfbf7f196c636394bbd5999cbc
MD5 31d7fc256e304bc2207f975d6725b685
BLAKE2b-256 731fead6a963b33430551a647e4ac8bb6e97f537159f42613565616ecb2191ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.57.0rc1-cp39-cp39-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 f782838fae9374890611dc17982f59b6bec5784aed5503b67611708aae19b7e0
MD5 0b22652fb3d3024068738f1c757c9bc8
BLAKE2b-256 913c353dad60ded3ba371828dffdad211b36a61e53330cd425439d7657352aa6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.57.0rc1-cp39-cp39-macosx_10_10_universal2.whl
Algorithm Hash digest
SHA256 4fd3e718785feb7dc9159dc95c6d6ad1b45fd7ccc6e577c9a878f22a134027b5
MD5 8e013b42af81904612a61fb531cb9f75
BLAKE2b-256 5254bc8a5f1541485ea317a873cac2b78d99f9bf08f3f74fee37bd3afdd0db40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.57.0rc1-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 b2f1604cd947148cb29289f90a11f5c77c6d11d42a27019ec6ef564d1893ba01
MD5 1de301743628ab377e273a9f64de7fb9
BLAKE2b-256 20bb7e3b4bf503c42fc70cb395136434921cf58df71d3f68d8c92c9b2d4a9e7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.57.0rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e833f0b3158fed71eca3af13310deac4261144942d43c730d5f8e60d9fa806da
MD5 1700635c352fe5c684f08f27a8371737
BLAKE2b-256 e7c9bb3b3172dee560cfa60b85c09e037ce603bb904dc19a366949f7067648c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.57.0rc1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 3.6 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.57.0rc1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d6514c43be3b15a15584d59ffce441e226b8d64cf58215d330ae4db9dfdd95b1
MD5 85bee9e8f40e01aa9b2d658161ca93f5
BLAKE2b-256 b307ab3a593ea89fb72618d192442bab47674d2e06bae8b34103c033fd60ca41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.57.0rc1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7f2773322d91d0ea6f09b146ce0136a0b571c18dbe157f27b8827b36a6411801
MD5 62a1093bd87869f93246d49749fad02f
BLAKE2b-256 a111dd103a950a81033dba398bfe62811c942b2ec96c61890f054cd01563c4b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.57.0rc1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 145b4902ab48daf33773e2165885ea1c5199e9ae54bd6236b70d3500c4afd9d8
MD5 b04a5ffbd15227a015ba58e0545db37f
BLAKE2b-256 6903fa30e3d2f525cd626fdb2ae174b9d3bc91757f9ad95024f686d763532de1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.57.0rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c11db179300096763a3fd8adafb4ad06136462ca2681ad158a841cf74b65b0c7
MD5 27a921be3ae083b6475135134fa48c77
BLAKE2b-256 a1c60f70d792d2f3a2c7226069a6bc72aad8012e1b41b226768a5ffe846e8791

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.57.0rc1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d7ccb0bc80b5d217f91a669f72050c168ff94836fea601247d4676436be3d680
MD5 ca9a59c00770f193e04074f6b52dffa9
BLAKE2b-256 6740c7300bb2eea6963bc7e9f724b1f1e1e467f34d1c08edb8fe49ead5e2a4af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.57.0rc1-cp38-cp38-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 105c92d5f9caf8b61dc2c62c60a34737941dceb18215e29d67457e55d138e3ed
MD5 625ea3ea6ed43662108114665b0ddc4f
BLAKE2b-256 6dc8dd657edb83fb5206f2e342905290852c290370dbc7e30b691eb75a0a023c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.57.0rc1-cp38-cp38-macosx_10_10_universal2.whl
Algorithm Hash digest
SHA256 20409fb2e0237ae92f25e3456fd53f4c6ae50279e5d2a7dba0cb138fd66a3dd9
MD5 d2e3312fafa7d5a3220595a6a20685be
BLAKE2b-256 9c07eb736e970da299ee907b561951422240dba3c868f8f1657fc6fabfd2f837

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.57.0rc1-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 e1f8bdc116f5c8a581a7743bb230c23bbfa261eb6a8b53500c55c661dba4a825
MD5 4ed131ed3e6599a93910482e017a83ad
BLAKE2b-256 ea6b4a69fda9146cd6bb9fe74bd6978fdbc4abde2c0f34ed976ae466bfa389a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.57.0rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 5cff62e04bb880383b033d046b259e32cd168b60539436376a73a2082363eb22
MD5 9b3f5451c0c93a73bd94f3ba55d10674
BLAKE2b-256 097641334cd8ad8d140d79de64f5453e93daa8e960ba89bdbd6124c120729d5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.57.0rc1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a4301cb24a736a45ce91acfe4dc1958f1fcf57234172552ed474dd0a3f2153d1
MD5 3e34f7f9fbf57d9ab5284b19fbb20d6d
BLAKE2b-256 e367d59199adcd96451622309dd7c5ff3a29162f006b032d4b2bd4769b8350b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.57.0rc1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 bd069ae235e1db181b48643379473f758bcda1499d0089e24e70bca088bd42cb
MD5 828a3a381105ab57265f3d698f255160
BLAKE2b-256 ef20ef9c8a58754dfb02ca3e5ae37f35cb4fd10620aa32be8f28ec6f0a75fa77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.57.0rc1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b9c4cd6dbca79d093299b36dfebb2d466c69953266168ec22baf808b053734ee
MD5 a380bdec693f25f102994daa0273c6a4
BLAKE2b-256 5a0c98a888558853ae7d8a0877c88edbd667da30a148c983638ffa533146efb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.57.0rc1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 64ed3061f8f2a74b62d6d7d1624d419d1e526e4a3a814aa43a50b21ba0d5091e
MD5 ae9b16067289cca0f11f7ffb404a5d0c
BLAKE2b-256 a243989dfc00e8689214f3f5b7479bac72c0defd78f5619a3633e2cf5724fb2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.57.0rc1-cp37-cp37m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 fa55232474b99d77fbafad3b03d8eef6d1ece0097ae0ce34a150009da72fd845
MD5 f3a3fca544f35bac8e69808ed0391308
BLAKE2b-256 83acdc79148d299f4bbffe3dc1c9bb27bafb5ff684b8e69cc3d289d49c13c679

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.57.0rc1-cp37-cp37m-macosx_10_10_universal2.whl
Algorithm Hash digest
SHA256 78de89fcb993461c4fd8a25d7fd8aaa5ee9031c88a364669187ac351ff19eb82
MD5 8d11be680672dc050de480429b305a9a
BLAKE2b-256 b5b68e9975f02dc01cb96143d918466223cc9e6e20466e0eb4d7ca8cc1457acd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.57.0rc1-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 1f836a8679a918d4271fea12bc9c577e44c4ebc9bd62eb86b3670ffe132ed411
MD5 c25f99332fe3df816124c52de014b7c9
BLAKE2b-256 ef1b94174f7f1dfd2984e789afa090bc1a21c80173ab014fcf4891788973a02d

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