Skip to main content

HTTP/2-based RPC framework

Project description

compat_check_pypi

Package for gRPC Python.

Supported Python Versions

Python >= 3.6

Installation

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

Installing From PyPI

If you are installing locally…

$ pip install grpcio

Else system wide (on Ubuntu)…

$ sudo pip install grpcio

If you’re on Windows make sure that you installed the pip.exe component when you installed Python (if not go back and install it!) then invoke:

$ pip.exe install grpcio

Windows users may need to invoke pip.exe from a command line ran as administrator.

n.b. On Windows and on Mac OS X one must have a recent release of pip to retrieve the proper wheel from PyPI. Be sure to upgrade to the latest version!

Installing From Source

Building from source requires that you have the Python headers (usually a package named python-dev).

$ export REPO_ROOT=grpc  # REPO_ROOT can be any directory of your choice
$ git clone -b RELEASE_TAG_HERE https://github.com/grpc/grpc $REPO_ROOT
$ cd $REPO_ROOT
$ git submodule update --init

# For the next two commands do `sudo pip install` if you get permission-denied errors
$ pip install -rrequirements.txt
$ GRPC_PYTHON_BUILD_WITH_CYTHON=1 pip install .

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

Troubleshooting

Help, I …

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

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

    pip install --ignore-installed $OFFENDING_DEPENDENCY

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

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

    You can fix it by doing:

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

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

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

    sudo apt-get install python-dev

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

