Skip to main content

HTTP/2-based RPC framework

Project description

compat_check_pypi

Package for gRPC Python.

Supported Python Versions

Python >= 3.5

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

Uploaded Source

Built Distributions

grpcio-1.34.0-cp39-cp39-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.9 Windows x86-64

grpcio-1.34.0-cp39-cp39-win32.whl (2.5 MB view details)

Uploaded CPython 3.9 Windows x86

grpcio-1.34.0-cp39-cp39-manylinux2014_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.9

grpcio-1.34.0-cp39-cp39-manylinux2014_i686.whl (4.0 MB view details)

Uploaded CPython 3.9

grpcio-1.34.0-cp39-cp39-manylinux2010_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

grpcio-1.34.0-cp39-cp39-manylinux2010_i686.whl (3.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

grpcio-1.34.0-cp39-cp39-macosx_10_10_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.9 macOS 10.10+ x86-64

grpcio-1.34.0-cp38-cp38-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.8 Windows x86-64

grpcio-1.34.0-cp38-cp38-win32.whl (2.5 MB view details)

Uploaded CPython 3.8 Windows x86

grpcio-1.34.0-cp38-cp38-manylinux2014_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.8

grpcio-1.34.0-cp38-cp38-manylinux2014_i686.whl (4.0 MB view details)

Uploaded CPython 3.8

grpcio-1.34.0-cp38-cp38-manylinux2010_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

grpcio-1.34.0-cp38-cp38-manylinux2010_i686.whl (3.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

grpcio-1.34.0-cp38-cp38-macosx_10_10_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.8 macOS 10.10+ x86-64

grpcio-1.34.0-cp37-cp37m-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.7m Windows x86-64

grpcio-1.34.0-cp37-cp37m-win32.whl (2.4 MB view details)

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

grpcio-1.34.0-cp37-cp37m-manylinux2010_x86_64.whl (3.8 MB view details)

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

grpcio-1.34.0-cp37-cp37m-manylinux2010_i686.whl (3.9 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

grpcio-1.34.0-cp37-cp37m-macosx_10_10_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.7m macOS 10.10+ x86-64

grpcio-1.34.0-cp36-cp36m-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.6m Windows x86-64

grpcio-1.34.0-cp36-cp36m-win32.whl (2.5 MB view details)

Uploaded CPython 3.6m Windows x86

grpcio-1.34.0-cp36-cp36m-manylinux2014_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

grpcio-1.34.0-cp36-cp36m-manylinux2010_x86_64.whl (3.8 MB view details)

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

grpcio-1.34.0-cp36-cp36m-manylinux2010_i686.whl (3.9 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

grpcio-1.34.0-cp36-cp36m-macosx_10_10_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.6m macOS 10.10+ x86-64

grpcio-1.34.0-cp36-cp36m-linux_armv7l.whl (30.5 MB view details)

Uploaded CPython 3.6m

grpcio-1.34.0-cp35-cp35m-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.5m Windows x86-64

grpcio-1.34.0-cp35-cp35m-win32.whl (2.3 MB view details)

Uploaded CPython 3.5m Windows x86

grpcio-1.34.0-cp35-cp35m-manylinux2014_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.5m

grpcio-1.34.0-cp35-cp35m-manylinux2014_i686.whl (4.0 MB view details)

Uploaded CPython 3.5m

grpcio-1.34.0-cp35-cp35m-manylinux2010_x86_64.whl (3.8 MB view details)

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

grpcio-1.34.0-cp35-cp35m-manylinux2010_i686.whl (3.8 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

grpcio-1.34.0-cp35-cp35m-macosx_10_10_intel.whl (6.4 MB view details)

Uploaded CPython 3.5m macOS 10.10+ intel

grpcio-1.34.0-cp35-cp35m-linux_armv7l.whl (30.4 MB view details)

Uploaded CPython 3.5m

grpcio-1.34.0-cp27-cp27mu-manylinux2010_x86_64.whl (3.8 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ x86-64

grpcio-1.34.0-cp27-cp27mu-manylinux2010_i686.whl (3.8 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

grpcio-1.34.0-cp27-cp27mu-linux_armv7l.whl (30.2 MB view details)

Uploaded CPython 2.7mu

grpcio-1.34.0-cp27-cp27m-win_amd64.whl (2.9 MB view details)

Uploaded CPython 2.7m Windows x86-64

grpcio-1.34.0-cp27-cp27m-win32.whl (3.0 MB view details)

Uploaded CPython 2.7m Windows x86

grpcio-1.34.0-cp27-cp27m-manylinux2010_x86_64.whl (3.8 MB view details)

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

grpcio-1.34.0-cp27-cp27m-manylinux2010_i686.whl (3.8 MB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

grpcio-1.34.0-cp27-cp27m-macosx_10_10_x86_64.whl (3.6 MB view details)

Uploaded CPython 2.7m macOS 10.10+ x86-64

File details

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

File metadata

  • Download URL: grpcio-1.34.0.tar.gz
  • Upload date:
  • Size: 21.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0.tar.gz
Algorithm Hash digest
SHA256 f98f746cacbaa681de0bcd90d7aa77b440e3e1327a9988f6a2b580d54e27d4c3
MD5 e8f1b58bd622147d13a0fab5632a5004
BLAKE2b-256 359874a430566fdd9d4cc0386322e55306c8928a95da95b1da6fba08641526b5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.34.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 25958bd7c6773e6de79781cc0d6f19d0c82332984dd07ef238889e93485d5afc
MD5 30ed08bef31194db7cff03f7396a8ca7
BLAKE2b-256 3618dd194cf955fd6606fe557d6edeffdbf1c821a407c7ddcba14b7c5feb8186

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.34.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d16f7f5a10bf24640fa639974d409c220e587b3e2fa2620af00d43ba36dafc2c
MD5 c7dc46b446312905c97534b4a3581969
BLAKE2b-256 8ca6dd5bd865c0e00070be2710cc45f863099ca8c708e56d5d0af385606ed91a

See more details on using hashes here.

File details

Details for the file grpcio-1.34.0-cp39-cp39-manylinux2014_x86_64.whl.

File metadata

  • Download URL: grpcio-1.34.0-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9550b7c9d2f11579b484accc6183e02ebe33ce80a0ff15f5c28895df6b3d3108
MD5 a03ee627428d6ff6a5b73db20a9dd5f5
BLAKE2b-256 5739d985fe84362fc396c30e19fdecb3e0413244d7aa40b57a70d3cc5f4c668e

See more details on using hashes here.

File details

Details for the file grpcio-1.34.0-cp39-cp39-manylinux2014_i686.whl.

File metadata

  • Download URL: grpcio-1.34.0-cp39-cp39-manylinux2014_i686.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 43fafebcc2e81d012f7147a0ddf9be69864c40fc4edd9844937eba0020508297
MD5 ff53d8dbbfc0e345eac733d882a1b197
BLAKE2b-256 160c4838e59bdabbc68051bffa5df720414fa97bde9b298a0e8a6a965dce60a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.34.0-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 924d5e8b18942ebea1260e60be7e2bde2a3587ea386190b442790f84180bf372
MD5 4e9b0fcd69a0f741834ea14c991435ac
BLAKE2b-256 e31ff6d7f55dc3d69d7ad4d1dc277392b2bde93a399e540973adf677f327a29e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.34.0-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 57a30f9df0f5342e4dad384e7023b9f88742c325838da977828c37f49eb8940a
MD5 a1fe562a3de4ffea6cc649010ea5c180
BLAKE2b-256 1ce96ccb2ecedee04afd7be1768a61ad3ed6b90578f70cafaa08df2985b726ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.34.0-cp39-cp39-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.9, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 c88ce184973fe2035ffa176eb08cd492db090505e6b1ddc68b5cc1e0b01a07a0
MD5 1d32cd9b498b013ab482bf6d47f8c586
BLAKE2b-256 474aaf33057fd9ebac6633fd98a01ad4c28bdcc7916bb846a0a066c57df18231

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.34.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e95bda60c584b3deb5c37babb44d4300cf4bf3a6c43198a244ddcaddca3fde3a
MD5 dec55cb971f3bd0286c74d80a203dab2
BLAKE2b-256 5add3bdc9abe3f8e1457292c369bb47f77a98c17f3fe4ac535f6a3500cff4c79

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.34.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 dea35dcf09aee91552cb4b3e250efdbcb79564b5b5517246bcbead8d5871e291
MD5 da5161a4a3c22147b4ad73ebdf1699f6
BLAKE2b-256 c306d0035d70c2ce05b575229ddce8172fe7b20805f80bbdc3e661375b108364

See more details on using hashes here.

File details

Details for the file grpcio-1.34.0-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

  • Download URL: grpcio-1.34.0-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a1024006fe61ee7e43e7099faf08f4508ea0c944a1558e8d715a5b4556937ace
MD5 8835c4a8c335403e3ca273cfb855af20
BLAKE2b-256 45ddf87383954f1d9940db899eb69c72350c1065a4331b397f7da62f221867f2

See more details on using hashes here.

File details

Details for the file grpcio-1.34.0-cp38-cp38-manylinux2014_i686.whl.

File metadata

  • Download URL: grpcio-1.34.0-cp38-cp38-manylinux2014_i686.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 95de4ad9ae39590668e3330d414253f672aedd46cc107d7f71b4a2268f3d6066
MD5 496e09b43c153efa64641dbb725a9bbf
BLAKE2b-256 7fe2ca4476eb9d56f3dedc45d76a999b0a2454e5006c3fd3f3704fb10c36de14

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.34.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5e8e6035d4f9ab856ab437e381e652b31dfd42443d2243d45bdf4b90adaf3559
MD5 b6a0bbb046d3ee4c6853177276499846
BLAKE2b-256 0d887a630e5cc639456b3476b42deecb18e27c1375249414933b9cf9529d620b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.34.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 69127393fc3513da228bc3908914df2284923e0eacf8d73f21ad387317450317
MD5 c50e46a71f8b18b55de48f4b32757096
BLAKE2b-256 1ae73d5c2ae7e20ec6c179c2f2c9fcf8ca92b622795235eac544347c159b5bd6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.34.0-cp38-cp38-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.8, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 bd7634f8c49c8467fec5fd9e0d1abb205b0aa61670ff0113ef835ca6548aad3d
MD5 63b16ed20d9e9d5b7a0c3e720864deb8
BLAKE2b-256 c9cd5e7a1bae2207e6cdb9aee9022d77e02d08537031413308c591f5394035bb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.34.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 6fafdba42c26bbdf78948c09a93a8b3a8a509c66c6b4324bc1fb360bf4e82b9d
MD5 0a334dc33b690358766c07f292481486
BLAKE2b-256 4ae35568a6987645599579667f34606f098bb9be9c7709567eaeb62009da9b52

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.34.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 50c4f10e7deff96d197bc6d1988c2a5a0bc6252bbd31d7fb374ce8923f937e7a
MD5 d7e5ae23705cf5c3dee4ce242ff37029
BLAKE2b-256 9f1a365a754ad47d7f0a7b1547a002d200c5ce7688fe6255bcebccb5647eb748

See more details on using hashes here.

File details

Details for the file grpcio-1.34.0-cp37-cp37m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: grpcio-1.34.0-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2f54046ca2a81ff45ec8f6d3d7447ad562adb067c3640c35354e440fd771b625
MD5 b71ee256e19486014064b773aaef7959
BLAKE2b-256 662673d55ae900ba2cc74a3f32743517a49b836b75249c925cb56e799dc5277f

See more details on using hashes here.

File details

Details for the file grpcio-1.34.0-cp37-cp37m-manylinux2014_i686.whl.

File metadata

  • Download URL: grpcio-1.34.0-cp37-cp37m-manylinux2014_i686.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bbd3522f821fb5d01049db214fb9f949a8b2d92761c2780a20ff73818efd5360
MD5 a8c00817ca8e8db1b2747fa4fa684af9
BLAKE2b-256 2d668188dfce5d8ba6f469af20e52aad48028340389d2d7170ce84ee97dc9f90

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.34.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 98b0b6e44c451093354a38b620e6e0df958b0710abd6a0ddd84da84424bce003
MD5 182bce7d45b4202cb782e3de71d9718b
BLAKE2b-256 78beacd8c224483c6162878614a44f5d9eef32a21aaeab3e01d6c76b5776c340

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.34.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e238a554f29d90b0e7fca15e8119b9a7c5f88faacbf9b982751ad54d639b57f8
MD5 4e95cae5654336d6d76787a87ae25662
BLAKE2b-256 9d9d190af3556565bface7792e741d04bbef567544e8a452d31c4a656e7b6f50

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.34.0-cp37-cp37m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.7m, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 8d92e884f6d67b9a2a4514631d3c9836281044caedb5fd34d4ce2bbec138c87d
MD5 25fe1ac229d1d73b9824bfba20414954
BLAKE2b-256 46a2a7cf560b6f35b937a759fc8b2309ebe2132e3efd898be1b335c84f7e3835

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.34.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 beef6be49ada569edf3b73fd4eb57d6c2af7e10c0c82a210dbe51de7c4a1ed53
MD5 32ee151c2fbb51c533f94acc3a8cbdbd
BLAKE2b-256 4203b56d71f44517a46a3536171852062a7ea916109425e69a0effd1d705fc88

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.34.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 49da07ae43c552280b8b4c70617f9b589588404c2545d6eba2c55179b3d836af
MD5 1bf9f933263978af07777fcf5027e76c
BLAKE2b-256 80e158e503dd3a8689c87e8fa15beeaf9c55716edee453c9bbcbda006410e4dd

See more details on using hashes here.

File details

Details for the file grpcio-1.34.0-cp36-cp36m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: grpcio-1.34.0-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 72b6a89aabf937d706946230f5aa13bdf7d2a42874810fa54436c647577b543e
MD5 3016b78f8c8cfa5120c049f7002a99b5
BLAKE2b-256 91ab8a7b37278fb59f3688af01cd069a5a4d2f3383eea2a2f78ddea4c7be047a

See more details on using hashes here.

File details

Details for the file grpcio-1.34.0-cp36-cp36m-manylinux2014_i686.whl.

File metadata

  • Download URL: grpcio-1.34.0-cp36-cp36m-manylinux2014_i686.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 20606ec7c265f81c5a0226f69842dc8dde66d921968ab9448e59d440cf98bebf
MD5 60fe06103adae3f19b31a7e040e2dd39
BLAKE2b-256 5d9b3456e4ec1300dba7b5e289e6e9cb6794e354a046b6641c14705a5bc72c1e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.34.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fa834f4c70b9df83d5af610097747c224513d59af1f03e8c06bca9a7d81fd1a3
MD5 ab2be1f3f0090235ee371e9e6a54f983
BLAKE2b-256 316431e4975571369c916f1529ee34c09769a187c91b2a0b96f919c7f90b7c24

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.34.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c89b6a3eca8eae10eea78896ccfdc9d04aa2f7b2ee96de20246e5c96494c68f5
MD5 0cc8887b9e4e14e0d46e0482d33555cc
BLAKE2b-256 7319877d77b077bae426b7ae8eaa39d6c41c23dbb0a1a4ee4ac7224556459f98

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.34.0-cp36-cp36m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.6m, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 bda0f52eb1279a7119526df2ef33ea2808691120daf9effaf60ca0c07f76058a
MD5 707b910bb07fbfbe94e4fe4b0a85306c
BLAKE2b-256 4874ab8a7613a554eae579db62a2d5c7f1e9362f8e5013c8ccfebc758189c082

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.34.0-cp36-cp36m-linux_armv7l.whl
  • Upload date:
  • Size: 30.5 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 5d8108b240fd5b8a0483f95ab2651fe2d633311faae93a12938ea06cf61a5efd
MD5 07c109bb8ef542f2f9da870ba762f4b2
BLAKE2b-256 dc0f2a4112fcd59892dbf29c632a5933a34b7be5afc0c4548f3045da065342f8

See more details on using hashes here.

File details

Details for the file grpcio-1.34.0-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: grpcio-1.34.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 2ea864ae3d3abc99d3988d1d27dee3f6350b60149ccf810a89cd9a9d02a675d6
MD5 c290460f833a94f60be6b4112e7bdcf3
BLAKE2b-256 be379e83c708ab2a6b6117cbf9bda55e8b1821fdaddde941da91dd3f378acbec

See more details on using hashes here.

File details

Details for the file grpcio-1.34.0-cp35-cp35m-win32.whl.

File metadata

  • Download URL: grpcio-1.34.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 205eda06d8aeffc87a1e29ff1f090546adf0b6e766378cc4c13686534397fdb4
MD5 d5273c06558480f693a88c2023919c2c
BLAKE2b-256 689209a7ae71930518e8fb89abaa0513c74a100cd59125fde537f847b2806c41

See more details on using hashes here.

File details

Details for the file grpcio-1.34.0-cp35-cp35m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: grpcio-1.34.0-cp35-cp35m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 32fbc78d558d9468a4b16f79f4130daec8e431bc7a3b1775b0e98f09a7ab45a2
MD5 7f5bb8f48fec64b5342014fe0ede231a
BLAKE2b-256 af69f1d379b2593273b2a52158cbe0a15ed26507bc5b05f57f6dca5b51ceaa15

See more details on using hashes here.

File details

Details for the file grpcio-1.34.0-cp35-cp35m-manylinux2014_i686.whl.

File metadata

  • Download URL: grpcio-1.34.0-cp35-cp35m-manylinux2014_i686.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dfa098a6ff8d1b68ed7bd655150ee91f57c29042c093ff51113176aded3f0071
MD5 406398b361d68cb3cb8c4735ab8a6d9c
BLAKE2b-256 6e8e0087def8905ae165b2c1cfbdbcdc11eaeefccb23b837b0ed9a83e4def419

See more details on using hashes here.

File details

Details for the file grpcio-1.34.0-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio-1.34.0-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9579f22222ac89ceee64c1101cced6434d9f6b12078b43ece0f9d8ebdb657f73
MD5 8fef85634b302cbf781b5f0892c70e35
BLAKE2b-256 0d890cdb3818d5ff3af9ea1e60cd48d352f0e00ab09420f2b4673de536ec8086

See more details on using hashes here.

File details

Details for the file grpcio-1.34.0-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio-1.34.0-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 923a3b18badc3749c4d715216934f62f46a818790e325ece6184d07e7d6c7f73
MD5 547e7ec0d011eee60ec2c53d499bf932
BLAKE2b-256 03ba4bc36e3fc18e39ac4379f79a5c87dc9fd00a9727b25643d3afd88b6ca259

See more details on using hashes here.

File details

Details for the file grpcio-1.34.0-cp35-cp35m-macosx_10_10_intel.whl.

File metadata

  • Download URL: grpcio-1.34.0-cp35-cp35m-macosx_10_10_intel.whl
  • Upload date:
  • Size: 6.4 MB
  • Tags: CPython 3.5m, macOS 10.10+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0-cp35-cp35m-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 5b105adb44486fb594b8d8142b5d4fbe50cb125c77ac7d270f5d0277ce5c554a
MD5 0ccd4663d9b066950e72c92648f1d959
BLAKE2b-256 c9709f2a205d316603eaacb573a2610e9a90b08931e8494b43465be0e39398b8

See more details on using hashes here.

File details

Details for the file grpcio-1.34.0-cp35-cp35m-linux_armv7l.whl.

File metadata

  • Download URL: grpcio-1.34.0-cp35-cp35m-linux_armv7l.whl
  • Upload date:
  • Size: 30.4 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 e69ac6fc9096bbb43f5276655661db746233cd320808e0d302198eb43dc7bd04
MD5 cb4db0d4f331075f209ea73c297924dd
BLAKE2b-256 ab9db0e5080539425373c74c502c108a370ace106d1e3fb4f7bf7cd7ce6da232

See more details on using hashes here.

File details

Details for the file grpcio-1.34.0-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio-1.34.0-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 32ad56f6d3d7e699f9a0d62719f2de9092e79f444d875d70f58cf7f8bb19684c
MD5 74acf2cbd07a1ce091e96453b7fffbcf
BLAKE2b-256 e7ba69f196a47f7ffc25a00149ca3039f7d99089ecc34abc5d3f2ccdbd1d4a22

See more details on using hashes here.

File details

Details for the file grpcio-1.34.0-cp27-cp27mu-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio-1.34.0-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4a2c85cd4a67c36fe12535fe32eb336635843d1eb31d3fa301444e60a8df9c90
MD5 c352fa38e2dc48579a20755f7ce0447d
BLAKE2b-256 b0ac17383f4fcc31fc7b68365da32cd3d39db978d22f093c9df61d30f5f8947d

See more details on using hashes here.

File details

Details for the file grpcio-1.34.0-cp27-cp27mu-linux_armv7l.whl.

File metadata

  • Download URL: grpcio-1.34.0-cp27-cp27mu-linux_armv7l.whl
  • Upload date:
  • Size: 30.2 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 f2e4d64675351a058f9cb35fe390ca0956bd2926171bfb7c87596a1ee10ff6ba
MD5 3235f74f63bc64b01778870f6c4a371b
BLAKE2b-256 099b2805d76739a57f7119e81f6239e92e5f52d046d77b936663142fff7c1953

See more details on using hashes here.

File details

Details for the file grpcio-1.34.0-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: grpcio-1.34.0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 2fd4a80f267aa258f5a74df5fe243eff80299a4f5b356c1da53f6f5793bbbf4b
MD5 9622a3ae7bd0fda7d720f4eab7bdbba1
BLAKE2b-256 d99fdc1239dd41897fa10fc67426dc3a0991f38204ef10834edc7eaddeff2085

See more details on using hashes here.

File details

Details for the file grpcio-1.34.0-cp27-cp27m-win32.whl.

File metadata

  • Download URL: grpcio-1.34.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 dc45f5750ce50f34f20a0607efae5c797d01681a44465b8287bebef1e9847d5b
MD5 67f15f2b8683bc0bfa49fdcd1b0a577b
BLAKE2b-256 ac3fa29d8c3fbf1d525cd0b988c47aa4110660ab9f432f6ea116dbc54d5cbe24

See more details on using hashes here.

File details

Details for the file grpcio-1.34.0-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio-1.34.0-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a403ed4d8fcc441a2c2ec9ede838b0ae5f9da996d950cf2ff9f82242b496e0a7
MD5 df2efa852958c603a6d8082a42cf2e2d
BLAKE2b-256 21620fed65bb767417a50598346b21fc6fe3107e20bd6e5d2216f766014c8985

See more details on using hashes here.

File details

Details for the file grpcio-1.34.0-cp27-cp27m-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio-1.34.0-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 843436e69c37eb45b0285fa42f7acc06d147f2e9c1d515b0f901e94d40107e79
MD5 4c251a9381198373dfa0770081dde41e
BLAKE2b-256 99586ede72405e43ac7d516d7cf408b061f216f05b98a6feee7a36e68dab9ec8

See more details on using hashes here.

File details

Details for the file grpcio-1.34.0-cp27-cp27m-macosx_10_10_x86_64.whl.

File metadata

  • Download URL: grpcio-1.34.0-cp27-cp27m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 2.7m, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-1.34.0-cp27-cp27m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 e2ffa46db9103706640c74886ac23ed18d1487a8523cc128da239e1d5a4e3301
MD5 7775628cf6beda0042aead4b836807fd
BLAKE2b-256 3bc59dbdef7556033f01a1fbb4f578bb4c3e0704235d05cf41a72f4a06d0a51f

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