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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

grpcio-1.17.1-cp37-cp37m-manylinux1_x86_64.whl (10.1 MB view details)

Uploaded CPython 3.7m

grpcio-1.17.1-cp37-cp37m-manylinux1_i686.whl (9.6 MB view details)

Uploaded CPython 3.7m

grpcio-1.17.1-cp37-cp37m-macosx_10_9_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

grpcio-1.17.1-cp36-cp36m-manylinux1_x86_64.whl (10.1 MB view details)

Uploaded CPython 3.6m

grpcio-1.17.1-cp36-cp36m-manylinux1_i686.whl (9.6 MB view details)

Uploaded CPython 3.6m

grpcio-1.17.1-cp36-cp36m-macosx_10_7_intel.whl (2.1 MB view details)

Uploaded CPython 3.6m macOS 10.7+ intel

grpcio-1.17.1-cp36-cp36m-linux_armv7l.whl (9.1 MB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

grpcio-1.17.1-cp35-cp35m-manylinux1_x86_64.whl (10.1 MB view details)

Uploaded CPython 3.5m

grpcio-1.17.1-cp35-cp35m-manylinux1_i686.whl (9.6 MB view details)

Uploaded CPython 3.5m

grpcio-1.17.1-cp35-cp35m-macosx_10_7_intel.whl (2.1 MB view details)

Uploaded CPython 3.5m macOS 10.7+ intel

grpcio-1.17.1-cp35-cp35m-linux_armv7l.whl (9.1 MB view details)

Uploaded CPython 3.5m

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

Uploaded CPython 3.4m Windows x86-64

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

Uploaded CPython 3.4m Windows x86

grpcio-1.17.1-cp34-cp34m-manylinux1_x86_64.whl (10.1 MB view details)

Uploaded CPython 3.4m

grpcio-1.17.1-cp34-cp34m-manylinux1_i686.whl (9.7 MB view details)

Uploaded CPython 3.4m

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

Uploaded CPython 3.4m macOS 10.7+ intel

grpcio-1.17.1-cp34-cp34m-linux_armv7l.whl (9.1 MB view details)

Uploaded CPython 3.4m

grpcio-1.17.1-cp27-cp27mu-manylinux1_x86_64.whl (10.0 MB view details)

Uploaded CPython 2.7mu

grpcio-1.17.1-cp27-cp27mu-manylinux1_i686.whl (9.5 MB view details)

Uploaded CPython 2.7mu

grpcio-1.17.1-cp27-cp27mu-linux_armv7l.whl (9.0 MB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

grpcio-1.17.1-cp27-cp27m-manylinux1_x86_64.whl (10.0 MB view details)

Uploaded CPython 2.7m

grpcio-1.17.1-cp27-cp27m-manylinux1_i686.whl (9.5 MB view details)

Uploaded CPython 2.7m

grpcio-1.17.1-cp27-cp27m-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 2.7m macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.17.1.tar.gz
Algorithm Hash digest
SHA256 fd6774bbb6c717f725b39394757445ead4f69c471118364933aadb81a4f16961
MD5 dd46d7270dfce713c03f45fae999cae3
BLAKE2b-256 98dfe181e36dc54fc0166d59cf2cb25991e33df52090922495175b2e2abc1381

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.1-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.20.0 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 8703efaf03396123426fdea08b369712df1248fa5fdfdbee3f87a410f52e9bac
MD5 2d5813744edf4fa27df0dac007694710
BLAKE2b-256 040b68abd0348db0b73e8197812b8e846c26ee6f1770d9c528569b8a0955230f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.1-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/36.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 5447336edd6fea8ab35eca34ff5289e369e22c375bc2ac8156a419fa467949ac
MD5 444f76e18df55f196cba64221623d1a8
BLAKE2b-256 068d03e3d2a4154833d2d3d26e2f8f3495dd917d4a6d0c13ae3d73ab9ad38afc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 10.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/36.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 adfee9c9099cae92c2a4948bc95cc2cc3185cdf59b371e056b8dd19ed434247e
MD5 aa6b5a94294509123a8f03fe833ee3ad
BLAKE2b-256 3491e3027ebb8e42ed14830488d4c82f6ceb8e47c811dd1e4a4dd87be151b570

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.1-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 9.6 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/36.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 cbb95a586fdf3e795eba28b4acc75fdfdb59a14df62e747fe8bc4572ef37b647
MD5 abbebe187abd905df3ef613fe8db0d47
BLAKE2b-256 746eadf5219d2067d2c34b3e4ffc8d30d227adaf6b290bee8ba53506bb34b5bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.8 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/36.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 082bc981d6aabfdb26bfdeab63f5626df3d2c5ac3a9ae8533dfa5ce73432f4fe
MD5 4fd35ac35e6b2021ac2bffad03745f06
BLAKE2b-256 64ec0f2c94d0c85d72d70de6d98d1188f8ce44986a0a57a6b119a869e8cf19b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.1-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/36.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 e10bbef59706a90672b295c0f82dcb6329d829643b8dd7c3bd120f89a093d740
MD5 273bf5ac634c202cb15985b2ce2c70b7
BLAKE2b-256 ee5094c8c01e91508ebe4c83e980029a5329d1bcc89d37f01cf9e214c6e7f42d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.1-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.20.0 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 284bee4657c4dd7d48835128b31975e8b0ea3a2eeb084c5d46de215b31d1f8f5
MD5 5b830172927d777fd7d491567b482877
BLAKE2b-256 b367e9d1da74cf67772aa72ce620ad6eb665dbac819cbb4b104e44ae5220def5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 10.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/36.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b3bbeadc6b99e4a42bf23803f5e9b292f23f3e37cc7f75a9f5efbfa9b812abc1
MD5 2a6e2095100f724ef616bd94180e3353
BLAKE2b-256 3bbb701d879849c938028c09fdb5405dbde7c86644bbbb90098094002db23ded

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.1-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 9.6 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/36.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f0c0e48c255a63fec78be2f240ff5a3bd4291b1f83976895f6ee0085362568d0
MD5 a1e4bb1c53805668f65c4a3395f09a05
BLAKE2b-256 4e288f1b4dcf5ec0a3d9278be476052a7172ae45833bddeda4db15d0d8168601

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.1-cp36-cp36m-macosx_10_7_intel.whl
  • Upload date:
  • Size: 2.1 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.20.0 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.1-cp36-cp36m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 a46c34768f292fa0d97e929591e51ec20dc857321d83b198de1dad9c8183e8cb
MD5 accaa31679b20a4070f2c65533faec61
BLAKE2b-256 1426e26ed357d2b7ddb30043b6f17458c1fb8d3a2e7a243fb03a022beef9084a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.1-cp36-cp36m-linux_armv7l.whl
  • Upload date:
  • Size: 9.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/36.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.1-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 f7bb6617bae5e7333e66ec1e7aac1fe419b59e0e34a8717f97e1ce2791ab9d3a
MD5 220b845adf9b92971888b837fd8de036
BLAKE2b-256 f6aac6ccddb73e8dcacb6a82d266828e4c38ea08668927148cecdeb1ccef2637

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.1-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/36.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 8bb7dbe20fe883ee22a6cb2c1317ea228b75a3ef60f3749584ee2634192e3452
MD5 44da2fe640b5494067efd6e1b0d4e1d9
BLAKE2b-256 ec19e3d7c8d6bbb7c3681b1d77dfc985d45d07baea226fc57448e76b986cb154

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.1-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.20.0 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 8b72721e64becd4a3e9580f12dbdf618d41e80d3ae7585dc8a921dbf76c979bb
MD5 70d890abdfabcf9709fd34771813d95c
BLAKE2b-256 5036b23ef9042cd992bf2ddc33d0d3f5529853b82f52fee832c0309410928bc2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.1-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 10.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/36.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 11c8026a3d35e8b9ad6cda7bf4f5e51b9b82e7f29a590ad194f63957657fa808
MD5 9cd5747f4326807966b3dc64fb55fe59
BLAKE2b-256 d9947c634ccc859169ceebca7140532b5267a0b0ed5583e1e624663997786895

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.1-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 9.6 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/36.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 4837ad8fdcf99df0e89214ba42001469cab807851f30481db41fd84fc9358ce7
MD5 5613e17dfa2a4ef452f85ea8ec6bf668
BLAKE2b-256 019d7ad7e7508a56afaf250f9d8b77f38032acfb1dd14f66d5ada4e925da6c3e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.1-cp35-cp35m-macosx_10_7_intel.whl
  • Upload date:
  • Size: 2.1 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/36.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.1-cp35-cp35m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 38b93080df498656aea1dbab632e32013c580c2d00bd8c30d0f1d2c9513b0469
MD5 5ed053a8501a3932891f436d90cdba18
BLAKE2b-256 51094283ca82ecff7cfdf4b157b6ebb04cd0ad704d4b89dd88fc4905690392f3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.1-cp35-cp35m-linux_armv7l.whl
  • Upload date:
  • Size: 9.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/36.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.1-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 9a7ed6160e6c14058b4676aac68a8bf268f171f4c371ff0a0c0ab81b90803f70
MD5 1b450966d9a787d3640684756327a9c0
BLAKE2b-256 17b0873b90f97daa09ed2f0c8bad12e2d0366c5c5c0709cb20fcc9a5dd067354

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.1-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.20.0 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.1-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 d64350156dc4b21914409e0c93ffeeb4ceba193716fb1ae570df699383c4cd63
MD5 618d1ccbf98da5f4d5bd93e70fbd83f6
BLAKE2b-256 cdc7ad8c9e609922489fa1ab837074359fd4bcc78b2500a793d4e329349e38f8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.1-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.20.0 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.1-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 fa6e14bce7ad5de2363abb644191489ddfffcdb2751337251f7ef962ab7e3293
MD5 c36f17882da1a74e4940a7426983f054
BLAKE2b-256 9a4cf768af98db82c345e693f85d46915772220905af611ba0c99c72ca28bb63

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.1-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 10.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/36.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.1-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2a8b6b569fd23f4d9f2c8201fd8995519dfbddc60ceeffa8bf5bea2a8e9cb72c
MD5 61a31868d89b19e48091ef747525afc9
BLAKE2b-256 f57b8ea9a4250c02082b150a8c220b7676d63f6baa895d1d728a7956e78068ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.1-cp34-cp34m-manylinux1_i686.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.20.0 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.1-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b51d49d89758ea45841130c5c7be79c68612d8834bd600994b8a2672c59dc9b9
MD5 efcaea68f454706402088e0f6ffb778e
BLAKE2b-256 c5308ad3d840dbe339da2493d9b8f194426058d8496c2a074fac84cd85be3cd9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.1-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.20.0 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.1-cp34-cp34m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 612e742c748df51c921a7eefd76195d76467e3cc00e084e089af5b111d8210b7
MD5 7c838e0e023fba25b21272943db0d798
BLAKE2b-256 bca5bab471d4bf03443790fb82abf2a9a53100b59e82c685ec8578de17ff915c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.1-cp34-cp34m-linux_armv7l.whl
  • Upload date:
  • Size: 9.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/36.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.1-cp34-cp34m-linux_armv7l.whl
Algorithm Hash digest
SHA256 1a820ebf0c924cbfa299cb59e4bc9582a24abfec89d9a36c281d78fa941115ae
MD5 d556c597b4274ee8c20c7de024665b49
BLAKE2b-256 a21bee6e8f5cfa2d048becbdb14a54c4fdc06cd48281c70b6dbdd4337f48bc94

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.1-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 10.0 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/36.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cdea5595b30f027e6603887b71f343ca5b209da74b910fe04fc25e1dfe6df263
MD5 0219cabdc7d022623ade40b6f35c7c85
BLAKE2b-256 bfd95880e43198f048afbe75348baceafc483e4c3ab657e3e3c1d0b57dacaa0c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.1-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 9.5 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/36.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 62c777f801aee22100d8ea5fa057020e37b65541a8000091879a8560b089da9d
MD5 1b03bbcf0d7b561b84a0d1c80f95f12b
BLAKE2b-256 3d433fd27e3db90aed2a81981e87613218c53739485f025971d830fd436f25a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.1-cp27-cp27mu-linux_armv7l.whl
  • Upload date:
  • Size: 9.0 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/36.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.1-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 e68e6afbbae2cbfadaabd33ee40314963cd83500feff733c07edb172674a7f8b
MD5 11e303cdd9c6dece23a64b60fcdb296b
BLAKE2b-256 3324a2a7a2d6969c6b8a3e1c6ac47be1ed85e86b6c4da2a182359a82d07f7b60

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.1-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.20.0 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 8317d351ab1e80cf20676ef3d4929d3e760df10e6e5c289283c36c4c92ca61f7
MD5 2a9b5e86ee95709909f1d2354bcf306c
BLAKE2b-256 1873109c754afa0fcd7759eb1028c873c5c317d089ccb9011a5b99612d3c4017

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.1-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.20.0 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 145e82aec0a643d7569499b1aa0d5167c99d9d26a2b8c4e4b3f5cd51b99a8cdc
MD5 fd1f1a93c746ab3b58cb0207ea57fac4
BLAKE2b-256 43f4ebad81229f3224dd5e8dd1ee65efb77fb8382a97d397c91d08acba60726c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.1-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 10.0 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/36.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 57705e31f76db45b51f3a98bcfd362c89d58e99f846337a25fed957b4d43ae4f
MD5 28b2b842a42df067b25f91087de8c482
BLAKE2b-256 1f81d5fd71198cf2cf47cdab25b621f216b2fb27fee7c47c9e18e39e7fc7042f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.1-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 9.5 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/36.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a7f21a7b48fcd9f51029419b22a9bfea097973cca5d1529b8578f1d2919e6b23
MD5 882edbfa285d15bd1f0938d2857953ab
BLAKE2b-256 283cc5f4806effcc88e3540ddac3c30fd01e5c67502a48e326a45ea879e9179e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.1-cp27-cp27m-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 1.8 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.20.0 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.1-cp27-cp27m-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0e8ff79b12b8b07198dd847974fc32a4ed8c0d52d5224fabb9d28bf4c2e3f4a9
MD5 27c7b5927bc827208c7d5763d08db57d
BLAKE2b-256 a90670e2aa28a199672e87c448fadee8385762490ea7fc71bce0a15f64fcda15

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