Skip to main content

HTTP/2-based RPC framework

Project description

Package for gRPC Python.

Supported Python Versions

Python >= 3.5

Deprecated Python Versions

Python == 2.7. Python 2.7 support will be removed on January 1, 2020.

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 $(curl -L https://grpc.io/release) 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.21.1rc1.tar.gz (13.9 MB view details)

Uploaded Source

Built Distributions

grpcio-1.21.1rc1-cp37-cp37m-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.7m Windows x86-64

grpcio-1.21.1rc1-cp37-cp37m-win32.whl (1.3 MB view details)

Uploaded CPython 3.7m Windows x86

grpcio-1.21.1rc1-cp37-cp37m-manylinux1_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.7m

grpcio-1.21.1rc1-cp37-cp37m-manylinux1_i686.whl (2.1 MB view details)

Uploaded CPython 3.7m

grpcio-1.21.1rc1-cp37-cp37m-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

grpcio-1.21.1rc1-cp36-cp36m-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.6m Windows x86-64

grpcio-1.21.1rc1-cp36-cp36m-win32.whl (1.3 MB view details)

Uploaded CPython 3.6m Windows x86

grpcio-1.21.1rc1-cp36-cp36m-manylinux1_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.6m

grpcio-1.21.1rc1-cp36-cp36m-manylinux1_i686.whl (2.1 MB view details)

Uploaded CPython 3.6m

grpcio-1.21.1rc1-cp36-cp36m-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

grpcio-1.21.1rc1-cp36-cp36m-linux_armv7l.whl (11.2 MB view details)

Uploaded CPython 3.6m

grpcio-1.21.1rc1-cp35-cp35m-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.5m Windows x86-64

grpcio-1.21.1rc1-cp35-cp35m-win32.whl (1.3 MB view details)

Uploaded CPython 3.5m Windows x86

grpcio-1.21.1rc1-cp35-cp35m-manylinux1_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.5m

grpcio-1.21.1rc1-cp35-cp35m-manylinux1_i686.whl (2.1 MB view details)

Uploaded CPython 3.5m

grpcio-1.21.1rc1-cp35-cp35m-macosx_10_7_intel.whl (3.8 MB view details)

Uploaded CPython 3.5m macOS 10.7+ intel

grpcio-1.21.1rc1-cp35-cp35m-linux_armv7l.whl (11.1 MB view details)

Uploaded CPython 3.5m

grpcio-1.21.1rc1-cp34-cp34m-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.4m Windows x86-64

grpcio-1.21.1rc1-cp34-cp34m-win32.whl (1.6 MB view details)

Uploaded CPython 3.4m Windows x86

grpcio-1.21.1rc1-cp34-cp34m-manylinux1_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.4m

grpcio-1.21.1rc1-cp34-cp34m-manylinux1_i686.whl (2.1 MB view details)

Uploaded CPython 3.4m

grpcio-1.21.1rc1-cp34-cp34m-macosx_10_7_intel.whl (3.7 MB view details)

Uploaded CPython 3.4m macOS 10.7+ intel

grpcio-1.21.1rc1-cp34-cp34m-linux_armv7l.whl (11.1 MB view details)

Uploaded CPython 3.4m

grpcio-1.21.1rc1-cp27-cp27mu-manylinux1_x86_64.whl (2.2 MB view details)

Uploaded CPython 2.7mu

grpcio-1.21.1rc1-cp27-cp27mu-manylinux1_i686.whl (2.1 MB view details)

Uploaded CPython 2.7mu

grpcio-1.21.1rc1-cp27-cp27mu-linux_armv7l.whl (11.0 MB view details)

Uploaded CPython 2.7mu

grpcio-1.21.1rc1-cp27-cp27m-win_amd64.whl (1.6 MB view details)

Uploaded CPython 2.7m Windows x86-64

grpcio-1.21.1rc1-cp27-cp27m-win32.whl (1.6 MB view details)

Uploaded CPython 2.7m Windows x86

grpcio-1.21.1rc1-cp27-cp27m-manylinux1_x86_64.whl (2.2 MB view details)

Uploaded CPython 2.7m

grpcio-1.21.1rc1-cp27-cp27m-manylinux1_i686.whl (2.1 MB view details)

Uploaded CPython 2.7m

grpcio-1.21.1rc1-cp27-cp27m-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

Details for the file grpcio-1.21.1rc1.tar.gz.

File metadata

  • Download URL: grpcio-1.21.1rc1.tar.gz
  • Upload date:
  • Size: 13.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1rc1.tar.gz
Algorithm Hash digest
SHA256 8a7e20d9dd76edbe2486d8bb949de60890e56edebc0c23263dace195e460d26d
MD5 4ab231eb768432876929f149a1f0a332
BLAKE2b-256 f495ab783dd3646a5a340a30f9588988fd7773094c8b8c196c3a8413f0289f49

See more details on using hashes here.

File details

Details for the file grpcio-1.21.1rc1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: grpcio-1.21.1rc1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 bef69ea194b65faa2912a365cdda714d3ba1c9371e1241fbc910d12cdfd93ade
MD5 d1cda9f1f28d55afff8632f256f00edd
BLAKE2b-256 f01e5b52420b5760823ffcf38df576dddde0ba8571703ceb84f7dde2b2a04148

See more details on using hashes here.

File details

Details for the file grpcio-1.21.1rc1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: grpcio-1.21.1rc1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1rc1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ad394c1e3d5f575c37b722756ae6e384b80bbc84d58a26842106ed7c7968eb46
MD5 4e40d5d68cc5efc3a8665406508c7b2a
BLAKE2b-256 c7c6e7100f12230a7befca9ff0a8dcadaafa14885ed8a00b235d8f9d148a774c

See more details on using hashes here.

File details

Details for the file grpcio-1.21.1rc1-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: grpcio-1.21.1rc1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1rc1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d36dd6e8913ea422c6d0dc871c35525752ddc24588d69688974f595621997ac5
MD5 fee751a8f3ff7cea8316bec885b0829b
BLAKE2b-256 d3ddbb70fb2bca3db37b6b461d2b98be600c05df7e0b9b2aa92fb68f6318c517

See more details on using hashes here.

File details

Details for the file grpcio-1.21.1rc1-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: grpcio-1.21.1rc1-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1rc1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 24efa0da9487f9c1f20a2060ff81d105f4a5568be3eebc1f4413feed6993c6c6
MD5 7ce7396f78bf0f32d88aa83d0ebc867b
BLAKE2b-256 7681212e15b9676a178d75906ad56aa5649bd43343c537f5a01ff2c72de09d55

See more details on using hashes here.

File details

Details for the file grpcio-1.21.1rc1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio-1.21.1rc1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1rc1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 eb89a3c9769fbac58f7b8394c92e65bf529a93eb17b08e9f8054e6aac3c9fd8c
MD5 046af867bee7cbbb7ad55e1e80da8138
BLAKE2b-256 de23fe55653ed0764ff7e5b9ec69fbe065671b5124c878785aeddaccc61be61f

See more details on using hashes here.

File details

Details for the file grpcio-1.21.1rc1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: grpcio-1.21.1rc1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1rc1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 cd5172844f596185d3d20a4fcd54d2728bb6ceede5f6c78c7fc435ccf0afa0d0
MD5 0034c2ea6215c41599b642ac2a7dbb02
BLAKE2b-256 6782e40d9d5286fcb3ef82fd0bc921b079c20a2408caa02e7cd527bddcae18f9

See more details on using hashes here.

File details

Details for the file grpcio-1.21.1rc1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: grpcio-1.21.1rc1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1rc1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 c0188266955f889202c97872a012074980bcbc9c83f25b542faf052445972757
MD5 e7332f25228aaf85455524502a0111a5
BLAKE2b-256 f9f43a35e3ffd7baba128465482cacce659f823fb18d87d9612e34600e086cee

See more details on using hashes here.

File details

Details for the file grpcio-1.21.1rc1-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: grpcio-1.21.1rc1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1rc1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1d33b3a9f00f1466fd1aa1988b37db63dadd26785779cab56c7bc2cddcbfe42b
MD5 ff97fd971b1402c0bc0c32c6024bfda3
BLAKE2b-256 5a233fbc004b2287af50979da7222c07fb59394047cfdf10999e8ae5e69f761f

See more details on using hashes here.

File details

Details for the file grpcio-1.21.1rc1-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: grpcio-1.21.1rc1-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1rc1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e12af7c09baf3d07180c37ed148fc8b8a1bd29b4bb160e16a57a4e681c2c6b31
MD5 f9516ac06457f09fd9afc4c67c8a7063
BLAKE2b-256 bdd774d147b56cd20b1562c00e8c0e4a63d223a3c188d484612f84e40fa05126

See more details on using hashes here.

File details

Details for the file grpcio-1.21.1rc1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio-1.21.1rc1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1rc1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bbf8f4ec6dbb0393079446901a0be33c594c3f728a8d950630f900a8e59e15af
MD5 d50886d885ea736b9bc3600af77f5e73
BLAKE2b-256 2713b3f1af2914e280df972e65d9e1feafb45de317ac6a8fbeb06b4333c70d4b

See more details on using hashes here.

File details

Details for the file grpcio-1.21.1rc1-cp36-cp36m-linux_armv7l.whl.

File metadata

  • Download URL: grpcio-1.21.1rc1-cp36-cp36m-linux_armv7l.whl
  • Upload date:
  • Size: 11.2 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1rc1-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 8b21af3ae20c5483003221ad9073f3e08213a3c5a1f986b01c77cc7fabfacc19
MD5 8eff6078e010d23a2ce75ac0f6d0ab58
BLAKE2b-256 4f2b853730355f071c34830b7ff7a24406544d8811d62dfb2c28146f650f9df9

See more details on using hashes here.

File details

Details for the file grpcio-1.21.1rc1-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: grpcio-1.21.1rc1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1rc1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 ca00c39b206daee59f7941d49fd9230215e31f85b25e6a6692465a5e64c97198
MD5 bfdc0a0b46ffd5242926e140363f3e56
BLAKE2b-256 ecc2c7fa5cdf4ef841b7dc50d94efc27b64e1384d897561bf6f0c1734cca2fa2

See more details on using hashes here.

File details

Details for the file grpcio-1.21.1rc1-cp35-cp35m-win32.whl.

File metadata

  • Download URL: grpcio-1.21.1rc1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1rc1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 886cb90ff8ac900c1e4f75b3d9fc1196babbb6b2115e37610a33542ee7ff0bae
MD5 c22f5096b7e5e24b3551e6eb66e03a97
BLAKE2b-256 b780555fca0543c2c85b96d6d3773eb6b12511293bf9e734ca67c60edfcd0e7c

See more details on using hashes here.

File details

Details for the file grpcio-1.21.1rc1-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: grpcio-1.21.1rc1-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1rc1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5301b2a3e54451b1627aa28e7963d81b241fe79b417fa367a5e8e8e5111dd22e
MD5 6906c76673a97e764736da646701b63c
BLAKE2b-256 a8fe2df9d32934c68bc9413018785635aef55da5f15665d0c0aa7ed98bb6b50c

See more details on using hashes here.

File details

Details for the file grpcio-1.21.1rc1-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: grpcio-1.21.1rc1-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1rc1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a003b86b2422273e83d100db6915ff7539b5fc8018682fc30519be381a8e6084
MD5 f6cae365ce532bee52c50bd8e1a83fa7
BLAKE2b-256 4bfb2d09b48800a8bb02633eb0e772c0c031e0bbe17819d26406cb1a593de7a6

See more details on using hashes here.

File details

Details for the file grpcio-1.21.1rc1-cp35-cp35m-macosx_10_7_intel.whl.

File metadata

  • Download URL: grpcio-1.21.1rc1-cp35-cp35m-macosx_10_7_intel.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.5m, macOS 10.7+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1rc1-cp35-cp35m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 6d6fee99b326d6801fb0af203259da6478d4b2322443a968e3ee2bea8b68be80
MD5 f6f2aa52339ef5ba3241bb72024c2eef
BLAKE2b-256 179ec6fcd6d90a4ac736e8749b01178d80ed417939547dbcd775e028e09ac721

See more details on using hashes here.

File details

Details for the file grpcio-1.21.1rc1-cp35-cp35m-linux_armv7l.whl.

File metadata

  • Download URL: grpcio-1.21.1rc1-cp35-cp35m-linux_armv7l.whl
  • Upload date:
  • Size: 11.1 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1rc1-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 9e31b61b2e764c3a370b9fe7de93ac22e6c3ffba058503d2bbfad1c86a7a69e2
MD5 3a2c0f49b9b60c600b3db68ac20e19df
BLAKE2b-256 755507825d82406922829f944be6af60fc2e0e2c9886e67248ddce545e130676

See more details on using hashes here.

File details

Details for the file grpcio-1.21.1rc1-cp34-cp34m-win_amd64.whl.

File metadata

  • Download URL: grpcio-1.21.1rc1-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.4m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1rc1-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 27a046a7f6a46edc5fe2285e92090ac91552bfce4d9ab0bc79ac08b2cf67bda3
MD5 29d5b324dc2d85b80309e6bcbf849d43
BLAKE2b-256 fce3dfb67c45344cbe52066ffdea71dfa491fd87bfa05b8eb65fad6dd349a2a7

See more details on using hashes here.

File details

Details for the file grpcio-1.21.1rc1-cp34-cp34m-win32.whl.

File metadata

  • Download URL: grpcio-1.21.1rc1-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.4m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1rc1-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 e31477ec444a0e1c1dcfad273d6173f1cfe0f1d81ada71159f015bf7ae7215f5
MD5 a6f1b1b236f4cdaf20f01d2bf6f21f53
BLAKE2b-256 638b43d43264e785403a6d2b3790af1b86392e9f375902e0b69346048ffe58d9

See more details on using hashes here.

File details

Details for the file grpcio-1.21.1rc1-cp34-cp34m-manylinux1_x86_64.whl.

File metadata

  • Download URL: grpcio-1.21.1rc1-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1rc1-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 68e2e9d7886279763c8264b9d971d8372f10b76802d06c67f967d76af89167c3
MD5 de6138c1b0fe31c20ff5c165ef1f6c8e
BLAKE2b-256 dc8ef735ba409c55598110169f99e7b3a66c1f6032464b95cd8dd738a476648c

See more details on using hashes here.

File details

Details for the file grpcio-1.21.1rc1-cp34-cp34m-manylinux1_i686.whl.

File metadata

  • Download URL: grpcio-1.21.1rc1-cp34-cp34m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1rc1-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b76e3811112849b1ac9c25854f651c2d1485c948bf2a5024ec25b366fb8efe70
MD5 d2c9aba5d9f08e11ddf69b926173767d
BLAKE2b-256 1c67fa59c420d3d708a6fb20dacc21fe415bb60c0ad44fda338806dc3fdcbf46

See more details on using hashes here.

File details

Details for the file grpcio-1.21.1rc1-cp34-cp34m-macosx_10_7_intel.whl.

File metadata

  • Download URL: grpcio-1.21.1rc1-cp34-cp34m-macosx_10_7_intel.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.4m, macOS 10.7+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1rc1-cp34-cp34m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 7e387a03590e8e31b6d47cb9cba31099ee06795ef9ddfec3a38482c4148732fc
MD5 184388ad49f2011dd3b5ae20bcdbaf46
BLAKE2b-256 a72cd59ad4611dcf767145eb1d42ff93feeaf65465f1ec3b79395208d73c1c60

See more details on using hashes here.

File details

Details for the file grpcio-1.21.1rc1-cp34-cp34m-linux_armv7l.whl.

File metadata

  • Download URL: grpcio-1.21.1rc1-cp34-cp34m-linux_armv7l.whl
  • Upload date:
  • Size: 11.1 MB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1rc1-cp34-cp34m-linux_armv7l.whl
Algorithm Hash digest
SHA256 73fc5ccce40f8fc35b48fc80c3808d3041f0563ccb6a8b579fc1cda1b8b2926f
MD5 da29a7f6ad9988b246554f00af9a3a64
BLAKE2b-256 f69cdb18e3ead2ce720a55d88c7c8ae847e4a30a845b8690fa1eb52bc7228004

See more details on using hashes here.

File details

Details for the file grpcio-1.21.1rc1-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: grpcio-1.21.1rc1-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1rc1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8693b7cbaffc61e0fb6af71a5313415b802972e4f13bdc19529936cc39c46fc8
MD5 2be4e38901c56773c9695dd6aa28dab8
BLAKE2b-256 b9344af875649bc342b88e558eb6294796c18935812b6047391d1d3b1fbe48ac

See more details on using hashes here.

File details

Details for the file grpcio-1.21.1rc1-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: grpcio-1.21.1rc1-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1rc1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 73361c6e517d3d989b92b075c3fdd43f833751092991ef2b3cb02f17aca441f4
MD5 645c78b4caa326d8bedb2ffec506e099
BLAKE2b-256 4c453f9640dd7af024012352c8f72a7c297eb033d141554735e3ee13bf519c63

See more details on using hashes here.

File details

Details for the file grpcio-1.21.1rc1-cp27-cp27mu-linux_armv7l.whl.

File metadata

  • Download URL: grpcio-1.21.1rc1-cp27-cp27mu-linux_armv7l.whl
  • Upload date:
  • Size: 11.0 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1rc1-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 40c7b56a1f12f715d7ce73401b426c40ac795a6c8d9a2dae5dd4caae53adf950
MD5 a9472218372e275bd3c7e339f0eabff7
BLAKE2b-256 a21f59e5447d1ebfd4893fff1395e0c95de428938af3c366a507eeddb8419b32

See more details on using hashes here.

File details

Details for the file grpcio-1.21.1rc1-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: grpcio-1.21.1rc1-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1rc1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 56b606e132d056eea8b918abbe0459668959a3db72523217135682d4cb0082ff
MD5 47e702768df75bc0e5da418ab596fe3c
BLAKE2b-256 20916ceca514c403a36a969c5111535fadecc0e4af3d1027a12c86d160b92e93

See more details on using hashes here.

File details

Details for the file grpcio-1.21.1rc1-cp27-cp27m-win32.whl.

File metadata

  • Download URL: grpcio-1.21.1rc1-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1rc1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 c2cbee97303686364449686718390e246aa54ddaed2a56d70adc9ef21393449c
MD5 ff57abac7fa51ecb186ce039d9e5a9d2
BLAKE2b-256 74ac2b65f7c15aed9da949b21b479029886831a91b91bbba7201716293e307b0

See more details on using hashes here.

File details

Details for the file grpcio-1.21.1rc1-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: grpcio-1.21.1rc1-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1rc1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8d32e6be087920a5da5170e3b2879516260864455016f2496eb701c31196ea5d
MD5 624aecc5cb11540a995b7d34d6df0b7d
BLAKE2b-256 f4ca3cbc1df49ad57ef7c637b59db37b634910fb4c0bc893f8c0628e8c4d3dd8

See more details on using hashes here.

File details

Details for the file grpcio-1.21.1rc1-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: grpcio-1.21.1rc1-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1rc1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2c75a9e9fb9efa1bcf5977bc20236b1f87376de4177733207766b7bd1e614e90
MD5 e7fae8ea2e5927b811cfc7ef4cce9702
BLAKE2b-256 c44c4945728902b994acf492ae6b877e7be22b2c1f0e4feb60ec85815f051096

See more details on using hashes here.

File details

Details for the file grpcio-1.21.1rc1-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio-1.21.1rc1-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1rc1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b4c4498c3b7711bb2b793856c64cebc428131199db84509a8e8c36ecb8191a90
MD5 5fc2f4198aa41bfeb9dbce917959ba98
BLAKE2b-256 6fa4fce26f22bfbcd602c78ab1d75a603e593b0db6649d55e9bfcc1bdb6300ae

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