grpcio-1.49.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.49.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.49.0rc1-cp310-cp310-manylinux_2_17_aarch64.whl (65.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

grpcio-1.49.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.49.0rc1-cp310-cp310-linux_armv7l.whl (73.3 MB view details)

Uploaded CPython 3.10

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

grpcio-1.49.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.49.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.49.0rc1-cp39-cp39-manylinux_2_17_aarch64.whl (65.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9 macOS 10.10+ x86-64

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

Uploaded CPython 3.9

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

grpcio-1.49.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.49.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.49.0rc1-cp38-cp38-manylinux_2_17_aarch64.whl (65.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8 macOS 10.10+ x86-64

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

Uploaded CPython 3.8

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

grpcio-1.49.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.49.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.49.0rc1-cp37-cp37m-manylinux_2_17_aarch64.whl (64.8 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

grpcio-1.49.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.49.0rc1-cp37-cp37m-linux_armv7l.whl (73.0 MB view details)

Uploaded CPython 3.7m

File details

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

File metadata

  • Download URL: grpcio-1.49.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.5

File hashes

Hashes for grpcio-1.49.0rc1.tar.gz
Algorithm Hash digest
SHA256 e4096e2a27cac06cdf9971c99c23dba6d88aa65676621aff356556817f1839d7
MD5 382a1cc08bc6d83838898c990875f430
BLAKE2b-256 53c2b891e3e0ff02a784cbe64f1712f539b30d10ec09af6c9405e05ba316a50e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.49.0rc1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 eae46ab23282d64e0440dcf8dfb01b68bf1b6ba17cc0d69b0333d4e5d26b4abc
MD5 cb28425b3be19337735ffdde3da23950
BLAKE2b-256 c0769074cdbb637ffa3dbd450b348482a267fb6057e8e40c668ca645d769e553

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.49.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.5

File hashes

Hashes for grpcio-1.49.0rc1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ddbe15c7948c284ded19e50c861fe34d916e0dad0d0eb50efcf5fe2f6c115c8e
MD5 fe5ce52181153c6423cedc4334f635a8
BLAKE2b-256 4c283117b81bea9aa1217a5514debf4af5f86124ed4cf3a93e29b629d45d11b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.49.0rc1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 71750231d1773f71e94e3922e1e997b278f24611b1a9d21028fe17f39469d94d
MD5 a1a0e928deec2d49e39e3e1fcac42a7a
BLAKE2b-256 28032009f444f3a47962a646e100b12f18b03b8a1c4df2bef2546d7261ecfc75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.49.0rc1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 08d9fe1d9ec89c2a79eb6dce928c92b4c220898b10fc780306786ade41f55232
MD5 538ec9a509df40b992c44113640ccf28
BLAKE2b-256 e4ce7ec9dbe47216488d662bf4e8d8209f93c257f754c9a918fea4a11c40c2c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.49.0rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b3d6ab0b5cd08c772b47d35ad3dd1dc2596639b061d337b01b32b34cd8b889ad
MD5 e488b9f5384ddd749411157abdde6445
BLAKE2b-256 e61e76454eedfd504bdce16cfc3aa0215b3eb0ce18d2531f033375ff5dfd90a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.49.0rc1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 de6ae1604e96cf7b08838db31cb5dd67782cf4f8f698df91d8831c956c6202aa
MD5 10d2fbb1bcfe861138053bb98241bd12
BLAKE2b-256 5e3886bac51569f798dd38a11d0e5b28133e9e01bd516e7d05b8c314e17dc0e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.49.0rc1-cp310-cp310-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 2c1b3dec5d99fc528638bd28825c9b65985fd10d91c50082b00608f033fe9e8d
MD5 2db7ed32198648389e71bc3502a60ec9
BLAKE2b-256 3ba3a95cbc33ba5a8ab62a9b775ced788c909fa0d0ed71b30642f6d53b550fde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.49.0rc1-cp310-cp310-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 5621e1ceebf25291521993134a85fba6e63e489b861febcbd14aac52e36b2e0d
MD5 4bf226ca37a7a45f2e6abe776d0bf8e8
BLAKE2b-256 93fec263dbf2d91e38457d8c40f73bafb39366cfd55f89b5ec0560fb6fbdac04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.49.0rc1-cp310-cp310-linux_armv7l.whl
Algorithm Hash digest
SHA256 e94b4b77532a9f3974b86f5608e5f6b6ef8f32e1f4905ddf4eb6446eaa5670cc
MD5 25b6d859e0dad1a61e3b87cd4825e886
BLAKE2b-256 62445d45d2a62f3002bcb5dd95269d729e6359aaa4d5fc8028da995e0dde8807

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.49.0rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 03bdcda595db94aeb2050026bd0455e5ad251f0417182c27e2fc771e4686f147
MD5 46631f2605537c48780c805bdf5922b9
BLAKE2b-256 1cc4fa786d58c5032f6ddb4d421d1acadd8a882a9f687aeedb96bdd9838e4038

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.49.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.5

File hashes

Hashes for grpcio-1.49.0rc1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 2b79475973f8c7fe76324a4e0718505ef7d9dd654386233a6352bf9b94b925d8
MD5 177b7fe7f8d47c008ffe31a670903be7
BLAKE2b-256 14cb580be36e0aef40ddfd6cc9a255df9860e2edb9a436b37ff500b98f749936

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.49.0rc1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4c14f5950999f80e13cc6591f5b77348ead0c9728a615f2f189faa36e0f114b7
MD5 485bd99420f8e0125e64988473fe8056
BLAKE2b-256 69bf9a34f5ffcecd4c05a1d9bb5d30ac3aa3b2ff7f134a5e679936f566f6f8fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.49.0rc1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4ed0734f23047952afc9b7f30f916e8e8763e993aedf173e56d9cb98e6b8f741
MD5 2ac8839c22df4e7f6605a31538c796c7
BLAKE2b-256 233eca0383d66fff65f1e2ca5aaf1dc585d00859dbd9dca22fc705884ad7c726

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.49.0rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a01e0a1ef77868bad971d5a0022b5299f5804b0760b2bac02d2da89c907ec5c
MD5 a405964d469980221860791784c8d6ea
BLAKE2b-256 47ff826da2f139b0fc4a60e798405a2953e5e5b63d442fee80463392b3bd156a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.49.0rc1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 16c73dba19eb672bc0d9dab7686974d86dffded1ee18098ea5e3a22682265625
MD5 892ec07bf6b163b0172046b8cae97199
BLAKE2b-256 cdc6607e866eaee003cad676b6a78f3337518f6cfccef1413c62933e82dfb8c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.49.0rc1-cp39-cp39-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 dd3eb369a5de5478fa08abdbf17d0efc05d059c5d1c39ba268a24787c0ace6fb
MD5 ef03468902cd2abe9ed65c9c0259bc74
BLAKE2b-256 bc42f50b13347c217ddb936fac0e32059757385a639495d31bf59bb924ad25a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.49.0rc1-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 9dac8daa746197d962f5c2f737b8591fec5021673ca087507edbf25ca90f46af
MD5 7672da688ddcbae4d087aa6559d1e8ed
BLAKE2b-256 10d4a507753c6d2d421e2b5325ac4d4c169170a4cb02a4a18f2018dfd77176b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.49.0rc1-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 e36238fa3930ee99aef367e50bb9eb221c9289737392fc86c6ef67b79ee8d547
MD5 10737899397fb604e08d5ca0c0ba0545
BLAKE2b-256 bb59784601065f4745ac004e69a22e668e296167149a19f08a8e27c51e327c73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.49.0rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b3ed22321bd688ac1aa5d0b56888735c913279c999a68073c8aed2f0a7399460
MD5 da466e4fa8c37d6e3fd91346dea86ffb
BLAKE2b-256 91aa747034d18a658e408f774c547e941e5a8f119496d9cd662c1e510e37ad59

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.49.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.5

File hashes

Hashes for grpcio-1.49.0rc1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 431d169af692afa9af1d9408021c0e56b6568384f1968a60938cdf39ea0e82a2
MD5 12aa03920726f3dada8ae2a77c812822
BLAKE2b-256 1cf808d585512717e44f73b8365112912899a0d21629dbbcf4215bb917814cf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.49.0rc1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 924e4c8fadc4554a91444a573f6e5cd2a14835897dd52b03b18d4e16041aaa85
MD5 73dc91ee7e3b66891ef20e29e5056b60
BLAKE2b-256 ee60ba1e8819771c5be6954d6f51f58e4e00c4be93a8a6e7fb83e3dd4ed87bb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.49.0rc1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 029404eeaacd13883f695e889b6565c42941217c5d0d32ff3bba90b4f1e70984
MD5 92421a0a691780a52b7f1679ebf065b0
BLAKE2b-256 eb1fe0ce25b5a254aac927debd890d89f4a874f3aac5481d34c4bc24e6190cb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.49.0rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 43cd3f61a2961d2e0a8bccfd4135659d3d69072e5f61348bfb0216df0cd110c7
MD5 405e50e63b6cf4d7757d52a12c994882
BLAKE2b-256 819342e8e9f261ed82538a619db2005a9961df71f42edfe015bab26ea5e2796b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.49.0rc1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e793d43843e6fe4f88547e55205a1a7bc7850c246f542d7cffa6931cd7918004
MD5 118799da569d67dffc506f6e3860344f
BLAKE2b-256 d2c22ec6683cd38a9db54ac69aca6cc94f75bcb6d53063fab7247c9dbf19a942

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.49.0rc1-cp38-cp38-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 40f5b7cd293676052f60120e94979364d6c32d775b8a46b44c42b31f71f8b5e7
MD5 86612cff0fec221417e9c6d5e701bd26
BLAKE2b-256 5200617999675df40cd7968339fea1ba6807f2da21096359f98449126241405e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.49.0rc1-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 6367e4c0b00a21ce5c91875615f2659f43d460f276c2fed0cb4d00beb2c9f98b
MD5 4268c54b3337f023a6529a125205ed4c
BLAKE2b-256 37071ffa1fc851b0bffe6a1db6679d8edef465a76c98111aa86bbb2656ecfd7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.49.0rc1-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 b3aef4a314415d312098918c88f68e0a5e8c315d15e8ebea50b21a940a5e1144
MD5 4b29da9bffe25780b92d7d8ad50dd42a
BLAKE2b-256 8bc7df7a5c6e81bfc67bf4254fccbb813b6dfee2457b7c9f3c0c4a7d09dd664e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.49.0rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 ba5e16726499cf6cefb262049b381547d2f47d36cf78810cdb573ba00c26e4db
MD5 49249bcab06b5afe2e6f8e17543fd3ca
BLAKE2b-256 d31f48f45a9a30b45b2c18155f5e935a531e54db713029f112d560e8fca59f0f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.49.0rc1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 c0c6135f49471cece26d9d3bd59ea2a0675cfd3a80ae8a611dac6cd87e95aa90
MD5 96f751865391fb2455f319ac56ef9f8a
BLAKE2b-256 b224e2e3df2b86a1c7030e92743cebd24eed18b71c149abf96c456b9c126eda1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.49.0rc1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 10b7bffd5bbba4354734ac2d8d12b353eb25e7c13cd8fa609adf5d0dd8b2347d
MD5 9add47e2aaf478e749bdb6df5339bc46
BLAKE2b-256 ace75b6fe156d9b07c2a36087c9d6c0ac170192cfe8e17770efbe2f4ef3fbea0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.49.0rc1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8621e07c13e08f3af56d887e0f86fad88d4b7f1f1b9ed43a6a2a362a2078b58f
MD5 796020532ebc90e57af0d701ada0254a
BLAKE2b-256 a223a57aa317bcebc656042deef290787bde4ad7c8d2136f3c4c2267fa32c338

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.49.0rc1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1fe5c84131af778268797ee4d4a93d51c477d5a1c653cd0594bdbcb55317eb91
MD5 c782d093b3c19b393ae5b06efe707d93
BLAKE2b-256 9cb362413dcabd2530aade792fc4c109f226aea99a0b6def80977ee02af704bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.49.0rc1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 715572e8387b05c0ed4f04844f9d6d1ae06cbd2565205fd4998215c603e25aae
MD5 449c11c1fb083efe158ede3bcfeb24b5
BLAKE2b-256 424e36a5a530bd8ae05a54064c59bd70e11a25fc94daaa0434ee16b4e827bdf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.49.0rc1-cp37-cp37m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 b24b170dda1690fa2c25f028a053c3ba93d22a7236c66504325d3082fb814f37
MD5 0a242d2663ebeac7d81cd86a299e9a6b
BLAKE2b-256 e3ad701e5751815b0d7a21abeb35bc0aac6694ee14dd5ebddf74c2796f9817fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.49.0rc1-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 c4cd4b994ca59e0cd7f934dc8283e9ac30b491696bc0b47cbb30d505e67a0ce3
MD5 70dc495d7715f0ccdd373876deb3db98
BLAKE2b-256 e05b9f62d733f73a05a5bd480651571c317c6f76196a22b1c0ae565a16df3b41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.49.0rc1-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 0383f556071ae8c01b6163e796f607c624ab2e0ae6f060ba8566e83ccd1f7bd0
MD5 d43dc23d1d3004f8f45526ad97536077
BLAKE2b-256 c63ed84d931d2b2b9850f6638dc38a69426aa0c5eb7ffb9be8618f773390341c

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