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

Uploaded Source

Built Distributions

grpcio-1.41.1-cp310-cp310-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.10 Windows x86-64

grpcio-1.41.1-cp310-cp310-win32.whl (2.7 MB view details)

Uploaded CPython 3.10 Windows x86

grpcio-1.41.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

grpcio-1.41.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (4.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

grpcio-1.41.1-cp310-cp310-manylinux_2_17_aarch64.whl (44.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

grpcio-1.41.1-cp310-cp310-macosx_10_10_universal2.whl (3.7 MB view details)

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

grpcio-1.41.1-cp310-cp310-linux_armv7l.whl (48.2 MB view details)

Uploaded CPython 3.10

grpcio-1.41.1-cp39-cp39-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.9 Windows x86-64

grpcio-1.41.1-cp39-cp39-win32.whl (2.7 MB view details)

Uploaded CPython 3.9 Windows x86

grpcio-1.41.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

grpcio-1.41.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (4.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

grpcio-1.41.1-cp39-cp39-manylinux_2_17_aarch64.whl (44.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

grpcio-1.41.1-cp39-cp39-manylinux2010_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

grpcio-1.41.1-cp39-cp39-manylinux2010_i686.whl (3.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

grpcio-1.41.1-cp39-cp39-macosx_10_10_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.9 macOS 10.10+ x86-64

grpcio-1.41.1-cp39-cp39-linux_armv7l.whl (48.2 MB view details)

Uploaded CPython 3.9

grpcio-1.41.1-cp38-cp38-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.8 Windows x86-64

grpcio-1.41.1-cp38-cp38-win32.whl (2.7 MB view details)

Uploaded CPython 3.8 Windows x86

grpcio-1.41.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

grpcio-1.41.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (4.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

grpcio-1.41.1-cp38-cp38-manylinux_2_17_aarch64.whl (44.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

grpcio-1.41.1-cp38-cp38-manylinux2010_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

grpcio-1.41.1-cp38-cp38-manylinux2010_i686.whl (3.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

grpcio-1.41.1-cp38-cp38-macosx_10_10_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.8 macOS 10.10+ x86-64

grpcio-1.41.1-cp38-cp38-linux_armv7l.whl (48.3 MB view details)

Uploaded CPython 3.8

grpcio-1.41.1-cp37-cp37m-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.7m Windows x86-64

grpcio-1.41.1-cp37-cp37m-win32.whl (2.7 MB view details)

Uploaded CPython 3.7m Windows x86

grpcio-1.41.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

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

grpcio-1.41.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (4.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

grpcio-1.41.1-cp37-cp37m-manylinux_2_17_aarch64.whl (44.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

grpcio-1.41.1-cp37-cp37m-manylinux2010_x86_64.whl (3.7 MB view details)

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

grpcio-1.41.1-cp37-cp37m-manylinux2010_i686.whl (3.8 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

grpcio-1.41.1-cp37-cp37m-macosx_10_10_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.7m macOS 10.10+ x86-64

grpcio-1.41.1-cp37-cp37m-linux_armv7l.whl (47.9 MB view details)

Uploaded CPython 3.7m

grpcio-1.41.1-cp36-cp36m-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.6m Windows x86-64

grpcio-1.41.1-cp36-cp36m-win32.whl (2.7 MB view details)

Uploaded CPython 3.6m Windows x86

grpcio-1.41.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

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

grpcio-1.41.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (4.0 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

grpcio-1.41.1-cp36-cp36m-manylinux_2_17_aarch64.whl (44.0 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

grpcio-1.41.1-cp36-cp36m-manylinux2010_x86_64.whl (3.7 MB view details)

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

grpcio-1.41.1-cp36-cp36m-manylinux2010_i686.whl (3.8 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

grpcio-1.41.1-cp36-cp36m-macosx_10_10_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.6m macOS 10.10+ x86-64

grpcio-1.41.1-cp36-cp36m-linux_armv7l.whl (48.0 MB view details)

Uploaded CPython 3.6m

File details

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

File metadata

  • Download URL: grpcio-1.41.1.tar.gz
  • Upload date:
  • Size: 21.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.7

File hashes

Hashes for grpcio-1.41.1.tar.gz
Algorithm Hash digest
SHA256 9b751271b029432a526a4970dc9b70d93eb6f0963b6a841b574f780b72651969
MD5 3b2036f8300c444d635102aea0bcaa76
BLAKE2b-256 bd816c704c002a992b9d6466c739e3e7687e0bb2365d8cd63d7fc8e95d502cb6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.41.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.7

File hashes

Hashes for grpcio-1.41.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3713e3918da6ae10812a64e75620a172f01af2ff0a1c99d6481c910e1d4a9053
MD5 e8a4e90e0e3a817186dc1bc225e9e4e8
BLAKE2b-256 22f713814704174f919f88de0c7c9c360ae18096ad4b4d3143c4c821b57f0cdf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.41.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.7

File hashes

Hashes for grpcio-1.41.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 766f1b943abc3e27842b72fba6e28fb9f57c9b84029fd7e91146e4c37034d937
MD5 b979fbe75924f4ed6818ebd8bc16579e
BLAKE2b-256 6020404bbd0ed200d65a9472c4157611c4c3fe3e4f6dc23ad78a6b31614ca94e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.41.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0aa1af3e1480b6dd3092ee67c4b67b1ea88d638fcdc4d1a611ae11e311800b34
MD5 37676fae1fd94642fc2eccb91c10f4dc
BLAKE2b-256 9716f98c941f892fec7eadcf2fd0bc475898d23a1ab842b74ec5758b4663b226

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.41.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 71d9ed5a732a54b9c87764609f2fd2bc4ae72fa85e271038eb132ea723222209
MD5 ecc8e9fb397b264a98b635f18905de6e
BLAKE2b-256 04e18ff988098a37dc67c3776c2049a97a06a1524eb49e244421145127533f68

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.41.1-cp310-cp310-manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 44.2 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.7

File hashes

Hashes for grpcio-1.41.1-cp310-cp310-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 f68aa98f5970eccb6c94456f3447a99916c42fbddae1971256bc4e7c40a6593b
MD5 ec88a14103eedc4d564e71a95393e94d
BLAKE2b-256 49bdadef57f4056ca2d0eeaef17c68c3a45562f6e7fb641888ef4733cbd1096e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.41.1-cp310-cp310-macosx_10_10_universal2.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.10, macOS 10.10+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.7

File hashes

Hashes for grpcio-1.41.1-cp310-cp310-macosx_10_10_universal2.whl
Algorithm Hash digest
SHA256 3b4b7c1ab18283eb64af5648d20eabef9237a2aec09e30a805f18adc9497258d
MD5 bd8535a93cf7ad165c4230bfc71d4b13
BLAKE2b-256 b75bfe1f5e81bea15a47cb7c2890960aa312638a2be4c98efc3e00b076f2be96

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.41.1-cp310-cp310-linux_armv7l.whl
  • Upload date:
  • Size: 48.2 MB
  • Tags: CPython 3.10
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.7

File hashes

Hashes for grpcio-1.41.1-cp310-cp310-linux_armv7l.whl
Algorithm Hash digest
SHA256 ead9885b53777bed4b0694ff0baea9d2c519ff774b17b177bde43d73e2b4aa38
MD5 a88878a904057e66be692f90a147c898
BLAKE2b-256 da0a19ae53a2c052c0c30c59962e1f4f4da7790ef510f089361be341969ba7db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.41.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.7

File hashes

Hashes for grpcio-1.41.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c3a446b6a1f8077cc03d0d496fc1cecdd3d0b66860c0c5b65cc92d0549117840
MD5 242e00dfc3109f68472e9fe9d6175a0b
BLAKE2b-256 8a1c7a9bece532f2e3c84690501dc1f120ed20879ac0dd6c2859051fb66bb19e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.41.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.7

File hashes

Hashes for grpcio-1.41.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 2f2ee78a6ae88d668ceda56fa4a18d8a38b34c2f2e1332083dd1da1a92870703
MD5 84338047c005fba79e4a008bee5e9eab
BLAKE2b-256 f2950c471fa257fbcec59c92694f4370610a91db5bc3365748c235ce9271c41d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.41.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 740f5b21a7108a8c08bf522434752dc1d306274d47ca8b4d51af5588a16b6113
MD5 895b1c4a111efa665bc601d8c0a8c39b
BLAKE2b-256 c3156cd8794de47129615e392ab81d7764cab25f889f8e9a0af97c8f10b41591

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.41.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 72d0bdc3605dc8f4187b302e1180643963896e3f2917a52becb51afb54448e3e
MD5 e60bbd52c3a7b890655421e967d7636f
BLAKE2b-256 c719ec665d21fd269d45e1ed66f3063578018e604b021b123ae77646012f0824

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.41.1-cp39-cp39-manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 44.2 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.7

File hashes

Hashes for grpcio-1.41.1-cp39-cp39-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 2a34c8979de10b04a44d2cad07d41d83643e65e49f84a05b1adf150aeb41c95f
MD5 be87939fe288604f44c1e0246fdc9893
BLAKE2b-256 cfdfe8e2795b99b17f88d74d1914bd3028100f3ba8f50812e0690bbcf2a201ad

See more details on using hashes here.

File details

Details for the file grpcio-1.41.1-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio-1.41.1-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.7

File hashes

Hashes for grpcio-1.41.1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fc2eadfb5ec956c556c138fab0dfc1d2395c57ae0bfea047edae1976a26b250c
MD5 1ddff5bc7ef17fc048def2893270898f
BLAKE2b-256 af112b95f3aec6a623a1cac97788c37a7f4ec5bdbb21a20ce2521cb1573a01ae

See more details on using hashes here.

File details

Details for the file grpcio-1.41.1-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio-1.41.1-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.7

File hashes

Hashes for grpcio-1.41.1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 23a3f03e1d9ac429ff78d23d2ab07756d3728ee1a68b5f244d8435006608b6aa
MD5 3eeae76e5e69a63af71cf2a3c052bf58
BLAKE2b-256 110ebc572add8b0f1e8adcacc32ce8ea3a1829bddd733a93b7c53e7aae6b8990

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.41.1-cp39-cp39-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.9, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.7

File hashes

Hashes for grpcio-1.41.1-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 fd11995e3402af0f838844194707da8b3235f1719bcac961493f0138f1325893
MD5 c8b7bbf802b69ac458e06524a650106c
BLAKE2b-256 ff30701fa277ffa419fda3abafd31bdcd994ce2a7462ec7760d7e92684f25344

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.41.1-cp39-cp39-linux_armv7l.whl
  • Upload date:
  • Size: 48.2 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.7

File hashes

Hashes for grpcio-1.41.1-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 3213dfe3abfc3fda7f30e86aa5967dce0c2eb4cc90a0504f95434091bf6b219a
MD5 a590e95dac23cdbdcc3a81b49f9f1fe6
BLAKE2b-256 73741998139287b4246950c449ac01637f3da6712ffa5ae7663ee2baeea0922a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.41.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.7

File hashes

Hashes for grpcio-1.41.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 32b7ca83f1a6929217098aaaac89fc49879ae714c95501d40df41a0e7506164c
MD5 95f9fe170fc728827c260d8e28a8b42f
BLAKE2b-256 6293906e58b0c44da703c4e3897ae78f165408153937362ae1faa424caf6505b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.41.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.7

File hashes

Hashes for grpcio-1.41.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 7a22a7378ea59ad1e6f2e79f9da6862eb9e1f6586253aee784d419a49e3f4bd9
MD5 939440f0a0fe675abcc2c5393222055b
BLAKE2b-256 a426027eb7ced605d3d75b8725325b4b19a844ab35349aaabc563beecb6a2823

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.41.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 31a47af7356fb5ed3120636dd75c5efb571ecf15737484119e31286687f0e52a
MD5 33fcd0a2aac6c75762b9a53ada571841
BLAKE2b-256 993e4fb79a071cfaf2b2a539f4d2f6b4b212560c3975438ddaec606c260049e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.41.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b1232c5efc8a9e4b7a13db235c51135412beb9e62e618a2a89dd0463edb3d929
MD5 2a2eabad0422aa33ac25a3adb9f4ec53
BLAKE2b-256 6b8b6fe64e7db65ec6a4bd93aee39f11d2113c6289c4a46f0f48f1be629afed3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.41.1-cp38-cp38-manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 44.5 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.7

File hashes

Hashes for grpcio-1.41.1-cp38-cp38-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 6ca497ccecaa8727f14c4ccc9ffb70a19c6413fe1d4650500c90a7febd662860
MD5 89ba50bae7c20ce54de053a6084d41a1
BLAKE2b-256 88bdf866445eeb57f791325ff6ed59c50fce66b3fdb173965c4f33835c9120ce

See more details on using hashes here.

File details

Details for the file grpcio-1.41.1-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio-1.41.1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.7

File hashes

Hashes for grpcio-1.41.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8487fb0649ebebc9c5dca1a6dc4eb7fddf701183426b3eefeb3584639d223d43
MD5 1814a66834e6d7c178df70f7c8afc669
BLAKE2b-256 8ad0f18fa0f4e754253904dffc2ecb59f1efd227e3a16f9a61d195ebf9117689

See more details on using hashes here.

File details

Details for the file grpcio-1.41.1-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio-1.41.1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.7

File hashes

Hashes for grpcio-1.41.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c35b847bc6bd3c3a118a13277d91a772e7dd163ce7dd2791239f9941b6eaafe3
MD5 1f519e449314ebf7a7a7829755b091f2
BLAKE2b-256 e842c49b7dd436def867a5c063df810d8d0d668b27753c3f127e82b990067691

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.41.1-cp38-cp38-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.8, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.7

File hashes

Hashes for grpcio-1.41.1-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 d1461672b2eaef9affb60a71014ebd2f789deea7c9acb1d4bd163de92dd8e044
MD5 aaea550b5ea145afd4d46c5fa3c0ca74
BLAKE2b-256 e1c10bde59bbeebfc7c3fc202eaa2696699f61740dc73d3276f85ec3101025d9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.41.1-cp38-cp38-linux_armv7l.whl
  • Upload date:
  • Size: 48.3 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.7

File hashes

Hashes for grpcio-1.41.1-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 61aa02f4505c5bbbaeba80fef1bd6871d1aef05a8778a707ab91303ee0865ad0
MD5 41ea3daaee91643dc236fccaf05fd2d2
BLAKE2b-256 ac2f32e6e5a06b7af8752b7ce6364e17c344b61d2a397448a5cccb28009f7d1c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.41.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.7

File hashes

Hashes for grpcio-1.41.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 9170b5d2082fc00c057c6ccd6b893033c1ade05717fcec1d63557c3bc7afdb1b
MD5 6b7ca42e5963bc1804e979ace5afe4ea
BLAKE2b-256 d02138b9735caa0afb3b6a75a8cda6831ba894cf50904bd91f5f7dd9cd614584

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.41.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.7

File hashes

Hashes for grpcio-1.41.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 0c075616d5e86fb65fd4784d5a87d6e5a1882d277dce5c33d9b67cfc71d79899
MD5 cc1710bbe3c5536cc85044d9e7fa939e
BLAKE2b-256 133c942d5ba5885c9684383987f955216c2ad9df98a7d4dfd465eb48e2288bcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.41.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd570720871dc84d2adc8430ce287319c9238d1e2f70c140f9bc54c690fabd1b
MD5 87ebd2bfc4702aa1013febb7bef005c9
BLAKE2b-256 be55c4e63d514c4b5f14bd1bb6357c12c61d63f6bfe338e272ea350b7c8f351a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.41.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ebbe9582ef06559a2358827a588ab4b92a2639517de8fe428288772820ab03b5
MD5 32a89fbc4900d7b3ee60a94ce7365202
BLAKE2b-256 cae2e6e809b2ad1d5cfb5780b50907dd3ff6bd44c9f1cc0fe7bae17a6a470ddf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.41.1-cp37-cp37m-manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 44.0 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.7

File hashes

Hashes for grpcio-1.41.1-cp37-cp37m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 9d1be99f216b18f8a9dbdfbdbcc9a6caee504d0d27295fdbb5c8da35f5254a69
MD5 bbff1ee80e2bf039aa166dcb9042f3cf
BLAKE2b-256 48dcfe21892c22caa2bbb2d27dc7abde3050d99375927fa6ba26a4f6072c132b

See more details on using hashes here.

File details

Details for the file grpcio-1.41.1-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio-1.41.1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.7

File hashes

Hashes for grpcio-1.41.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9e403d07d77ed4495ad3c18994191525b11274693e72e464241c9139e2f9cd7c
MD5 97a4c1e70cca08c85461adc311b040bd
BLAKE2b-256 409ed3a6b1bbe1e32b16bb84d841acf85a0ea98ae178fe0df6a6f3e624c57e90

See more details on using hashes here.

File details

Details for the file grpcio-1.41.1-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio-1.41.1-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.7

File hashes

Hashes for grpcio-1.41.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b8dd1b6456c6fb3681affe0f81dff4b3bc46f825fc05e086d64216545da9ad92
MD5 db11f021f5eff5c753f819b8b4c60273
BLAKE2b-256 95b3cdd17a28d5bdd31cadfb58f70c5566d7c848e3a56dec09c07844e59d17aa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.41.1-cp37-cp37m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.7m, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.7

File hashes

Hashes for grpcio-1.41.1-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 a5ac91db3c588296366554b2d91116fc3a9f05bae516cafae07220e1f05bfef7
MD5 c841c03a8f61484cd9800dd079b9996b
BLAKE2b-256 9872bd7cb0767fc4e0c00173c9d07d578488d731e6241261270bddbc5f290960

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.41.1-cp37-cp37m-linux_armv7l.whl
  • Upload date:
  • Size: 47.9 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.7

File hashes

Hashes for grpcio-1.41.1-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 133fb9a3cf4519543e4e41eb18b5dac0da26941aeabca8122dbcf3decbad2d21
MD5 c5c8ef9f81e5bf5e25501d6d7dc4d12d
BLAKE2b-256 9e68721d94afa6fea6c559b1d795d2bae0147b3db9b43f4069d392371a2b8cab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.41.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.7

File hashes

Hashes for grpcio-1.41.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 734690b3f35468f8ed4003ec7622d2d47567f1881f5fcdca34f1e52551c2ef55
MD5 d07ed28f78691e107d77bbbe0cecd3e9
BLAKE2b-256 a1c91aa0db2e684057af0e08c3d0eb41a4b6fe85ed0447ee49e76c7e7893c447

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.41.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.7

File hashes

Hashes for grpcio-1.41.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 888d8519709652dd39415de5f79abd50257201b345dd4f40151feffc3dad3232
MD5 f4caa8d726e6858dc02192b25ff1fa41
BLAKE2b-256 152d3892aa12a7ab245cbf26b86544e7c4d2af62a5c6b3e9971ba5d9ffb002a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.41.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2eb8180a6d9e47fc865a4e92a2678f3202145021ef2c1bccf165fa5744f6ec95
MD5 715f96c5fbb087b2a42670f2f6b109da
BLAKE2b-256 2ffa37e126905ec086714d6c320ee08d7728baa243798889270a85042826877a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.41.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e156ea12adb7a7ca8d8280c9df850c15510b790c785fc26c9a3fb928cd221fd4
MD5 8fb7b6fcca9b076f08f370a903337cd1
BLAKE2b-256 a8a39c1457d62620afa88e33fb043c1c3b4726bd875dd6f67e9a951f4be714ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.41.1-cp36-cp36m-manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 44.0 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.7

File hashes

Hashes for grpcio-1.41.1-cp36-cp36m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 a3bb4302389b23f2006ecaaea5eb4a39cc80ea98d1964159e59c1c20ef39a483
MD5 8363703f0616e16f565bb06dc1032d24
BLAKE2b-256 899bd47529b408b9c53a456ee642bf6822c0ecd1efd9d34f9c1620a878ab8b78

See more details on using hashes here.

File details

Details for the file grpcio-1.41.1-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio-1.41.1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.7

File hashes

Hashes for grpcio-1.41.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c32c470e077b34a52e87e7de26644ad0f9e9ff89a785ff7e6466870869659e05
MD5 fd3f038307c4cbce124ef55a6798882d
BLAKE2b-256 4b63d6075e4894a413cb7c33e770b16b71d4edb2a53d98260dd9ae8e824046f7

See more details on using hashes here.

File details

Details for the file grpcio-1.41.1-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio-1.41.1-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.7

File hashes

Hashes for grpcio-1.41.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 788154b32bf712e9711d001df024af5f7b2522117876c129bb27b9ad6e5461fb
MD5 a02c27c9a865c0fd8cf55632e315e3f4
BLAKE2b-256 1b5c360708de1b5a1e7e4cd342aeec3167526c30707b4ed40f62b76c6458d720

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.41.1-cp36-cp36m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.6m, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.7

File hashes

Hashes for grpcio-1.41.1-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 8824b36e6b0e45fefe0b4eac5ad460830e0cbc856a0c794f711289b4b8933d53
MD5 dd49e4524da8b3036b60d4b7e385c6ec
BLAKE2b-256 baff85450be30071b50862c8c04c61d7e042cd134775c1fce7b7d3623d54c334

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.41.1-cp36-cp36m-linux_armv7l.whl
  • Upload date:
  • Size: 48.0 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.7

File hashes

Hashes for grpcio-1.41.1-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 3f0b70cf8632028714a8341b841b011a47900b1c163bf5fababb4ab3888c9b6c
MD5 5d3b2d7e4a02f6a3345419aefc57799d
BLAKE2b-256 b6bcb0769618f6d14c08b22cc57bad6799107e92829dd3e7c3ba656afecffbdb

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