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

Uploaded Source

Built Distributions

grpcio-1.46.5-cp310-cp310-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.10 Windows x86-64

grpcio-1.46.5-cp310-cp310-win32.whl (2.9 MB view details)

Uploaded CPython 3.10 Windows x86

grpcio-1.46.5-cp310-cp310-musllinux_1_1_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

grpcio-1.46.5-cp310-cp310-musllinux_1_1_i686.whl (4.8 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

grpcio-1.46.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

grpcio-1.46.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (4.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

grpcio-1.46.5-cp310-cp310-manylinux_2_17_aarch64.whl (60.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

grpcio-1.46.5-cp310-cp310-macosx_10_10_universal2.whl (4.1 MB view details)

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

grpcio-1.46.5-cp310-cp310-linux_armv7l.whl (67.6 MB view details)

Uploaded CPython 3.10

grpcio-1.46.5-cp39-cp39-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.9 Windows x86-64

grpcio-1.46.5-cp39-cp39-win32.whl (3.0 MB view details)

Uploaded CPython 3.9 Windows x86

grpcio-1.46.5-cp39-cp39-musllinux_1_1_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

grpcio-1.46.5-cp39-cp39-musllinux_1_1_i686.whl (4.8 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

grpcio-1.46.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

grpcio-1.46.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (4.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

grpcio-1.46.5-cp39-cp39-manylinux_2_17_aarch64.whl (60.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

grpcio-1.46.5-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

grpcio-1.46.5-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (4.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

grpcio-1.46.5-cp39-cp39-macosx_10_10_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.9 macOS 10.10+ x86-64

grpcio-1.46.5-cp39-cp39-linux_armv7l.whl (67.6 MB view details)

Uploaded CPython 3.9

grpcio-1.46.5-cp38-cp38-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.8 Windows x86-64

grpcio-1.46.5-cp38-cp38-win32.whl (3.0 MB view details)

Uploaded CPython 3.8 Windows x86

grpcio-1.46.5-cp38-cp38-musllinux_1_1_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

grpcio-1.46.5-cp38-cp38-musllinux_1_1_i686.whl (4.8 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

grpcio-1.46.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

grpcio-1.46.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (4.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

grpcio-1.46.5-cp38-cp38-manylinux_2_17_aarch64.whl (60.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

grpcio-1.46.5-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

grpcio-1.46.5-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (4.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

grpcio-1.46.5-cp38-cp38-macosx_10_10_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.8 macOS 10.10+ x86-64

grpcio-1.46.5-cp38-cp38-linux_armv7l.whl (67.7 MB view details)

Uploaded CPython 3.8

grpcio-1.46.5-cp37-cp37m-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.7m Windows x86-64

grpcio-1.46.5-cp37-cp37m-win32.whl (2.9 MB view details)

Uploaded CPython 3.7m Windows x86

grpcio-1.46.5-cp37-cp37m-musllinux_1_1_x86_64.whl (4.7 MB view details)

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

grpcio-1.46.5-cp37-cp37m-musllinux_1_1_i686.whl (4.8 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

grpcio-1.46.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

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

grpcio-1.46.5-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (4.6 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

grpcio-1.46.5-cp37-cp37m-manylinux_2_17_aarch64.whl (60.2 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

grpcio-1.46.5-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (4.2 MB view details)

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

grpcio-1.46.5-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl (4.2 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

grpcio-1.46.5-cp37-cp37m-macosx_10_10_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.7m macOS 10.10+ x86-64

grpcio-1.46.5-cp37-cp37m-linux_armv7l.whl (67.4 MB view details)

Uploaded CPython 3.7m

grpcio-1.46.5-cp36-cp36m-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.6m Windows x86-64

grpcio-1.46.5-cp36-cp36m-win32.whl (2.9 MB view details)

Uploaded CPython 3.6m Windows x86

grpcio-1.46.5-cp36-cp36m-musllinux_1_1_x86_64.whl (4.7 MB view details)

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

grpcio-1.46.5-cp36-cp36m-musllinux_1_1_i686.whl (4.8 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

grpcio-1.46.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

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

grpcio-1.46.5-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (4.6 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

grpcio-1.46.5-cp36-cp36m-manylinux_2_17_aarch64.whl (60.2 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

grpcio-1.46.5-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

grpcio-1.46.5-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl (4.3 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

grpcio-1.46.5-cp36-cp36m-macosx_10_10_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.6m macOS 10.10+ x86-64

grpcio-1.46.5-cp36-cp36m-linux_armv7l.whl (67.4 MB view details)

Uploaded CPython 3.6m

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.46.5.tar.gz
Algorithm Hash digest
SHA256 dc73592adda618ac74616e759fc121a2f91cb270e2e95b16f5ca95039a288d93
MD5 db9a13be15e1bd95a3f0248304e19c86
BLAKE2b-256 24785b3717b54648ac8f7e4fc0c0892103ce0070fc7c782eab1844fe23ce782e

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.46.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ed6927e0219d860c89c0e19c5b757aee41a6bfbec38fc9176689bccf1dbbdd4e
MD5 0b31d3c965ab09572c8bf819dd8abcfe
BLAKE2b-256 57f5701a2a42af3eb1e6a0c8b68dfca0d8b3c11dfbef19593ef9b8f2f48eb5d8

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.46.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8eda5b87a1e84f2a9838cf62837d54fa1cf9188c9656690ef2bc0d5cab68159a
MD5 d75ec913a3f56b646bfe479e80a05e04
BLAKE2b-256 cc17a1d2bcb6cbb2317d9b4f23c8ac678441f1e707a74b1f5fdf3d99afb41dc4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio-1.46.5-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f084fa3083b9eff883ffaadb583f662a7a164a502149edb52f591b47747bce01
MD5 bbd7f9a6c8cb18a5b12c8db86609a0c9
BLAKE2b-256 0e1571b0d0d3ee224feeb2034bf78ed0533c90ec31a0733d7ce46356f023e086

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio-1.46.5-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1722d44b6a1b16becd61a481ffe2cb77ac42257b742fe12819e07ce292fdc737
MD5 024549ecc15bd629fa7045b403a9f7fd
BLAKE2b-256 9ea2eee56c340299b75070e7de686a2a6822c0ee5ddea0e062697e42c16e874e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio-1.46.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b90d15aa25693ab429530c6a869b7328fd0c1d72d5920c4abaeff0d642f670e8
MD5 2d20202ed48da1e3a8e3623f818d0739
BLAKE2b-256 7e49760bf410853e12c80d2f535521ee468dfb1c0db40206f53fe769fca2dd92

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio-1.46.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 09325ec5645ba9c5b642afd5258bcbc66c043ce425844d649635a6f80be8d743
MD5 3cf398688f80cb410a428aa022506b39
BLAKE2b-256 295f379c02389a3af1d879677ac7617c130317277279ff52f43f40b34cb41a8b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio-1.46.5-cp310-cp310-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 340539cf0a830ca05f0e28de3f2573307df88ea9565885ffe253ce0f8c4c30d2
MD5 e8849550fc53dc8aeccaba286c1862a7
BLAKE2b-256 c8b5710e5fe24890ab6a2db2798be07592cafa509a6b0ed38d3fd31fc4ca5a20

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.46.5-cp310-cp310-macosx_10_10_universal2.whl.

File metadata

File hashes

Hashes for grpcio-1.46.5-cp310-cp310-macosx_10_10_universal2.whl
Algorithm Hash digest
SHA256 811749aab82c20886c217c8e2316b90840488a20e12bd93c66e26d06781b5240
MD5 51c75c96e91c889be12aa1ff15559851
BLAKE2b-256 cdee1cf15bdea21a26d355d6a2a0715b23cdbc90218581c6d8be5004f8f3f8d7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio-1.46.5-cp310-cp310-linux_armv7l.whl
Algorithm Hash digest
SHA256 2131d0837292ae3c10f6d3df106117a8eb5c02bc49ea262d2e594037867f3975
MD5 6b03ad68b353ddcde328c2a4aa2d0128
BLAKE2b-256 e11bc556b4b7560f1bf4a06249a0affdd0a0ea5f9855c56fed411fe5ac2f3ea5

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.46.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d618e0b9ff1e3309cc55c4a82994085cc0ac74a21520a30d2ae43d45934896ad
MD5 b9cf4d5e575f854c9684483d63ac8e6d
BLAKE2b-256 d3c624f69f0b62b48a3606506abff13f131151a7b8c801289d5c6b2dc5a14bc9

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.46.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d20a6960248e1c021878d9258d2de334221ab13d273bf5d6711a087860e1c61b
MD5 60665f87c4a3e17735a2cd41cd2f0a4b
BLAKE2b-256 1c6fa1e1a606e5b2afa08ef57741f1b5430ce2b218366526def6f3d0fb20c835

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio-1.46.5-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e55f1758567a004d061e78754669e74407fc54373696de7b6f02be3196439ca3
MD5 209a8a40501977ad6d4491251250fc4d
BLAKE2b-256 054fce2d09eb1814046b978442e1a3f35e71f57ba16a81021625e6bedd2a9e28

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio-1.46.5-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d9e1cdd3cf68bea66cda5355d0e5926f68ef267cd92ce6fe555abe130e8dab63
MD5 9ad6c4e7179e8c6f3f484358a05c9b6c
BLAKE2b-256 3bcda6f65439c46169e040064b6c42cb813150e230bedde35c653d78fe0af06a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio-1.46.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5c5cd3a1f5c0f234f25a449b36b821625c24b94723dfc32081db2dc6f5d56cba
MD5 27aeb6a38ec51326cb9935930872cd94
BLAKE2b-256 0fe8c11c64e5502e48fe34ffb3cab1918f04c519cddaf3421ceaae57f51ebb29

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio-1.46.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6eb79441d2b1712f3884988e9d1e301134136328a3ab5bc8298423b0de451020
MD5 152c890334500f6ae95152d8c4d93b96
BLAKE2b-256 86f2e069b7f54ee5462f7fedba7d5473e0563180caaf803527cbfac300401e34

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio-1.46.5-cp39-cp39-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 090ae525d05302f13fae099008c63b9a0256b481ff8a85d763017f55d2c9dc20
MD5 ee9edf65b662383590c3e312e02ef2f0
BLAKE2b-256 380829f396cf7238328474d2b6a5b7d73fd272e537b7e89601006dde0c94eeb0

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.46.5-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.46.5-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f1fdb434e53fa099abfd16d20b0dceec9ea82cb29be12ab95dae27723a2684ca
MD5 d53570ef40036117a053c9d328bd5a3f
BLAKE2b-256 a89146c2cb13b3457c0aa6adc6423ae13142725e600fa55d04f9e3c110ed753e

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.46.5-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.46.5-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 435ff0eb9061012ec9a5fd1c8a588cdc05853fbe332620b99551b3a78c3ebd78
MD5 7cabd0d18d506921b99bc1eebcc79984
BLAKE2b-256 f286c64bf315172ab31f6eee0d600a05d8f02ac52e1096996e8ad85c3734eeb5

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.46.5-cp39-cp39-macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.46.5-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 d44d87cf7407266d5f1b9f30808066ec507f292d94a805559c5761a6ceca2bcd
MD5 15ab24700cf78ec5b3c3dff7668e749b
BLAKE2b-256 2575a4013c39a5f952806fec2c39c8911eb8b00fe9ea739ad99fa57ac19d7345

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio-1.46.5-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 dce155741e985c0669c3f581adbf199aa01659a1c3a13f56e1f15e4b8e98af47
MD5 0294e6526699f9dd5dd8269fd1237524
BLAKE2b-256 509a6281ad9bc0c086874d0b4b3a8c05d1bbea8d8af311b4e086a5b1d45d8069

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.46.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 34851656cb37d9ac4d9b06b90a5eb5a64c6fc28f151d0036a73d6ed664d45c0e
MD5 a7f56f174edbb747750238eaadc414d1
BLAKE2b-256 d822e63e847951f309db7ba60f9e2a1270b8f3d5e3c6f29fb101625f018ff1e3

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.46.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 5808d63e91158bfffc103fdb383745f4005e34b6c1b0321686adfa322691f3da
MD5 3f0bf1d4b06e9460a7308a922a7af60d
BLAKE2b-256 f82a6ad28a756ba79b28249a44060c47adb9b902f7da484766b31eb2566e1e55

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio-1.46.5-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fc04e33c2db43de852508920cc9982173c30989499f7abd621109ec2342f8710
MD5 de2c04159014aae847eae372e79ba657
BLAKE2b-256 ce08c9601f51fde95b3bf54435e8b71f76feaa84566390157ae03d25bfacca8d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio-1.46.5-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 37d70b81a5bb24689dd5d5d7e35447d058008c821d5a4424909a3cf96c619521
MD5 f20a198075034676b3f009d01e302c69
BLAKE2b-256 88624c00f33cbc381d76e73698fe0ec5562524bf1497625b61000eeac419f7a9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio-1.46.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cf7de724b267b66fb45d9da9936fb6e205cd6d4f20e840ede3a0bf6977ebdd07
MD5 a31c292ad59e2ee4a1f1227a5349bdbc
BLAKE2b-256 7f7bcaf08f3ed33c6322dc21cf3b64127da578c4e3aa7f506560d224d785e191

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio-1.46.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 25306b148c98aa1d6334553e4f5c1fc6618162eefcc6d83a84c2dc8322352efd
MD5 5bb04a9f6f75a5d2d645c0e9eb141c83
BLAKE2b-256 2d6520c6f0082f5727727a86266567adc2f2f1010618b874d072ca1e1781e9cd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio-1.46.5-cp38-cp38-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 38b6a7d4bd2f7154be5b84e20403b8f3d107e01f47c98bb6a33e9deaa25946af
MD5 9f786c94d6c66279941e2be379da4635
BLAKE2b-256 578a6e46dba0f6700b61ba8c76c4892c58019a4df539308f37b77d4167c689b2

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.46.5-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.46.5-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ceac8b4e1d1cbbb048ee98464fae2bdff2900a444231144443754eb010d501c2
MD5 00dc4f26cebf3d20fde64a0e0d37d159
BLAKE2b-256 56bd538311834a14421e8c63d955ab2382109513120ff181b96739036b5e6a14

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.46.5-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.46.5-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 afab0cf759bef6edd3373f3084ea1666be7c4c7cde019dff9400869f8bf13e81
MD5 268e88b69729135f3cf9425fd54f44ea
BLAKE2b-256 786dbe605fa5112f8a15786ca0e2f1e42cdd260d1788ddaf48fbff02fa18fa73

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.46.5-cp38-cp38-macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.46.5-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 2b743906a9380412e5787a7a18226d97416613927836f09f6d85cfb2b86ab16e
MD5 b7dee7f5d76d7c8e66fe73a7a217d723
BLAKE2b-256 547890f45165370efa5387c0e9055afdfe796d197560cfaf4645bf72911676e3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio-1.46.5-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 570d605169ecf1df64b32514c5c790941c289194b7f4b94b17a9fc7318897072
MD5 98424e4ba374901b1eb49502409c5ffa
BLAKE2b-256 c1714cb0c7f47f5adb5d53afb4fff9ae23f8e2ae30ee0803a3eb8372ee0fecad

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.46.5-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 62c42406c30fb478bc1bf319ba59353375344183968f7865afd2e549bff7b674
MD5 8ca61d448d2308a9feb86a80c099856b
BLAKE2b-256 dc88bde397ab3479db47bce096f121063883fe112c3c66784470bc501e6b974c

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.46.5-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 859a17c771241a390d558749fe397a63259a7f463da803cb298ad22350c0f1f5
MD5 3466b8a488a5be6dea1c08b41a0a9d08
BLAKE2b-256 e341612409d1ebbcc2054f5a610eb1940567f0a1c76c564874216eedc4667929

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio-1.46.5-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e15798216706f00b4353639ccc497e3e6f1269cef3f8941595df5c7a0d13e0bf
MD5 93fdebb50503138c90c03e6ba1002790
BLAKE2b-256 714bc251d52a830435753258488f7874034d3853e94b4d1dc0c676745d361e6a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio-1.46.5-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 039027b14027645b7d32ce4166ca62aed679de16b81a95c661cad6d76c2543a2
MD5 9922efab4901193e6bb1d02104d8d0dd
BLAKE2b-256 434d6856cc6b3b731586a746db45bb90b36b603b5c0c6e2d4e2b28050ba9d4d0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio-1.46.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f8876fa61e8a2c61eb6707021c486a8f3984a5cf9c3f30f733e38d5f5d8d6f32
MD5 2c17e14cde3b5d0116db8237e4139d0c
BLAKE2b-256 1eef32e3083c00370d35dd3fae8d06d94a7bdba3ede805f523935e167e5862e2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio-1.46.5-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 13172219a55d93b585a5b0b665e1759a9ccdf1d6bdb04cb794b93dc9c9b97a44
MD5 dd014b7afb1e634720320a187dc7c287
BLAKE2b-256 6a16741acf01dc0b9de0f4ea44a4fbd24ba703be83e2054c1b22171a2e652c70

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio-1.46.5-cp37-cp37m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 c64429d0fcf358474f51a190bc9a912281bd4da3e830149cf8781d329411d63b
MD5 0926d04af651191ef0ff86b26f320b06
BLAKE2b-256 7a8a2e065b042392693a8bbe5c0e9424287bf956a84f5cb09844f23ea7bd1b16

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.46.5-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.46.5-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f0369573d2b3ac60036091e09e5b0bef68f4b272be0922de51a03613cc25b132
MD5 16ae725af216c4e3b6dc35cdb7455ae1
BLAKE2b-256 5ae5015ff284b1fafcddcaaa002c6db0a81fe9aeeb996db93c34db08c7e974fc

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.46.5-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.46.5-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 19aca9ee6b32420bc7f35564565c50f735b8de5efe86de3e34e01369f23af6ad
MD5 020bb6d97fb278b527e0a5065dc235cc
BLAKE2b-256 fcb991577649dd4566223635e8deef967b6635b7b55c1258957622efbcb9d565

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.46.5-cp37-cp37m-macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.46.5-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 f4107d903514ddff94c47e1ad53314adb5b7fe8047ca78f17a4d9ca5d80c415a
MD5 a3a0f3c96e0bb751773331c021a34d94
BLAKE2b-256 e56f82bfff21643a21e071f8ef55867a6484e19c0bbc464073f5531a5d84cf71

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio-1.46.5-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 455275d14b166f57a4d1ab764831b7de079bbc344bdbc0bb54ae468b0e1a6d02
MD5 5f24cf77852f9a25933254bf2ec62b7b
BLAKE2b-256 2a0a6f87d3d92917f2ae06be3ffe21db754e119de21065ad7ef63190cb949874

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.46.5-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: grpcio-1.46.5-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.7

File hashes

Hashes for grpcio-1.46.5-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 96880d2dfd620749ebb6edfb87f227edc63f42da70bc8c966a2003bf45983f44
MD5 d670cafeb61feb5707c1d137440b2332
BLAKE2b-256 a41f14279bae1201862013d8b9b44d97ca22af3925004bcc7b2f5d8dc555b943

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.46.5-cp36-cp36m-win32.whl.

File metadata

  • Download URL: grpcio-1.46.5-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.7

File hashes

Hashes for grpcio-1.46.5-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 c5eb1ac6b8bbdf77372a270a255eaa3304c61d3170652e110c3319dc905bcecc
MD5 30fadad6835637714ce2a93f628b91de
BLAKE2b-256 66942377bcb1020773bb85beb98be16306951d5aa40d42d57ba399b29976bafa

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.46.5-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.46.5-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b2f4e669c0b3b49499536f7885c6b08d3482c3e3beaa682945f271b1dd8e8235
MD5 ce6e5d863e8f8d83d30d8a4c5725d864
BLAKE2b-256 45cddb1bc4bebc7e06ed06ceeeef1fca0fe1fb1bc0f5731c159d96cfcd63b7aa

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.46.5-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.46.5-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 33af11f6a7c37037b32e2453d0363003236c28aceeb728d1c51c3409904c827d
MD5 9afe6b85790f2cf97ac26cf6f7e9213f
BLAKE2b-256 959e86a27b5b0e03b6a95b35aa9acb176272418d40bd790c3a873ccf4b94e8e8

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.46.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.46.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 858bd1057a25412189ddd7076d54dc49856b70d94870769cab5504e05409fe9f
MD5 4d21ae238ac414cfd4064bbeebd54a17
BLAKE2b-256 0ec321a1707bf2ca0d333293833b50358cf093094fe613c9f3f4c86c529c4f36

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.46.5-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.46.5-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ff76d6ef1cc018f20544cfbc47c552751bfa6a85d9150edbd459265f6a27ee99
MD5 6817c8089e86b38cf1189587af13a19e
BLAKE2b-256 29388014810f521a36e2850801e87f2b596d975d5e99d874490ec901bf30d08b

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.46.5-cp36-cp36m-manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for grpcio-1.46.5-cp36-cp36m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 a63d3970c773b07022ff73dbdb0d995ec1ad7fb03cc8470b0432708f6f6346ad
MD5 c203e196c31df570c348c7c0f3fe7d66
BLAKE2b-256 fc61d711f14a5e1d937d3841b18bf4e3f054509a4cd5ba9cf8aa036c4ebb55fa

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.46.5-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.46.5-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 cd23fac1f25ca3e60fe308010eef4f87b51ece63d83d1f73c0da12160fc8b838
MD5 e49fa8977ce2361d646593390c79a7ad
BLAKE2b-256 8433260760b20b433a784a4f0621e9cbdb044ebd3ba5697742e8521ec6c53dee

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.46.5-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.46.5-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c98abd5a937f616b4abedff9baddc6f206af8012be2a0216cacbca0397002292
MD5 ed04eaf996849096ca513191e376ebe7
BLAKE2b-256 f0f05b94308067cae5d1134e61381a0beb2497e1bf6a44dca0985e4511c1c8df

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.46.5-cp36-cp36m-macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.46.5-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 0f573313fbf97151cfa646179cf93d76183c49b8af29ee07b94288d671da3d48
MD5 d0dde08f92977018eb035a33e4de4815
BLAKE2b-256 275a52cd6c9d3a04ae1992a20e378124c86f8d0913ba1406039f682f89c658cd

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.46.5-cp36-cp36m-linux_armv7l.whl.

File metadata

File hashes

Hashes for grpcio-1.46.5-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 f32e26db44beec813ab08de10be6b71a37370845093ddd0eaf644ea116190b53
MD5 eeb621ff2f7c9ecf7e6f6e058d8c65f6
BLAKE2b-256 ac1632a355bb41fd04c5d19d8f6e54af86fd8f9e29950aba4e4e6dd4ac0384fe

See more details on using hashes here.

Provenance

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