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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

grpcio-1.20.0-cp37-cp37m-manylinux1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m macOS 10.9+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

grpcio-1.20.0-cp36-cp36m-manylinux1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m macOS 10.9+ x86-64

grpcio-1.20.0-cp36-cp36m-linux_armv7l.whl (10.3 MB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

grpcio-1.20.0-cp35-cp35m-manylinux1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

grpcio-1.20.0-cp35-cp35m-macosx_10_7_intel.whl (3.7 MB view details)

Uploaded CPython 3.5m macOS 10.7+ intel

grpcio-1.20.0-cp35-cp35m-linux_armv7l.whl (10.3 MB view details)

Uploaded CPython 3.5m

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

Uploaded CPython 3.4m Windows x86-64

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

Uploaded CPython 3.4m Windows x86

grpcio-1.20.0-cp34-cp34m-manylinux1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.4m

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

Uploaded CPython 3.4m

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

Uploaded CPython 3.4m macOS 10.7+ intel

grpcio-1.20.0-cp34-cp34m-linux_armv7l.whl (10.3 MB view details)

Uploaded CPython 3.4m

grpcio-1.20.0-cp27-cp27mu-manylinux1_x86_64.whl (2.1 MB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

grpcio-1.20.0-cp27-cp27mu-linux_armv7l.whl (10.2 MB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

grpcio-1.20.0-cp27-cp27m-manylinux1_x86_64.whl (2.1 MB view details)

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

grpcio-1.20.0-cp27-cp27m-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: grpcio-1.20.0.tar.gz
  • Upload date:
  • Size: 13.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.16rc1

File hashes

Hashes for grpcio-1.20.0.tar.gz
Algorithm Hash digest
SHA256 f8c5c455e4a843500f236231fa250eb4e2e81c1e8f2280ae56f1ed3f25f8c332
MD5 eaae97ae359e86607c662ebe910b843b
BLAKE2b-256 aeb6f58654d005ef714922ec75a3b208df31b27310cdafacc1f5d952e1a3ed30

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.0-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.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.16rc1

File hashes

Hashes for grpcio-1.20.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 fa61afe6258f16efc4c6793a3a39bcd5a7eec43ea1789fa2d9e437a2e4dbeaf4
MD5 f43a1d7dbe03b509b2d685c431d29c35
BLAKE2b-256 130c3cfd6673ac801989be7bb6c5c7b6c9410434e3d9cb3d78e67ff16c29a5f6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.0-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.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.16rc1

File hashes

Hashes for grpcio-1.20.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 4666caf3e642ece8119597482734ab16f14b5d842334b45267182aace0fb2dae
MD5 ecf8a75591d9e9db9471d47c5d4b1d92
BLAKE2b-256 c68372989dc392b8a6614f59ec1bdebed8ea9858da350f8a678fe879eb520d47

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.16rc1

File hashes

Hashes for grpcio-1.20.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 26860ffbb5830d3dca76955699996e59703a6b2d4f71c33617178817a6fea303
MD5 0b475b1db026c5799138b0ba306e557f
BLAKE2b-256 b4e280a6c9ed70f4f068168a5aa16fa2c6906b0146556339ffb89ba36314ab45

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.16rc1

File hashes

Hashes for grpcio-1.20.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a4bde6b6800d82f772f72669d1772cf740d1aec5ca98c8edffa3dfd531ecf7c6
MD5 b2b8e72446be8b98452f488445723806
BLAKE2b-256 4fecddcafb9edea9a70e0842698fb7f63651fcb922a9aee0e6826275007495b5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.0-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.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.16rc1

File hashes

Hashes for grpcio-1.20.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 953a72d9f4f4f011789c6147fbe5e93419fdf3891d8ee5840fd9c7bd02960739
MD5 18a0079c784704a68a5628a390896dbe
BLAKE2b-256 75c45d0211fc107131dbaff31fa2a3d15430f58665ff2d54b59979a1abfc781a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.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.20.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.16rc1

File hashes

Hashes for grpcio-1.20.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 43caff66c30fcfcb59424ec121bac0db6b0831da1310e7ec7ec8ad847ecef30b
MD5 2a08814284aaafdc77622c4390ffeb2f
BLAKE2b-256 b2e914ee6d5ac4f0835571b76e90861690ebf50a412224f89d2754c85da5db57

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.0-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.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.16rc1

File hashes

Hashes for grpcio-1.20.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 bc26186dca4ee75dbe33a367217e7318f4fc135c5f02437e7f84fa853e9a877d
MD5 2db51828ee1b9b678d34c88d6f350fc0
BLAKE2b-256 678c48441a697b18001b3675718aea79a6be4ecc9efd19207c020046b83b0cfe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.16rc1

File hashes

Hashes for grpcio-1.20.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7ac4c298579015b84d612ac70ec7b7aeba44db7e87ac075402a3b20a4402553a
MD5 5af334ce836ddf7199160a3a50073034
BLAKE2b-256 39a88eeb117c46a53768008a7e3892746aa0ea8ea0b669a2a06712eec11ecc33

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.16rc1

File hashes

Hashes for grpcio-1.20.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7c0ebcbe5c52ca179fe3e47c3f12bb74d62227d762bb62a42d0fb6178a8b5845
MD5 5e53768f5110a6e930e8128be7b44e90
BLAKE2b-256 363150b9bacb21328b6b37049a1552bede5a71f7d0519a08d68a6027245440da

See more details on using hashes here.

File details

Details for the file grpcio-1.20.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio-1.20.0-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.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.16rc1

File hashes

Hashes for grpcio-1.20.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a9d8f04e820dc20fa120e0af4f8e995155b8dcc475c34fb31be105c8eeac74c3
MD5 39051c0605c15b36a5eab67d94cf66af
BLAKE2b-256 91c1b662242435311fdc3b6934ccccb80c731636b1f2242be0e0c243b492bab9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.0-cp36-cp36m-linux_armv7l.whl
  • Upload date:
  • Size: 10.3 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.16rc1

File hashes

Hashes for grpcio-1.20.0-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 739e97e7d25b5fb4ed3dc7daedd725a04e1caccce7bf7f2cbc6fa4efef975b05
MD5 014416b45c68b1f47a9e2af2d2e6af73
BLAKE2b-256 f3c87c6cab1a1f8e9894058e389a69fab76cf6b2765e04b38c31c8e7ea4c4024

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.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.20.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.16rc1

File hashes

Hashes for grpcio-1.20.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 f936b811ecb44cf8a83c8b8fea7b9191e04f96d168681b2744a4b7c1b3812b34
MD5 5663adc69264086329da3997eac2a056
BLAKE2b-256 ba66c8dcef59145fb7e6884c9196288dcbbe7c613c2b03e413dc88d8e74104e6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.0-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.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.16rc1

File hashes

Hashes for grpcio-1.20.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 36719664bc1bf8db4027b576b0f65f36a6cbcea69fe522ea29ee9d02fb4191a5
MD5 d38f4990b2952c9f4b8679e214a8d052
BLAKE2b-256 5cf33918ec8b04d8ff7341d4215ba8ade7652d443386152d71503589eca4a5d7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.16rc1

File hashes

Hashes for grpcio-1.20.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 79977b7fd02f83ca1eb2489415509f13bf2ee16b49f53e1893547fa54a057242
MD5 8b8c8cd70ac60110bc520d8ee5bb1b78
BLAKE2b-256 fba3d5ccc8624ed7adce45c3297ab910cdf3c457a54e61eb231246b66ef18bc1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.0-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.16rc1

File hashes

Hashes for grpcio-1.20.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 9fe8d4d694b2ccb272473ac4b8813b3a649ea53448235b43759913c99fe5f0d0
MD5 0613591b8c7d2c8a3d40ca49e3b49b33
BLAKE2b-256 341a5a6e098356e16cbfa24f4c383b022584b305f68033eda8966cab1d9e84ad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.0-cp35-cp35m-macosx_10_7_intel.whl
  • Upload date:
  • Size: 3.7 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.20.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.16rc1

File hashes

Hashes for grpcio-1.20.0-cp35-cp35m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 277ab0a2c0eb503491300c89a34093caa33dbc5c05c5f49e3f01c65c5fbbeb83
MD5 d4a95eac6c4b3c1419781ff4e744987c
BLAKE2b-256 78b75e2846f0d009587b88e81f345fe5da999be0a250e2da2b45b49a71a54814

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.0-cp35-cp35m-linux_armv7l.whl
  • Upload date:
  • Size: 10.3 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.16rc1

File hashes

Hashes for grpcio-1.20.0-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 6aaf92894f12bc7d7c467e0b7f665a319a20b48d41297a3a77de95da8d03a73b
MD5 0980393accd165e28566a4a2dd690d95
BLAKE2b-256 206f055ce2d942e0be4ef1860252787172c40b05a73f7cc86d4375b3b73c7a43

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.0-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.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.16rc1

File hashes

Hashes for grpcio-1.20.0-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 48bb0526c612c0e5ae39d6e1f5d12eb75ee5e588560a86347dfc381717ed091d
MD5 8640612970123a87672dac5f9115a3f4
BLAKE2b-256 2951c19fb0893e276f7ea6ca5b603c513c5f6c09dbb10ce1124d9a74cac1b520

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.0-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.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.16rc1

File hashes

Hashes for grpcio-1.20.0-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 181c0066d0005f81f384cbeade9d5a41dee1e97dc9e6ba005122d4a753b1f056
MD5 828a6f37b0e90871fd8664ff94de6e02
BLAKE2b-256 483998f435558e64aeea7278c813cf98698b69a31d6b944fa09f68e9aab68b00

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.0-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.16rc1

File hashes

Hashes for grpcio-1.20.0-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f9119f484a04ea1a006f4d7b4a9ca4a77ff91c5afd166a2aa0417e6bd5b4eb3b
MD5 00c5bb3c93fa292768405519cee9eb63
BLAKE2b-256 c98378c74fc5b7eaad199084124f967beb9624a6a84f08cf86512f198bca2874

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.0-cp34-cp34m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.16rc1

File hashes

Hashes for grpcio-1.20.0-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e20804844b4ce2db0f700762c352170a3957a80080703ee3a53cce2e72849d36
MD5 0c96d2e3b8480f537d7559df3b7e9199
BLAKE2b-256 29202a61c3ff0d0b7ba13b05e0387e6424080f54fbca1d7d62961807c0995443

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.0-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.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.16rc1

File hashes

Hashes for grpcio-1.20.0-cp34-cp34m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 177fb72c6c8f89788d8065ee5dd239af7a7a26962a4d81777c156c4813ae87dc
MD5 d79756cc58ea702e03a3cff31c4b4c43
BLAKE2b-256 94e687baea1e98712ae52db95394902e81ee83f71550dc949d86dc48757e107d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.0-cp34-cp34m-linux_armv7l.whl
  • Upload date:
  • Size: 10.3 MB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.16rc1

File hashes

Hashes for grpcio-1.20.0-cp34-cp34m-linux_armv7l.whl
Algorithm Hash digest
SHA256 9b93e74fceec8808e74a7cfde9f852d35f34283cf6441cdecbfbfb39611bd143
MD5 1c670f6cae917c2841a59dc1fa139dea
BLAKE2b-256 371ff5f1dc3cacdf090356fcd0e414c7b5cf03155188d842f0bbf68dbada4fc0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.0-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.16rc1

File hashes

Hashes for grpcio-1.20.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 dd55e694ddd1c439fb933ac21c297a7e019c7db7b44178579822129cd28b8c44
MD5 801ad822842cc146b407d163e5627bde
BLAKE2b-256 7c594da8df60a74f4af73ede9d92a75ca85c94bc2a109d5f67061496e8d496b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.0-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.16rc1

File hashes

Hashes for grpcio-1.20.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ceaa0e4ea3259bea36d08f332e49bb28120669b651b1a50d64e553ac4add3a86
MD5 58d893f2b7c950e8b9712e6062e68125
BLAKE2b-256 4eec31fb8acc52e3378e4e3cc7b4bc9570792e09c31cada7b44661323181607a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.0-cp27-cp27mu-linux_armv7l.whl
  • Upload date:
  • Size: 10.2 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.16rc1

File hashes

Hashes for grpcio-1.20.0-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 d51a486a1cfdedb19d3f50e12c030841384f46fcb1ec0de216fc55a85e752321
MD5 43873a0033a87e6ba450a82905b6ecf4
BLAKE2b-256 ca67affb80b7249f53ef26a49b02ea89d0cf78c02285f37871ae1e163b110c2c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.0-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.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.16rc1

File hashes

Hashes for grpcio-1.20.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 9207a8339078dc5558e5ae15a8e95012c31dcc317029224a159292c1cae382b2
MD5 6f5d252020b45bdcd78925860a1d7cb4
BLAKE2b-256 3b9c4b3676a0cfb6bbf606a24d41b8244ea89caaeb12343990d56926a4bdd494

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.0-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.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.16rc1

File hashes

Hashes for grpcio-1.20.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 69d5bb14479be7d6c7097715c54eebbda2c0ba6a8e228aabc69f18e1fd6eaed4
MD5 e0160df55ca882c4e71ea11480b18073
BLAKE2b-256 acda1372a969f14bb479b6861703c7e56e9d65ae7aecf0db8262fdd2a2ab734a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.0-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.16rc1

File hashes

Hashes for grpcio-1.20.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ecbd9900d4237cdb166ab923a9c76ad16880d166494e04df58ae7f8e2a14a9dd
MD5 f4fb312e4859d64ce0009ba7c074b8a2
BLAKE2b-256 722a29a89b2de382d96e596a4bf5661324f35170d7a420c05af89c31693835ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.0-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.16rc1

File hashes

Hashes for grpcio-1.20.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 dc28b9ea5e6c2c75a54cd194c15a8a742a7ad710c1ccfca8e84d50420a2a1aef
MD5 8cdfcfbe9aad84485059fd3f234907dc
BLAKE2b-256 810af96d6ee538bac3dfdf8fff8fe8f255e9e83db4216cc8c73d3b2c770cbe95

See more details on using hashes here.

File details

Details for the file grpcio-1.20.0-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio-1.20.0-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.16rc1

File hashes

Hashes for grpcio-1.20.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d4fea86ed6c1585ac51cb15f2ae8d58feeebcdf11cb6de38807fffedb2e019b2
MD5 6bca4a5bbbc4bbc263a3f62aea20db55
BLAKE2b-256 ff1fedb62f53d1c0394db39d7e2f728974fad68b23b41fceaa1851294af4bbd6

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