Skip to main content

HTTP/2-based RPC framework

Project description

Package for gRPC Python.

Installation

gRPC Python is available for Linux, macOS, and Windows.

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!

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

Uploaded Source

Built Distributions

grpcio-1.16.0-cp37-cp37m-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.7m Windows x86-64

grpcio-1.16.0-cp37-cp37m-win32.whl (1.2 MB view details)

Uploaded CPython 3.7m Windows x86

grpcio-1.16.0-cp37-cp37m-manylinux1_x86_64.whl (9.7 MB view details)

Uploaded CPython 3.7m

grpcio-1.16.0-cp37-cp37m-manylinux1_i686.whl (9.2 MB view details)

Uploaded CPython 3.7m

grpcio-1.16.0-cp37-cp37m-macosx_10_9_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

grpcio-1.16.0-cp36-cp36m-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.6m Windows x86-64

grpcio-1.16.0-cp36-cp36m-win32.whl (1.2 MB view details)

Uploaded CPython 3.6m Windows x86

grpcio-1.16.0-cp36-cp36m-manylinux1_x86_64.whl (9.7 MB view details)

Uploaded CPython 3.6m

grpcio-1.16.0-cp36-cp36m-manylinux1_i686.whl (9.3 MB view details)

Uploaded CPython 3.6m

grpcio-1.16.0-cp36-cp36m-macosx_10_7_intel.whl (2.0 MB view details)

Uploaded CPython 3.6m macOS 10.7+ intel

grpcio-1.16.0-cp36-cp36m-linux_armv7l.whl (8.7 MB view details)

Uploaded CPython 3.6m

grpcio-1.16.0-cp35-cp35m-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.5m Windows x86-64

grpcio-1.16.0-cp35-cp35m-win32.whl (1.2 MB view details)

Uploaded CPython 3.5m Windows x86

grpcio-1.16.0-cp35-cp35m-manylinux1_x86_64.whl (9.7 MB view details)

Uploaded CPython 3.5m

grpcio-1.16.0-cp35-cp35m-manylinux1_i686.whl (9.2 MB view details)

Uploaded CPython 3.5m

grpcio-1.16.0-cp35-cp35m-macosx_10_7_intel.whl (2.0 MB view details)

Uploaded CPython 3.5m macOS 10.7+ intel

grpcio-1.16.0-cp35-cp35m-linux_armv7l.whl (8.7 MB view details)

Uploaded CPython 3.5m

grpcio-1.16.0-cp34-cp34m-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.4m Windows x86-64

grpcio-1.16.0-cp34-cp34m-win32.whl (1.5 MB view details)

Uploaded CPython 3.4m Windows x86

grpcio-1.16.0-cp34-cp34m-manylinux1_x86_64.whl (9.7 MB view details)

Uploaded CPython 3.4m

grpcio-1.16.0-cp34-cp34m-manylinux1_i686.whl (9.3 MB view details)

Uploaded CPython 3.4m

grpcio-1.16.0-cp34-cp34m-macosx_10_7_intel.whl (2.1 MB view details)

Uploaded CPython 3.4m macOS 10.7+ intel

grpcio-1.16.0-cp34-cp34m-linux_armv7l.whl (8.7 MB view details)

Uploaded CPython 3.4m

grpcio-1.16.0-cp27-cp27mu-manylinux1_x86_64.whl (9.6 MB view details)

Uploaded CPython 2.7mu

grpcio-1.16.0-cp27-cp27mu-manylinux1_i686.whl (9.1 MB view details)

Uploaded CPython 2.7mu

grpcio-1.16.0-cp27-cp27mu-linux_armv7l.whl (8.6 MB view details)

Uploaded CPython 2.7mu

grpcio-1.16.0-cp27-cp27m-win_amd64.whl (1.5 MB view details)

Uploaded CPython 2.7m Windows x86-64

grpcio-1.16.0-cp27-cp27m-win32.whl (1.5 MB view details)

Uploaded CPython 2.7m Windows x86

grpcio-1.16.0-cp27-cp27m-manylinux1_x86_64.whl (9.6 MB view details)

Uploaded CPython 2.7m

grpcio-1.16.0-cp27-cp27m-manylinux1_i686.whl (9.1 MB view details)

Uploaded CPython 2.7m

grpcio-1.16.0-cp27-cp27m-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 2.7m macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: grpcio-1.16.0.tar.gz
  • Upload date:
  • Size: 14.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.12.4 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0.tar.gz
