Skip to main content

HTTP/2-based RPC framework

Reason this release was yanked:

https://github.com/grpc/grpc/issues/32306

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

Uploaded Source

Built Distributions

grpcio-1.52.0-cp311-cp311-win_amd64.whl (3.8 MB view details)

Uploaded CPython 3.11 Windows x86-64

grpcio-1.52.0-cp311-cp311-win32.whl (3.2 MB view details)

Uploaded CPython 3.11 Windows x86

grpcio-1.52.0-cp311-cp311-musllinux_1_1_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

grpcio-1.52.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

grpcio-1.52.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (5.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

grpcio-1.52.0-cp311-cp311-macosx_10_10_universal2.whl (8.2 MB view details)

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

grpcio-1.52.0-cp311-cp311-linux_armv7l.whl (83.7 MB view details)

Uploaded CPython 3.11

grpcio-1.52.0-cp310-cp310-win_amd64.whl (3.8 MB view details)

Uploaded CPython 3.10 Windows x86-64

grpcio-1.52.0-cp310-cp310-win32.whl (3.2 MB view details)

Uploaded CPython 3.10 Windows x86

grpcio-1.52.0-cp310-cp310-musllinux_1_1_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

grpcio-1.52.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

grpcio-1.52.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (5.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

grpcio-1.52.0-cp310-cp310-manylinux_2_17_aarch64.whl (74.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

grpcio-1.52.0-cp310-cp310-macosx_12_0_universal2.whl (8.2 MB view details)

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

grpcio-1.52.0-cp310-cp310-linux_armv7l.whl (83.5 MB view details)

Uploaded CPython 3.10

grpcio-1.52.0-cp39-cp39-win_amd64.whl (3.8 MB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

grpcio-1.52.0-cp39-cp39-musllinux_1_1_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

grpcio-1.52.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

grpcio-1.52.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (5.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

grpcio-1.52.0-cp39-cp39-manylinux_2_17_aarch64.whl (74.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

grpcio-1.52.0-cp39-cp39-macosx_10_10_universal2.whl (8.3 MB view details)

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

grpcio-1.52.0-cp39-cp39-linux_armv7l.whl (83.5 MB view details)

Uploaded CPython 3.9

grpcio-1.52.0-cp38-cp38-win_amd64.whl (3.8 MB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

grpcio-1.52.0-cp38-cp38-musllinux_1_1_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

grpcio-1.52.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

grpcio-1.52.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (5.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

grpcio-1.52.0-cp38-cp38-manylinux_2_17_aarch64.whl (74.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

grpcio-1.52.0-cp38-cp38-macosx_10_10_universal2.whl (8.3 MB view details)

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

grpcio-1.52.0-cp38-cp38-linux_armv7l.whl (83.6 MB view details)

Uploaded CPython 3.8

grpcio-1.52.0-cp37-cp37m-win_amd64.whl (3.8 MB view details)

Uploaded CPython 3.7m Windows x86-64

grpcio-1.52.0-cp37-cp37m-win32.whl (3.2 MB view details)

Uploaded CPython 3.7m Windows x86

grpcio-1.52.0-cp37-cp37m-musllinux_1_1_x86_64.whl (5.1 MB view details)

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

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

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

grpcio-1.52.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

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

grpcio-1.52.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (5.1 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

grpcio-1.52.0-cp37-cp37m-manylinux_2_17_aarch64.whl (74.2 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

grpcio-1.52.0-cp37-cp37m-macosx_10_10_universal2.whl (8.2 MB view details)

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

grpcio-1.52.0-cp37-cp37m-linux_armv7l.whl (83.3 MB view details)

Uploaded CPython 3.7m

File details

Details for the file grpcio-1.52.0.tar.gz.

File metadata

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

File hashes

Hashes for grpcio-1.52.0.tar.gz
Algorithm Hash digest
SHA256 a5d4a83d29fc39af429c10b9b326c174fec49b73398e4a966a1f2a4f30aa4fdb
MD5 311135c62a06953001221f9fc8f7e4aa
BLAKE2b-256 edb76c5cf5c73445b28ac25347c78c6f2d76f2ed9a5d5966bd45b6904b3e7a51

See more details on using hashes here.

File details

Details for the file grpcio-1.52.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: grpcio-1.52.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.9

File hashes

Hashes for grpcio-1.52.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ae38c4f5e724fe85550714d56213a2eb4335a1a795bff88b3dbc75cfbc036ef2
MD5 09c5b6a3d054cef1ab19355e7f40d705
BLAKE2b-256 289ed59ec8d6471b0dea46feb04fcb25758c75e9307c02e1df769b617bad3694

See more details on using hashes here.

File details

Details for the file grpcio-1.52.0-cp311-cp311-win32.whl.

File metadata

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

File hashes

Hashes for grpcio-1.52.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 84edd2ae3c0e4ca320dfc79c24ea554e06faf1a21e5ebdb1441450dec702444e
MD5 dbc21b4f0b78c96bfec416fcf3e4db9c
BLAKE2b-256 60755e6876ff3e78f4f2a6ad6991b9936491473de78091ec5121a25677208b8e

See more details on using hashes here.

File details

Details for the file grpcio-1.52.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.52.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bc7976baed22b87548bfd37defddb4344f4a9959bf3d276ae2cb624caa11c234
MD5 524a303e3c67f37bb53a782f8b62d95c
BLAKE2b-256 0e3e39a32d0837adca048bd3a519d0fd9436f24e3ab24bf9fe2da093b9c3dca8

See more details on using hashes here.

File details

Details for the file grpcio-1.52.0-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.52.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 24fdf136bc0ccf85a3c0a572c3ea71957529299d4ec208eb1f2a1d06f2b17cf2
MD5 17932ee638edb51eb5e7deb3ed63b214
BLAKE2b-256 4e1170007a040ea6bf150d638e26df29c3166270ddadf960151efdbb0bad6dc9

See more details on using hashes here.

File details

Details for the file grpcio-1.52.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.52.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3c5553e5d881a733512cca25f810d746d7f405dcaddf0525bf99c8e7953c4ecd
MD5 7b33d4b2d9d6dba7c2ff977a3f22d2ad
BLAKE2b-256 7c94618f5906e4dccd5aba6c21ba79f6bc8fbd173b7f48ae5d56726715fb69bb

See more details on using hashes here.

File details

Details for the file grpcio-1.52.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.52.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0ed59aeb98cd95ba794d6fc77623f4bb340d1a362c0e156c086e942d21403d2a
MD5 3e08e92513b894623db2f1ad876392ab
BLAKE2b-256 921d4976f75252450bc826d3ee8ae255e347125d4aaa8140f80d164f13772a26

See more details on using hashes here.

File details

Details for the file grpcio-1.52.0-cp311-cp311-macosx_10_10_universal2.whl.

File metadata

File hashes

Hashes for grpcio-1.52.0-cp311-cp311-macosx_10_10_universal2.whl
Algorithm Hash digest
SHA256 fefbf58dd05b6aaf39dfe1df4a1464680b44496cc617083cb141ec18aac1d6d4
MD5 abc0f15b88e4a131472ce11d6c64a795
BLAKE2b-256 82ca8546680be6b9ff0da303549df71a7384eead0cf6e4c77941ba73a7230ade

See more details on using hashes here.

File details

Details for the file grpcio-1.52.0-cp311-cp311-linux_armv7l.whl.

File metadata

File hashes

Hashes for grpcio-1.52.0-cp311-cp311-linux_armv7l.whl
Algorithm Hash digest
SHA256 9cb42152c9880d340fc879ef86c9362014d029c1aac5629b1ff6b013e7722965
MD5 38967e03a01a417d5822bc899693a889
BLAKE2b-256 afb994b00092b960ad828bb78c0331094fed3b5909fdc1a311575008ee61c9d1

See more details on using hashes here.

File details

Details for the file grpcio-1.52.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: grpcio-1.52.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.9

File hashes

Hashes for grpcio-1.52.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b274c8240b30cccca70128051e767b498679040f29304b904e463249c06f37ab
MD5 96449dce8f2601abd19792d76fd10285
BLAKE2b-256 5da0242937eec41f4fbab365944b4416b36f62c1ccfdc3e70dc1945ae4ff7c75

See more details on using hashes here.

File details

Details for the file grpcio-1.52.0-cp310-cp310-win32.whl.

File metadata

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

File hashes

Hashes for grpcio-1.52.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7d4da24ec79183a27e690de06e7b5765734fe958651473b27c7d0020a2e465e4
MD5 897d476bf870f0e423b8caddbd7893e9
BLAKE2b-256 a5aae0fa9b026632bfbd78a4f993cc6be33f41a2ed8ff54e914042e9e7155900

See more details on using hashes here.

File details

Details for the file grpcio-1.52.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.52.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bc9467256c0525f83cadf0a77141ea393d3ed1bd1c218ac835e073d8a56d3c50
MD5 e3e9c4aba3e9e2c99cd5b32705b0ee41
BLAKE2b-256 7c36f25fdab38228b9408d709aeb6c9d8eb9fa41ba1b8fa943fbdb4b27d0d45e

See more details on using hashes here.

File details

Details for the file grpcio-1.52.0-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.52.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8e64e5d2e76745584c193e29f68fa038ad516e3b03fb16ccff9cc6c416c08b94
MD5 2f38473b56c07a8a081f6c68e978f80f
BLAKE2b-256 58149bb1c881629881520871ae126e9285c3ffcec3fc5434ca380c4f3733b433

See more details on using hashes here.

File details

Details for the file grpcio-1.52.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.52.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c07775ad29baaa957e13a2fdb9724aa734b81be9be015c25d36bd93544a9279e
MD5 65717f5d892e3c59cb81c39aaf70a446
BLAKE2b-256 291ea8d8ced1968f02a5385f6a5c06d4e1714f2d6cb8c393054f6fcc08d3fe86

See more details on using hashes here.

File details

Details for the file grpcio-1.52.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.52.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5d767848c6540130b00255d062e0eee7e8fe53dabef6c7bdf19b8e12085324f7
MD5 b59ce65e00f09cbb0d1b2abc00d5c5f9
BLAKE2b-256 af011393cce82e47824b2d9a65266e05335aa032867829d255c51d75f84b5824

See more details on using hashes here.

File details

Details for the file grpcio-1.52.0-cp310-cp310-manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for grpcio-1.52.0-cp310-cp310-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 ef46f86aabc254d1599adf00eaa47f9d8b8c2af51b89934f0dbe2309b829c778
MD5 01b59619352c9c1fbb7b583960a4e3c4
BLAKE2b-256 f3d2257393e0082762d7f32db7abbc4622c33e07a9539fba2408397487469376

See more details on using hashes here.

File details

Details for the file grpcio-1.52.0-cp310-cp310-macosx_12_0_universal2.whl.

File metadata

File hashes

Hashes for grpcio-1.52.0-cp310-cp310-macosx_12_0_universal2.whl
Algorithm Hash digest
SHA256 b0c55958d3aa9b60eabd1cb230e2d80e48bc4baa2f7e90e7637dc8429538599a
MD5 1871a0e070d4eb5c6ed9e32083760867
BLAKE2b-256 48dab8a46f331af7eee603ce378b1def784a1d04890cfdcb4e1616b1607b1638

See more details on using hashes here.

File details

Details for the file grpcio-1.52.0-cp310-cp310-linux_armv7l.whl.

File metadata

File hashes

Hashes for grpcio-1.52.0-cp310-cp310-linux_armv7l.whl
Algorithm Hash digest
SHA256 7a6f6e2857908f9d7dc9a3150d45c72a35c351aa74621100145bd8ce4d083cac
MD5 c8dfe3e5a2bce841cfc7483a0846116c
BLAKE2b-256 47e336faac266374a81f147de195764b4801d24be5e4f91f8aaf6c85c626f53c

See more details on using hashes here.

File details

Details for the file grpcio-1.52.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: grpcio-1.52.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.9

File hashes

Hashes for grpcio-1.52.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a6329dc693f0ac781219063c4b2c4bedc5519e280fe2f55ce6abc15b05a40d05
MD5 999d357dac95967de86a8b9ecd64120e
BLAKE2b-256 384933f1e41935daac15daa3d403a86c2480d51d518d4a23430906c54841fe11

See more details on using hashes here.

File details

Details for the file grpcio-1.52.0-cp39-cp39-win32.whl.

File metadata

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

File hashes

Hashes for grpcio-1.52.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 44b326a7ffa56dd44168e067e076121d68a11eeccdcbcf804e9b9bd02e7bc6d8
MD5 20738d5811f6cc40700b6b74d40cd039
BLAKE2b-256 0f19c9631463e9913dbc0f9091198fb9fcd436cf1fbef6790d089737bfaec58e

See more details on using hashes here.

File details

Details for the file grpcio-1.52.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.52.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 71e3185ac3425efc45e7999acba25dc5cc12a8abea46b2dd0f460c50df804974
MD5 0262f271140eda7cf2fc62cfb50d69b9
BLAKE2b-256 50dc23399613bf8d115de24da3ca4ba597a836228abde79abcb0c999c37c2587

See more details on using hashes here.

File details

Details for the file grpcio-1.52.0-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.52.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2e85431a3f2970303d34596ae5bd6d07842255f897009b63b23d27b315b6ef69
MD5 8f42a75652cfa0b554ee517ce1166816
BLAKE2b-256 b4a8df70697192fc8ba91ec7657c862c6d12b5dc12e15669123ccc56543f322f

See more details on using hashes here.

File details

Details for the file grpcio-1.52.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.52.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 81cc7210dc4735200d81764ad8c3761845a6b95fad36d586fa10cc4f95dc3106
MD5 75175296a799dad608210f6de3fc0262
BLAKE2b-256 153d665b85834fc3208ccd3ec5930fb4e9663917d5236a4d4ce6814831d786c7

See more details on using hashes here.

File details

Details for the file grpcio-1.52.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.52.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7128eaf3c789f7043cdecf7849efb9bb5dddc53f9f753f77613796bf6ea73515
MD5 82ce852f188d7cbe7648317fc8031d8d
BLAKE2b-256 ff4ab1868b0ae3f395fed64b9eed6c91887ac8061ca599e2685d67cb097d2ec5

See more details on using hashes here.

File details

Details for the file grpcio-1.52.0-cp39-cp39-manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for grpcio-1.52.0-cp39-cp39-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 3bbea65a62ab8a1bc3180aa24dd0d049216856a5c6b470b88769a47bc4b59d8a
MD5 23849c8f20aa12b5e9aba8a44c06a3a9
BLAKE2b-256 6d646d21b5891ba84e6c3c6456e4923e8275d0115a6879118a7ba8a7daea979f

See more details on using hashes here.

File details

Details for the file grpcio-1.52.0-cp39-cp39-macosx_10_10_universal2.whl.

File metadata

File hashes

Hashes for grpcio-1.52.0-cp39-cp39-macosx_10_10_universal2.whl
Algorithm Hash digest
SHA256 c73cfc5ef2193b2ab215576524e915bf38ed96b3557086e8e9d8c8ea43c9b02c
MD5 46189ddbcf0692fb39043d23d6316019
BLAKE2b-256 a0b2652a39d1d3611141f61648dec1e058c1c2890ffbd10f53fa4c1ceef9ccb8

See more details on using hashes here.

File details

Details for the file grpcio-1.52.0-cp39-cp39-linux_armv7l.whl.

File metadata

File hashes

Hashes for grpcio-1.52.0-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 486632391067cfa9acd0d58d76543fe26449d8d647ab5f24b24879f4fa45846b
MD5 40a02f2634928a627074e6e836e27d5c
BLAKE2b-256 7d3249f0d08fe0f0657b1ccd429dfcd1fdb069da72baf185713faf998e6f657e

See more details on using hashes here.

File details

Details for the file grpcio-1.52.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: grpcio-1.52.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.9

File hashes

Hashes for grpcio-1.52.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 92602fc9457f2957a9505a2e8d53e8382345494b32b551626723c4ead304c539
MD5 cbc60923aff92932290df82fc9f6d240
BLAKE2b-256 982f7ac1b207be80c63cfe6fce0c821c1a30a07032bd20ead68b0de06cc08535

See more details on using hashes here.

File details

Details for the file grpcio-1.52.0-cp38-cp38-win32.whl.

File metadata

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

File hashes

Hashes for grpcio-1.52.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d37b32f043f7f1a0d6512cabb0439e987a2c7f946e97c87fa4e26e46dfce8ef0
MD5 3b731387cf43a866c3bc772746ca6dec
BLAKE2b-256 ca42453398de1904df49230256a0cdfc9e4dfb29be218987279d608a75cad495

See more details on using hashes here.

File details

Details for the file grpcio-1.52.0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.52.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2f86596763fe0c2077c7193c9d941d282b4bd7c086262e797e8d4290a3cfa9d5
MD5 e80581bd16363548924752b8c59bf5d2
BLAKE2b-256 082d8d674f8206ffce178f73fabd4d9e08507b405b01d178d31eafafbc009d69

See more details on using hashes here.

File details

Details for the file grpcio-1.52.0-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.52.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f34376ef75d7f70ad2c07fc7750a3293c034cce09aafc82fe7ae782542cce687
MD5 dea2e7205ed1d7b0b17894aaa914a05b
BLAKE2b-256 885852dd4e6ad15dc4234005d7a76dff7f359c03ac1341d4c239fdc647eade5c

See more details on using hashes here.

File details

Details for the file grpcio-1.52.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.52.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6354bc9083a57b1c6e0cc87065733c356806fa8260ec055387a73d445cf5a1d6
MD5 877f687296e5fae13995b14ee9286708
BLAKE2b-256 3096e021ad9965a9b1220ec49c5c19304519440ef40c2628ed23a8c31b52d3ae

See more details on using hashes here.

File details

Details for the file grpcio-1.52.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.52.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d05eef8a94d74459582cd36dbc34aa6f2e0dcb4d59f08c8093b9728f0ccf694a
MD5 90d5ff659be18331f36867db62394c6d
BLAKE2b-256 3bbb3db313c09cc1d321adba166e400bf3945b5866bc5b7b0fc8e45d6ad91629

See more details on using hashes here.

File details

Details for the file grpcio-1.52.0-cp38-cp38-manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for grpcio-1.52.0-cp38-cp38-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 434a693418dd706f6ba27d9b5ee5a6c7ee0302b197ac3e05e4080501a31b0b73
MD5 d059f684f9a1280c0fa3852d8888182e
BLAKE2b-256 a6f2209d0bb300c6b9a7c2b61b522e39877ed5f473d167a61a338927d7f19677

See more details on using hashes here.

File details

Details for the file grpcio-1.52.0-cp38-cp38-macosx_10_10_universal2.whl.

File metadata

File hashes

Hashes for grpcio-1.52.0-cp38-cp38-macosx_10_10_universal2.whl
Algorithm Hash digest
SHA256 9b929fb9ee7ae082c7930aa58128138ab26f1c60e205b541f0a18975a74c2641
MD5 4d5606c9beee7e4b5d339f17c7d147d9
BLAKE2b-256 8b149fa15e889e48754c960e5cfe4e42ae46ecb247a0367563c0361edd458818

See more details on using hashes here.

File details

Details for the file grpcio-1.52.0-cp38-cp38-linux_armv7l.whl.

File metadata

File hashes

Hashes for grpcio-1.52.0-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 b49126b66bde56d90d970e9d091e26b600d345a8222f4214f732b30cf63756d9
MD5 34dc5700c2a02e6b68464bf32d0430bd
BLAKE2b-256 88a31509a0d7871f51cfb92e7c05473475fb5235b6758c36ba04881b14d968cc

See more details on using hashes here.

File details

Details for the file grpcio-1.52.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: grpcio-1.52.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.9

File hashes

Hashes for grpcio-1.52.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 53406f1384406a66c18a9034265d0ad7eeafd3579da552c459bfa330ef43fcf8
MD5 49b1d739969079b84e0862e54bae5983
BLAKE2b-256 9d510fcb6a3a693a3e97612e29009023c2652e13d21c4faf225c9544dca725f6

See more details on using hashes here.

File details

Details for the file grpcio-1.52.0-cp37-cp37m-win32.whl.

File metadata

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

File hashes

Hashes for grpcio-1.52.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 acf13fabfb5d974e5c489c6fabe3037a6d8105030e9571cf7f8f6f92c49e734c
MD5 936b2348869eccd588c8751897d9fc61
BLAKE2b-256 1004525e5b76f245d4605622491e57608b776d81f755ed67c8ca088056600e13

See more details on using hashes here.

File details

Details for the file grpcio-1.52.0-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.52.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c073f4fdcbdac14fbb1b9c001222c76c446874a8ec6def028e72a746cc9cc20e
MD5 c8929a09439854a36a7186ee11caccdf
BLAKE2b-256 39341b73146a128fdd5501ba7b43fc54089175cf1d54f38b73074af55d0e3791

See more details on using hashes here.

File details

Details for the file grpcio-1.52.0-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.52.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d9e06472f59f585235ac51e4645f42a02a262fc7480fad13ede0b3c11cefa8a1
MD5 c456a81edd2efbf0377af26e514797a1
BLAKE2b-256 dd9fdb4d8dfdb0af6dd160844f842319e77a907a5218ece75b91362b0961d1e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.52.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 25175ed51891150e16bc63b69fb96db71b04080a17c09e83f750e118fa5b775a
MD5 d1f024edf3ad90897bb875cc7aeee8ae
BLAKE2b-256 000419da7c17a1fe074575fac01e807afcb6eb0e20f0d863314fad849c163881

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.52.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7bb4cae47cf9fe2bd51ddabb14f310dc35812c3676c8972006119a8b01050567
MD5 f63173c233bda899951cc0c387e84217
BLAKE2b-256 4561a59eb955186a4ea100e6fe2ffb24be6590dc8ee92413fe2bc4a9c59c51a0

See more details on using hashes here.

File details

Details for the file grpcio-1.52.0-cp37-cp37m-manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for grpcio-1.52.0-cp37-cp37m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 f290c80604a0fd0e202b4f76f3bc6eed6c0750e88525f91219ccb5cc99213fca
MD5 24acaafda72ac50a3a093ac0b6bcb141
BLAKE2b-256 887f41072164c1a6455d223d7ac38948a663c1a319322390ab0dc154d12c85ff

See more details on using hashes here.

File details

Details for the file grpcio-1.52.0-cp37-cp37m-macosx_10_10_universal2.whl.

File metadata

File hashes

Hashes for grpcio-1.52.0-cp37-cp37m-macosx_10_10_universal2.whl
Algorithm Hash digest
SHA256 e61683fd0a8a05ba788a067942c2bc73368cbf7836f0071268fc0abadc287dea
MD5 d8a5677ee48a6b163a7e8d9a9b8b82b6
BLAKE2b-256 846e3e85a72e7e73f569f03cd76949b0ccd21c2aa543e5623f216e3609b8885c

See more details on using hashes here.

File details

Details for the file grpcio-1.52.0-cp37-cp37m-linux_armv7l.whl.

File metadata

File hashes

Hashes for grpcio-1.52.0-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 10ac3d9cbc576642257c5bc674b3f6349ebcfd0ce198630423c4dedae4e545ec
MD5 140f971ffb322ae3442d5c0e9d703ce2
BLAKE2b-256 91306373b5a0a19fd6bfcf8d8162061af67ab91a8aa9d4d39a3b076327f1b0a6

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