Skip to main content

HTTP/2-based RPC framework

Reason this release was yanked:

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

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

Uploaded Source

Built Distributions

grpcio-1.55.0-cp311-cp311-win_amd64.whl (4.2 MB view details)

Uploaded CPython 3.11 Windows x86-64

grpcio-1.55.0-cp311-cp311-win32.whl (3.5 MB view details)

Uploaded CPython 3.11 Windows x86

grpcio-1.55.0-cp311-cp311-musllinux_1_1_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

grpcio-1.55.0-cp311-cp311-musllinux_1_1_i686.whl (5.7 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

grpcio-1.55.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (5.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

grpcio-1.55.0-cp311-cp311-manylinux_2_17_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

grpcio-1.55.0-cp311-cp311-macosx_10_10_universal2.whl (8.7 MB view details)

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

grpcio-1.55.0-cp311-cp311-linux_armv7l.whl (93.4 MB view details)

Uploaded CPython 3.11

grpcio-1.55.0-cp310-cp310-win_amd64.whl (4.2 MB view details)

Uploaded CPython 3.10 Windows x86-64

grpcio-1.55.0-cp310-cp310-win32.whl (3.5 MB view details)

Uploaded CPython 3.10 Windows x86

grpcio-1.55.0-cp310-cp310-musllinux_1_1_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

grpcio-1.55.0-cp310-cp310-musllinux_1_1_i686.whl (5.7 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

grpcio-1.55.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (5.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

grpcio-1.55.0-cp310-cp310-manylinux_2_17_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

grpcio-1.55.0-cp310-cp310-macosx_12_0_universal2.whl (8.7 MB view details)

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

grpcio-1.55.0-cp310-cp310-linux_armv7l.whl (93.2 MB view details)

Uploaded CPython 3.10

grpcio-1.55.0-cp39-cp39-win_amd64.whl (4.2 MB view details)

Uploaded CPython 3.9 Windows x86-64

grpcio-1.55.0-cp39-cp39-win32.whl (3.5 MB view details)

Uploaded CPython 3.9 Windows x86

grpcio-1.55.0-cp39-cp39-musllinux_1_1_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

grpcio-1.55.0-cp39-cp39-musllinux_1_1_i686.whl (5.7 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

grpcio-1.55.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (5.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

grpcio-1.55.0-cp39-cp39-manylinux_2_17_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

grpcio-1.55.0-cp39-cp39-macosx_10_10_universal2.whl (8.8 MB view details)

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

grpcio-1.55.0-cp39-cp39-linux_armv7l.whl (93.3 MB view details)

Uploaded CPython 3.9

grpcio-1.55.0-cp38-cp38-win_amd64.whl (4.2 MB view details)

Uploaded CPython 3.8 Windows x86-64

grpcio-1.55.0-cp38-cp38-win32.whl (3.5 MB view details)

Uploaded CPython 3.8 Windows x86

grpcio-1.55.0-cp38-cp38-musllinux_1_1_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

grpcio-1.55.0-cp38-cp38-musllinux_1_1_i686.whl (5.7 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

grpcio-1.55.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (5.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

grpcio-1.55.0-cp38-cp38-manylinux_2_17_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

grpcio-1.55.0-cp38-cp38-macosx_10_10_universal2.whl (8.8 MB view details)

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

grpcio-1.55.0-cp38-cp38-linux_armv7l.whl (93.2 MB view details)

Uploaded CPython 3.8

grpcio-1.55.0-cp37-cp37m-win_amd64.whl (4.2 MB view details)

Uploaded CPython 3.7m Windows x86-64

grpcio-1.55.0-cp37-cp37m-musllinux_1_1_x86_64.whl (5.4 MB view details)

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

grpcio-1.55.0-cp37-cp37m-musllinux_1_1_i686.whl (5.7 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

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

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

grpcio-1.55.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (5.4 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

grpcio-1.55.0-cp37-cp37m-manylinux_2_17_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

grpcio-1.55.0-cp37-cp37m-macosx_10_10_universal2.whl (8.7 MB view details)

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

grpcio-1.55.0-cp37-cp37m-linux_armv7l.whl (92.8 MB view details)

Uploaded CPython 3.7m

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.55.0.tar.gz
Algorithm Hash digest
SHA256 dd15027a171ff93c97f9c704fa120bc5d0691dc7e71ae450e2ecade1a2799b53
MD5 3de03bbe5b430265bd0f0039219e673b
BLAKE2b-256 7663d025fb7599379765d6437e5aab3644955248ea89d2f84f4f8a9762d99c52

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.55.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9a11b1dd4b1572e85fba5911309c15980a1ff77c555fad0ecdbe3711ef741908
MD5 8e5c116ce846e8e798f9dcc92e3c08df
BLAKE2b-256 3b4e8feb1bd9b29beebc28ffecbe0b0d13bc267d1fb9b78a2ed7cd07a72e05cf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.55.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 3.5 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.55.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ee0de9cb6813704969e53743e0969fd95225ff24bd686c89ed12a18147f6566c
MD5 3b54b3dd99895a1c6040f8934c43129a
BLAKE2b-256 5f35742e06fcd8a5b810e05ec67e30e00964bf834a90b02e6598900cd955c96c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.55.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b2a3b837d5837b9069783026b57aa0ff12e34d3218fdeda3f9c06d3950266d8e
MD5 2dddc885fbe264cd946dee1786cc9f71
BLAKE2b-256 a2c7d6d32c8be8c82457c6dc90d2eac74c457643cf99529f5ef00a2f60577c23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.55.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d396ec4d520b58f43142958cff071e5ad1c50ac87d29d086a9c6a990a09ea536
MD5 47c108f296c1299de95fac7edd2ecba2
BLAKE2b-256 b2b59294c238fad8da76173906f52ffe731dc4919c6c1b40477995e230e8c192

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.55.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dad999423b33ad5409e986587593b6062a8260b74ae8fc8162ce231c6b7a929e
MD5 bb4fac2f67ca68f9243de8666ffd1584
BLAKE2b-256 013026b61c691d9a3cea95b0c568a180b81cc339a6504e9154cbf9af27cbe08d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.55.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4370d2cca37301bcc69453d3dd3c1576d06d6b3e337bfec55b3aab2fe106b25c
MD5 928916badc11e89df2d5357d3c519d70
BLAKE2b-256 f6b6f42667549b8fd3a8afe8f2505ddc8ecf70135c81889168b5bf5f66224307

See more details on using hashes here.

File details

Details for the file grpcio-1.55.0-cp311-cp311-manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for grpcio-1.55.0-cp311-cp311-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 3ab9bf80c19c91847f45ff32af94c85d282545a62db39d797838244d57831d78
MD5 999c7591365bfba521994bf637c2abbb
BLAKE2b-256 40b787fbbf428ec344cb5f0564f01e46ef209a9b56219af11dfbf3baf649d3c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.55.0-cp311-cp311-macosx_10_10_universal2.whl
Algorithm Hash digest
SHA256 8a910fa9b95a286f4bc1879dcf8d5ccb95b5e33bb63323fc4414d157f23afef1
MD5 ab624ead24551e06907f10f1d7baf129
BLAKE2b-256 9c745d1f923285c2742566ac100d84db9541f725f52c6d613a6baf01dee375a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.55.0-cp311-cp311-linux_armv7l.whl
Algorithm Hash digest
SHA256 c97cfae0b7a17dc1a0a3e4333f4f46daa114d85f950a67f39cc141b5425182e4
MD5 19e2e3f6ced7de9bdcee252e506f2b3b
BLAKE2b-256 fe0d28f19978310f85823e736e4e8ece0bab18916e5f86b946438cd37e1d177c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.55.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ab784204d9923368e0e5877d7795584b9606a51b128ee199ad8b5888d0c66592
MD5 a7b7a56154863428f637f5479a2f0f5b
BLAKE2b-256 698f072b547bae53f9477df7b7fdcc57d0230a9105f2c6a4ca1c6ae303d5168e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.55.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 3.5 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.55.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7c00263d792a244bef67a8d3b357ccbcdae6341c5961dbee494d8f967f9aee69
MD5 5d1241d6ba42aaa41cc323daf4a7545e
BLAKE2b-256 f2b62ed1b4de82bd710993c04722307d1a4cb5ae5bb345e764d81be116068019

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.55.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1173a05117798aca4834d3edd504e6adc25ae9967df0f44b91a612884fb2707a
MD5 305fcaf6fb95e392bd456ed0a18a4294
BLAKE2b-256 a56a6e76de332522dad1ca50124d04766198e477c1f160dd07160886de092aab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.55.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2d25d7fcb528a40578b3d0428d401745fd5c0eeeda81f35ce2f40a10d79afd19
MD5 3af081dbc3f6d208899068519f4806c4
BLAKE2b-256 c1b87d0c4104125808504c2d62bcdc4f5748551a5674bfcd5e66b381f4e286ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.55.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70de2b73cf22241173cb21d308786ba4ea443e4c88441a2ce445829aa638dda8
MD5 998288754bdffc68d4cf0dd085365465
BLAKE2b-256 5a8f333656e75b16847c405f62e54f033060c636d879182449b83453a63cec18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.55.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8bd4f4932ef63ed32a725065aebb8585e4118a523d923db896e85c09429a36e6
MD5 b385a117e110294cef5219c9fdb97979
BLAKE2b-256 6c674f0dacb9e7da279bf117137b4099dbcb6c28884c3ed2bf356af827156913

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.55.0-cp310-cp310-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 1982c99c7091d1b7e3e78b1173097f705feef233e253a27e99746b11815ac897
MD5 78438aafeaebd4399104f77ff9bfaa20
BLAKE2b-256 c20366dec20814d830bcd3a07f0396b02aabaa44f1225ad8a640518c83af5f37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.55.0-cp310-cp310-macosx_12_0_universal2.whl
Algorithm Hash digest
SHA256 054b7164b25712ec71339e139875a66708a2ab09be36ac75e73b2d337ab2dc1b
MD5 e6593a5a529304846cdd010810779aff
BLAKE2b-256 36d962639a8c439c6ff686f715ca5fb90b07f6c74aa93c1abdb46eea28cd04f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.55.0-cp310-cp310-linux_armv7l.whl
Algorithm Hash digest
SHA256 7b38e028a7bbc97a9ae5e418712452f298618b9d0493390770bf2de785251ae7
MD5 7e8fe08fba250ccb50b523e8edc687f1
BLAKE2b-256 10d1e593c67a9e6b04a4a0347c23498beb73839c7dfe598dd001b9565cdbfa69

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.55.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2663741acc117370fd53336267cfb24c965e9d3ea1e4933a3e4411712d3091fb
MD5 e0b5cb0a6204adf420ce2b17d8890f48
BLAKE2b-256 eac114a61d0ab8dfc36dd26bc5cadeceee2e0e8b630c7a128135068ab60e9f56

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.55.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 3.5 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.55.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c33dbeecc14f1a413e8af8ae1208cb383b063fa2ff2e1f309b4d3d7739b0927e
MD5 0f2bfce8a5a632bd6820f339b32f393d
BLAKE2b-256 81d73bc232518dbd3d36c22a46e6eb3f94031faa30f420f36b5297212a4b9b90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.55.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0d3d5c644d523dee82ffcc44ad50cd66e3bf66e7fa60ad3cdb1eb868228e4ab0
MD5 62c7728094391a96f7341f46430b4ac4
BLAKE2b-256 e9ac37920b7a6081d12481f30396a3aed04d7fb4c71d7e60cd4b1ddba4f821e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.55.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8b440ccc434c1ad5874465bfae40c0a27f562ae5f7c5b468b6689bc55e8bf1c1
MD5 66a103492ae8d150b9b10936172a17df
BLAKE2b-256 06b0382d31d2080b65e2a1a2a1e0074990fd597285f3099278b9598466f99969

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.55.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fe78365c64b2c7470d31c4941e10c6654042bcbb53897b9b1e2c96d6d0da9ef9
MD5 beda5519177a23d3e390b59745f3e30e
BLAKE2b-256 8db77f083260eb8257a48e03426bcc1ad96111d39f57a8546ddcdeedd6455015

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.55.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b1e2b705d524e780998218cf429d30b6ffc54cb6e54812c9597bc5df12dbcb5b
MD5 6ea64c50b421d92a7f1f3acb8d9c2935
BLAKE2b-256 1acd172baae05a8b68f88abbfbc775b1be65132ba95c9a304b3d1e026eda37a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.55.0-cp39-cp39-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 ba32a8e9bc3eecc6bab6824b905f04c3fdc31659c3e6e06841b774e7cb4410af
MD5 738e86258165f9df065df90d2c59ffc6
BLAKE2b-256 50221947d6840fc3013d339379798980545d69b98a0f3776d5e7e0e536845a4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.55.0-cp39-cp39-macosx_10_10_universal2.whl
Algorithm Hash digest
SHA256 a82283d6e0403d3e2e7eebb99cb0d2783e20b6791c8c94bd8d4a4233b58b1ea0
MD5 3cbadbd7414e47ec79dc17e94c998e2c
BLAKE2b-256 580f5db2af700928ada8f27c1a42a26b3c73769704015c5dab53bb1c4eeb5849

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.55.0-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 6b8dbb151b116825c10f01e5b7b75e14edd0e60736a65311d0d98a4cd0489303
MD5 8af1526a01a8ea538079d9db681ed156
BLAKE2b-256 72b1716744a11032709bdd9e3da07042658392912e7773263309f591aa114625

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.55.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 74780f570c76feb8e62a8c019b495fea435b60218682fce513ff2c71262c346c
MD5 4228e647efce50d4530741a08d8d6447
BLAKE2b-256 e7dccdda3f0ca01a96a2fb90f165de76d51d2bf0cdaba17a0ba65e1517131ab9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.55.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 3.5 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.55.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 7b8665da31b5bd701b338a581de7b9631d50b4b7ee67125c2d1dc2228cc119d8
MD5 22e94b1b818734b72426c2b2a89a756a
BLAKE2b-256 ef37c25b9306db1472119cb1cbb30476485bc85f45ca58a214f4ac5ad62b8bdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.55.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 10af4774da9c0665a1bf519333694ac40d72d83cb514534b99db0a5e3d5c3593
MD5 a8bba9a585e9622b9909991f0e7b3bed
BLAKE2b-256 b01da5d716d29fe63242d5a0159b11fea80934ba69bccffe3e0735e0cfe54302

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.55.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 56631cc0bdf86d15ea1599b9697ace65e6b52c6b136d3666bf7769d3d6d087a8
MD5 8fd2cb8fc440cfd7d81ec1ffb27153ea
BLAKE2b-256 47199ed9db16a05438da22f858bf149721047e66fc06e5a8711a9a1f581ca2c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.55.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1041cad23f00943d8889ad15427d87bbdacbbe2df5cec951c314f2f3967d4691
MD5 779560a15335fdbd7c571c290ac487d6
BLAKE2b-256 89649ed5ba98d458a6ef729883363494dbbc6e3e008858d93feba9729fba2971

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.55.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 89107071b5f14af6bbb855183d338a0fa94136bbeb3989c9773c6184e51a95e9
MD5 f29e5e4730478198bbda809468631923
BLAKE2b-256 80c46291f21a049e40f2e7d5302ca1a1deb61aba37fd492048e9b4d3a1ce6d5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.55.0-cp38-cp38-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 7c32f87bec58a8a0d4f4d5387bd61a383bd32b2caffb2de3cd579e47490b7e19
MD5 ec069695abb659bc8bdcde13bb8e4030
BLAKE2b-256 9d6f7a5555f95dd5105abb0ab3168ef4d5c38ccdf6c3ec248c33a878b04a9304

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.55.0-cp38-cp38-macosx_10_10_universal2.whl
Algorithm Hash digest
SHA256 51b7a27a129f743d68394f94029f88ef3da090fc13776b9dfa3c79c5f4b30525
MD5 37b38f15517fe69679cf34922ff77fde
BLAKE2b-256 a72ae35aa3c5d9bd4e0a46fd2d0bea7ffe930df99848dee7a1d326355bad7098

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.55.0-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 ce82d06cdfb8a9292fb857f00bee11a2430e4ac2742e07b46c1a3072d683256a
MD5 a6e1bcf0a3d8ba1f339a12a06da1eea9
BLAKE2b-256 0c095b108601174a8188260549f2decaa208375725fed87925d748ac5adfb520

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.55.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 a202dcf0c512292fd7a2154e4044c70400212eaa726685ebf8af105e25693c5a
MD5 88a7d7e809038a496394f352a77df0f6
BLAKE2b-256 77d936fcffbfd2d6b33b3376771ab727e0bf6de4940cb75603ab79c515449ef7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.55.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 67c4fda71f92225c5e74fa15bffa6be022c07111f674fe1f234c1ef4c1bb7927
MD5 0a207cdcd18dc0878cae33d79635f253
BLAKE2b-256 52e7db325743fbdd909aa80b7f1cdc60cd947d9c01834a07d667a45ca1fac283

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.55.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 157f5615c7b5d0968727472f6394dee01555ef4246d2f2cfb6555be857936d74
MD5 3a954e0bba437a601c2b75d6a75a33f7
BLAKE2b-256 6d632f3bfd180db5a03655dea5814ca67c84b687ac428a519a5f1d993d93f065

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.55.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 29ab0e879b1585be41cfbb02faed67913700ced8015da4763f1f0bdd7dfb4ab7
MD5 c220d10af123a98bc425462ea1b1e8f4
BLAKE2b-256 72740948113e0895f42b338eefda59718a79fc84ca3c51ca8d3028088481d59c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.55.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 48f6088d898e1e987d761d58dc4cd724e7457a7a86d11561fa95c3b826d025dc
MD5 fed2b2adb6d1eb3c90e06f4eb41ca378
BLAKE2b-256 189be4e92d548f928ab0a3bb872966d1b78b07faef828f66f2cb3a12c42ab360

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.55.0-cp37-cp37m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 60efab181c32e029e0960f238508396dd001ba2064168f8148e6356db093967c
MD5 fcf94d58647de543a92f92b0e28d5e62
BLAKE2b-256 703814bb3620486db236c8f92b7e9c6805b52c2e3aa5a2a5615a017d1b73e29a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.55.0-cp37-cp37m-macosx_10_10_universal2.whl
Algorithm Hash digest
SHA256 322d4ebc37cbc8d8596b1da6055e3e81e8cfd36816ab4b285c1163c3042e6067
MD5 26d0b86e8e750599a1ea8a5b66027fb9
BLAKE2b-256 6cbc7948f3c795ed8ae7f3f49fd52ad22d8f7ae90a5ffa49ccc91457bffa7ace

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.55.0-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 d0209fb3cb55c5288a1dec72dcaae2c1b501edceca10d22c0f0baa5e60e2b22c
MD5 cc218e19ee705ba70860337c4ca122cd
BLAKE2b-256 7a2c6a1c731e6af414bb71cbf3c8698e5dbb9ee7b066839f21656b5c25a73227

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