Algorithm Hash digest
SHA256 0cc5f2d3ee21c642d8982f197c83053fd3a8cbcd6a60240d8c87c6c256b10d57
MD5 35415f7f231c05679783ac4a7e5294fb
BLAKE2b-256 be849afa550ae7bfc65a7150f66ecdbf267617a2d584d9f845b4ef7d026a24ad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.12.4 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 41614ec2df4776a7d1b46183543d5c508bfc4972f092ec1ea83e98f808e5fa4d
MD5 27b4a10ee93bac2958642e036ad84653
BLAKE2b-256 5fb234dfe0e0f1312e82dd1678b8fb1b57bf78413dfaabc2a26d36ae526c0523

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.12.4 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 5526bf9f6615e22d0290aa83324f87fcc1fee51c3a9580ebeb2a52271c21a563
MD5 23e961d0e928459e023de4f11594fd41
BLAKE2b-256 f41dc21d53d7469ed3365c642c886947aebc154ada53a935749dacc8c4ad1ba5

See more details on using hashes here.

File details

Details for the file grpcio-1.16.0-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: grpcio-1.16.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 9.7 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.12.4 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4b4a2faa53e0f8d2b1479173dbce1523a7daaf2644fb835fb9fff04beb29ed8d
MD5 9f58f912fc043299072ed0bf37c61dfe
BLAKE2b-256 d9affeee6782df75c78261a696c8ffca8aa51da2d33ae2f8011e785d16820030

See more details on using hashes here.

File details

Details for the file grpcio-1.16.0-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: grpcio-1.16.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 9.2 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.12.4 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 32d2859b68e185d05d6b5f5814121e786088f5e3483da0a7359f5d7fc0401ee3
MD5 4d8c12af7f879121c45b9d692024ca97
BLAKE2b-256 57066d6eb0d8ad230e5f7b2a3d60a33158339792ead6a278254f02e7270542df

See more details on using hashes here.

File details

Details for the file grpcio-1.16.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio-1.16.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.12.4 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4a7fab9f8ed8352d63585d221ee9c1fc58fb9b3d12535e777e36e855b0cab3db
MD5 cba760145d304c52b0ee0374f1a5a64c
BLAKE2b-256 87befb5091be98c173a6f98eeeca2fe9bc85f41f3a49ae61647351462a60e745

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.12.4 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 7be774ca3c8faa0e126d1e41e11fd82c9c114efb5437b36f651fe25add7f8c2e
MD5 ce033cdf02d8127ebbb20a33c4ec5835
BLAKE2b-256 f090520757ccafb14f03e8e46a54bacd45f5f9cca6b96b58b83b66a272f059df

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.12.4 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 6e719d17ca8fa06260a427cd1fab58abfd0672e8e625fcad81595bd125e0e367
MD5 e6f0d16632fcdada983a510934e7c527
BLAKE2b-256 e404c14bcf1e95dbc91187261a9bcd5beb506846dfac61a130fcaf3453fd9728

See more details on using hashes here.

File details

Details for the file grpcio-1.16.0-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: grpcio-1.16.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 9.7 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.12.4 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9dd008cd45a646b0e3761f0963c95b0dcd07d880d278a3c1ce23dd4ecb9cd174
MD5 50319efb0ec313e6592557423629e2fe
BLAKE2b-256 c34c0a7c55764ac3013ca7a5e9638ee7b161488c0611afc2be465452987a3ccc

See more details on using hashes here.

File details

Details for the file grpcio-1.16.0-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: grpcio-1.16.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 9.3 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.12.4 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a9144b8a0f73be76aff348e4d558a5c3f43a8378a17c6327d56dbea8efda4aeb
MD5 38d27bee8687c7515008b8ca6cef60bf
BLAKE2b-256 b7ea6ba3a203b1108096cc5f4b9e0249b6fa8a947ed66105916c5ba1ee482e0b

See more details on using hashes here.

File details

Details for the file grpcio-1.16.0-cp36-cp36m-macosx_10_7_intel.whl.

File metadata

  • Download URL: grpcio-1.16.0-cp36-cp36m-macosx_10_7_intel.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.6m, macOS 10.7+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.12.4 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0-cp36-cp36m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 7d74c3c6d8c7aadd505c8cef2b4b5324588bee645e6d20a6493940b24d394603
MD5 8e6313d160fbe005a2f028ad0d8b4387
BLAKE2b-256 6619445d9eb2a066da42d0be6b8c644500a92e7964744d5b3910c7ad5e2755c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.0-cp36-cp36m-linux_armv7l.whl
  • Upload date:
  • Size: 8.7 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.12.4 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 5bf2c9ec1d55c28ca1221f7b2d1914f20b2819c44579da89f447789baaba1386
MD5 2f5efbea5ac92a59ae4c2f4ba2d48315
BLAKE2b-256 7c0038bbbfd9bba4afc1ffd8a064ec0f246adb0cb29eabc0658bc85796a622a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.12.4 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 314c557efecec7f901cf394beb184b31414f906785e4811d2392859576d4d7b5
MD5 522fef2ff24977d9fd929ede9f62ae57
BLAKE2b-256 5e8cda9316699398607a22c91e39e16e4c0f3e8233e0faa88ed52df736f2b1d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.12.4 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 62b24446d447ebe3a7002a6e3bd2c7372159e094868eb61ea2426327fe9f1992
MD5 6ec55a6fa943e37c22d3781cccf10ced
BLAKE2b-256 b53a38cf86634d1b6858dfd0691806d737c1018894e1c4b3d241e2e35f42c3d9

See more details on using hashes here.

File details

Details for the file grpcio-1.16.0-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: grpcio-1.16.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 9.7 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.12.4 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9907fcb03a9fd327b114919dbb7a4577d5d5aeed2d6d000e6e6d002ad5cb959d
MD5 f7c52463258a1f70d66d8bffd4455bf4
BLAKE2b-256 758bb8db0b4a855b1b959313fe4aa6e0704e2c05bef00e47d7b563112e40a704

See more details on using hashes here.

File details

Details for the file grpcio-1.16.0-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: grpcio-1.16.0-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 9.2 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.12.4 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 63afda9d946fff727107ebbef25f6b45497f29486e462725dc9942391f3714a8
MD5 da87d33dd16a871e0c897ecea38c341a
BLAKE2b-256 069c7e48ffd9692a47fb9713f0ced65f8cd5d39d5e02c5374414a21fd5122343

See more details on using hashes here.

File details

Details for the file grpcio-1.16.0-cp35-cp35m-macosx_10_7_intel.whl.

File metadata

  • Download URL: grpcio-1.16.0-cp35-cp35m-macosx_10_7_intel.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.5m, macOS 10.7+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.12.4 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0-cp35-cp35m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 6dd039527b7333c947b9757ad40adf93b917f3734aed1da4fdeb28fd17ec63f0
MD5 d73554102801d8dbf1380a60734d92fa
BLAKE2b-256 e4c6ef85267a50f1dcae86272371dba8797ca22427503a1a712d198203f1abfa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.0-cp35-cp35m-linux_armv7l.whl
  • Upload date:
  • Size: 8.7 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.12.4 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 84afdfbf88c0ed2426a4f029fae3e677e8f1b2f3370feeae939d64670926c981
MD5 edeefe1e2e777aa78a9b358d24b75c9c
BLAKE2b-256 bab646ca28c0d7bf40bd669401fe2da50c053d03eb00435a576e757ed0d57dc0

See more details on using hashes here.

File details

Details for the file grpcio-1.16.0-cp34-cp34m-win_amd64.whl.

File metadata

  • Download URL: grpcio-1.16.0-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.4m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.12.4 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 f94ae68c43b4bba0272e565882db2709d8827910ccc427f0a89d8cf070180f61
MD5 c92829dba80751184f792fe60a7b5dde
BLAKE2b-256 38609d9b92ba2927e015d5623c2e73f35732a4ea395fac7dac89fa4ec0dbef67

See more details on using hashes here.

File details

Details for the file grpcio-1.16.0-cp34-cp34m-win32.whl.

File metadata

  • Download URL: grpcio-1.16.0-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.4m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.12.4 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 13b498b0415715a4214574c67ac6d0d7b565a861eb4490238a828fac17a51506
MD5 9a28af8a403c6db36ccc001a38a71756
BLAKE2b-256 ede12a4819e57eacd21cc19e77872470778be0919894e1e0c9d77e0987d30198

See more details on using hashes here.

File details

Details for the file grpcio-1.16.0-cp34-cp34m-manylinux1_x86_64.whl.

File metadata

  • Download URL: grpcio-1.16.0-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 9.7 MB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.12.4 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3bf1b9d72a05a855762c36bd458d3750bedb5fd7b957a44443a62facf80afba4
MD5 2d73ff47b069ac646101d6829b910632
BLAKE2b-256 aa3916f951d295f31dba08b6af4a1ee2856df29b571853729efc697c495787a0

See more details on using hashes here.

File details

Details for the file grpcio-1.16.0-cp34-cp34m-manylinux1_i686.whl.

File metadata

  • Download URL: grpcio-1.16.0-cp34-cp34m-manylinux1_i686.whl
  • Upload date:
  • Size: 9.3 MB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.12.4 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a440935203be2581f68de7a4c5ca7ca22e948a21af70d7279ba9a2e32f73ae40
MD5 36f60fc83a15b6cf9c6ac972e082bcdc
BLAKE2b-256 2984164a7bc293357176edbd9de845bee08feabdf513f220934ce3e90667522d

See more details on using hashes here.

File details

Details for the file grpcio-1.16.0-cp34-cp34m-macosx_10_7_intel.whl.

File metadata

  • Download URL: grpcio-1.16.0-cp34-cp34m-macosx_10_7_intel.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.4m, macOS 10.7+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.12.4 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0-cp34-cp34m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 76b3dbff4c775f5f8667c405b909ab2f80440c7579ad56f823476b011124a8a5
MD5 6e405cc24d0073eb3b3b6b492c65b0c3
BLAKE2b-256 1068d4cc9d2f15d72cf23412fef26916cff3da4d12b9668704692bf373c5c54e

See more details on using hashes here.

File details

Details for the file grpcio-1.16.0-cp34-cp34m-linux_armv7l.whl.

File metadata

  • Download URL: grpcio-1.16.0-cp34-cp34m-linux_armv7l.whl
  • Upload date:
  • Size: 8.7 MB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.12.4 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0-cp34-cp34m-linux_armv7l.whl
Algorithm Hash digest
SHA256 c4318cea2d85f13811655e5d1c30fe97074aeb8105b16cc6da2d1d5d64a9f4f7
MD5 ac087eb3cadb8ebfcb3d136bdfe5c9ef
BLAKE2b-256 a79f0a3e2eb7a1f76a17c20fc5e0d2b50c844e69e8d0d5300ae981fc12e192b6

See more details on using hashes here.

File details

Details for the file grpcio-1.16.0-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: grpcio-1.16.0-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 9.6 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.12.4 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0b09e82027f27cb540999404acf1be19cb50073d76ab257d7369aa3730bec3c0
MD5 895f84294a7a5cf8212e225c4a3c660a
BLAKE2b-256 337f69dceda1f91c31ef4bcc879f218fe9be86ec6837d149a6a28f9cb32adc0c

See more details on using hashes here.

File details

Details for the file grpcio-1.16.0-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: grpcio-1.16.0-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 9.1 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.12.4 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b14629835e796f7905db2f7d10035958f995bae67bf9e652b13be156ed4a8457
MD5 19cb70653f347c69c5af28e7e79beecd
BLAKE2b-256 2d58a0606b4cbfd03c70e87a39c796529ba37b5b2fa782ddc4b1e1adaaf6c851

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.0-cp27-cp27mu-linux_armv7l.whl
  • Upload date:
  • Size: 8.6 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.12.4 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 93edd492a1c6865e15db1ff7d98228b7351221bf815286a41834e10934c0cde0
MD5 551ac65830fbce5e7cd08c4f811354d4
BLAKE2b-256 2d478821c6b983a0e00a67eae5aa5649d2991ecc40ee09f71642fbd3400753cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.12.4 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 84d62107eb5bc9fe4e3682b038434c709ca7a2ae19e621e08ed7e8d908046cfb
MD5 f6f03a02c463fdd4740225932bee2976
BLAKE2b-256 55b210a3fc0d2111ebcb0322211d212aba875ce8ba33df70e049958c2a310a14

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.12.4 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 b4fe851428b630bdf6f3a99c3761ce3d304b194162812fc1312bfe7bd138e620
MD5 6a4729384d06e5611c4964ad40666744
BLAKE2b-256 449d94130e3458b2cbdb678ee9ca2d508890ac5d6a735a0fe7c66966f46f4a4f

See more details on using hashes here.

File details

Details for the file grpcio-1.16.0-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: grpcio-1.16.0-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 9.6 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.12.4 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8a1f4bee826b0edb123157f19843f46ca9ef29f12ed0b54eeffde5ff65101340
MD5 c05d842657c86c1fb855f10d0d3d2065
BLAKE2b-256 a496777b975a0501b8a992356659c1b7bafc311f332a4c17a2aa64567b3e867c

See more details on using hashes here.

File details

Details for the file grpcio-1.16.0-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: grpcio-1.16.0-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 9.1 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.12.4 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e986100947cdafa2817701ffe616f2dc0221cc27eb301d654b9462b98ee62912
MD5 c6bcd78f647eb900aab5352e7d67ba44
BLAKE2b-256 b3fd1236762dc3e6bb9097cd3eb8caabb8b8b829adacd8b9e415aa25741ea5ec

See more details on using hashes here.

File details

Details for the file grpcio-1.16.0-cp27-cp27m-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: grpcio-1.16.0-cp27-cp27m-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 2.7m, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.12.4 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0-cp27-cp27m-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e46d3d702198d164474078140e008e8961e95dfb5a100f2890eb201c94c48c6e
MD5 767b32e10b3d9b0193906b1af6671885
BLAKE2b-256 56a2b04d7f01adf47725d239a4cd931fa233eebeca2e4b7cc4c6c8b50585eca6

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