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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

grpcio-1.14.0-cp37-cp37m-manylinux1_x86_64.whl (9.3 MB view details)

Uploaded CPython 3.7m

grpcio-1.14.0-cp37-cp37m-manylinux1_i686.whl (8.9 MB view details)

Uploaded CPython 3.7m

grpcio-1.14.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.14.0-cp36-cp36m-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

grpcio-1.14.0-cp36-cp36m-manylinux1_x86_64.whl (9.3 MB view details)

Uploaded CPython 3.6m

grpcio-1.14.0-cp36-cp36m-manylinux1_i686.whl (8.9 MB view details)

Uploaded CPython 3.6m

grpcio-1.14.0-cp36-cp36m-macosx_10_7_intel.whl (1.9 MB view details)

Uploaded CPython 3.6m macOS 10.7+ intel

grpcio-1.14.0-cp36-cp36m-linux_armv7l.whl (8.5 MB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

grpcio-1.14.0-cp35-cp35m-manylinux1_x86_64.whl (9.3 MB view details)

Uploaded CPython 3.5m

grpcio-1.14.0-cp35-cp35m-manylinux1_i686.whl (8.9 MB view details)

Uploaded CPython 3.5m

grpcio-1.14.0-cp35-cp35m-macosx_10_7_intel.whl (1.9 MB view details)

Uploaded CPython 3.5m macOS 10.7+ intel

grpcio-1.14.0-cp35-cp35m-linux_armv7l.whl (8.5 MB view details)

Uploaded CPython 3.5m

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

Uploaded CPython 3.4m Windows x86-64

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

Uploaded CPython 3.4m Windows x86

grpcio-1.14.0-cp34-cp34m-manylinux1_x86_64.whl (9.3 MB view details)

Uploaded CPython 3.4m

grpcio-1.14.0-cp34-cp34m-manylinux1_i686.whl (8.9 MB view details)

Uploaded CPython 3.4m

grpcio-1.14.0-cp34-cp34m-macosx_10_7_intel.whl (2.0 MB view details)

Uploaded CPython 3.4m macOS 10.7+ intel

grpcio-1.14.0-cp34-cp34m-linux_armv7l.whl (8.5 MB view details)

Uploaded CPython 3.4m

grpcio-1.14.0-cp27-cp27mu-manylinux1_x86_64.whl (9.2 MB view details)

Uploaded CPython 2.7mu

grpcio-1.14.0-cp27-cp27mu-manylinux1_i686.whl (8.8 MB view details)

Uploaded CPython 2.7mu

grpcio-1.14.0-cp27-cp27mu-linux_armv7l.whl (8.4 MB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

grpcio-1.14.0-cp27-cp27m-manylinux1_x86_64.whl (9.2 MB view details)

Uploaded CPython 2.7m

grpcio-1.14.0-cp27-cp27m-manylinux1_i686.whl (8.8 MB view details)

Uploaded CPython 2.7m

grpcio-1.14.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.14.0.tar.gz.

File metadata

  • Download URL: grpcio-1.14.0.tar.gz
  • Upload date:
  • Size: 14.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.14.0.tar.gz
Algorithm Hash digest
SHA256 9bf0ecab6816690d26d7be3fc8697058451fc82b45516cc1da108d4ba7888178
MD5 bcfcb83b91b664ff175bf448fce36643
BLAKE2b-256 8a5f3f8ae67af2e56c36d62b1d047bddd421a7502fbedd9daf2e6c2049a71424

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.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.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.14.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 aee34b93a47e32970187601d73137d2ba58f8d246d4cd4f07b11e5c7412ee44b
MD5 820a23703e9892c8ff986e2f9b8caca0
BLAKE2b-256 dac594cd76f800ba560e99f1f384bad4b272cfa615c299922e45ea00a5137e1e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.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.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.14.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 d5532c239607de8463e1284567e509aa00b848383e095ae243402b879efd9eaa
MD5 65575928dc12963241570515891fb31e
BLAKE2b-256 e893297ee5a8d41cd243300eae2178201d2833e6472b79731674d232ce6883fe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 9.3 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.14.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 05df31bacb29e5a6000bef5a41458d89a434358908c7f60a5d96b75e65df9dae
MD5 ada950401bd70c8746418aea30884f5d
BLAKE2b-256 d8de0245b956ac3e428812e59f948caf533bb74faa3a95df3c1a27c0c614c2f4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.14.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 53daac425bb2ded3e6e8e96187d2feabeba0fe223c7234899664e50e1b970e11
MD5 5ba0783142559ecba7688952f22e7304
BLAKE2b-256 d90f066234d6f722c3f19824b37b9962ee21538a43ae03fede2cc1fa54c745dd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.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.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.14.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 975a10b2d9af4d2a0c290777dfbee9548f7064e3854b865742942ee01c0e1623
MD5 51b9b1673f965464a92eab5c433de75f
BLAKE2b-256 5b7b154ddf7ce425b45441f45cfe3c536d4ad8a7f2ae3d8e204256f09754b61c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.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.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.14.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 a2859269bc99cf062f3832c279ad5440b8bc0677e5a032346fc1a8a80f145542
MD5 c850bcdecbe72d69789470961cb11094
BLAKE2b-256 318b2826552c933a27aec81f7b63ce49d8d8767c4acf5d37109b9fd70866155e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.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.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.14.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 2e26f5527886c7d755844c1d32ecd21f4690e349deb08410f9ffd0761a749787
MD5 63ffa3d2656fc3d55bc7a6e3b9455dd5
BLAKE2b-256 84d71cc43b3ba992fe2fe5aa45eb9989dee1447adfec40794d8ef0f0b8805b02

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 9.3 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.14.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6d9f9ed6bdfa84d9eb418ad0c163560ac5d478c5334cdbaca06cc3fefea00e9c
MD5 30b214ba257f3472b8d594b62a1eb76c
BLAKE2b-256 2ff6b1a6a703620ac4c393d286b0289c6bb51294629aa1cae8ef3bc1bcafd164

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.14.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 339835ce87d824dd76b05b050505aecd498d986990c6790df54b45c555d4fca7
MD5 b352d557f67e6f11f363c5b59c614062
BLAKE2b-256 66e2389200169bde04d4b67d09785a45e6091cf1d5d13fa526cebf02fe2b8603

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0-cp36-cp36m-macosx_10_7_intel.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.6m, macOS 10.7+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.14.0-cp36-cp36m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 3e1d55fe5c2b981ed438edbe365af855444ec3c5a8f0ff30a0ceb221a9555f09
MD5 e19e419bf4f13931a71a1a75e255fa51
BLAKE2b-256 c2bc31fb22c3dcccf018341a88bb9edc642a9b78bdedf9153bd3edc0d8e2f070

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0-cp36-cp36m-linux_armv7l.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.14.0-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 84812b2d4edcc081272062fceb71546334e56556bdd687efe63462ba0ff8e00c
MD5 3827658bd97b721ca0a3bc696c028a7b
BLAKE2b-256 c37a236caf636ecf210e43478e81aa8692e15ea54132b57bae5c381852bb3558

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.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.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.14.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 52e97f0bb6b9331330c15b05dc91f019e7730c2f99a54f72054ce274f77557ed
MD5 84557c35f510d101292c5fcb7924cda6
BLAKE2b-256 2e1c7451288f896ce972a2d2112ed1d8106d3950a02afc5bddf307a1a5de3d73

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.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.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.14.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 4d01b1bc52bffc0a966d02bcfdd7054a27735954d18efb11d084543ff593f2de
MD5 951e5c50e576f06e1c27aff8717989b1
BLAKE2b-256 22fad6ca49f6ab95194c946d0d1680743486825c3b338e534aac84ac818bb6a0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 9.3 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.14.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e7d0a3ffa7ce3a40d9a2f00e8585264ceb2c0703d07afa39c5345fb33db27cbd
MD5 b7a732c3c53de31ae6c674a45b141d3d
BLAKE2b-256 23210aaa4c739503aec7e3a698f0e851f6953f986b53f47df60c18ae5bbd2d32

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.14.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 93318988bc6555ad9ff8ebbf47e56035a95958495385381282b68b991bc4302d
MD5 b2204bc96cad03b5892a3e99138b5357
BLAKE2b-256 f794b0942f4fad9aa0459bf7f142fafe4d248640533ce0cdb9ece97e275cf0df

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0-cp35-cp35m-macosx_10_7_intel.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.5m, macOS 10.7+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.14.0-cp35-cp35m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 c04aea50e4abc1f0933320a45ba445a217ae57afefd72cb8d6cfa8e61f9bf424
MD5 e06a4dd036f426463a24c7c704349ccd
BLAKE2b-256 47f8c640b911dc215ca4c322694d5bd3d4a1f1713828bf61a8dae581bd29c3a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0-cp35-cp35m-linux_armv7l.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.14.0-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 126324da2d626e52760117508b9d5114d6c81cd07b871e65cb7a966390fe0fa2
MD5 ae03fa5f1b45b883e77c03351222c134
BLAKE2b-256 4e06714f2b7cf00a987cb3db0b12134e72ecfa745bce2ee573ccc6e2c804ba76

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.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.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.14.0-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 9496b43a28d7c36fdf9632627d46487c4e53bca51fd964ff662d0e676c151a6d
MD5 c991cc48fae382f156f7adbc0e8a8f3f
BLAKE2b-256 587bfe4f98e524f102b123bd502919a09154d712e811b8eefbe4e0edd18d2a38

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.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.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.14.0-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 34b4d43c46f1d7ee9411dba168a0870fd1837abd3d0b5210e6a726e4f6e026fa
MD5 4f19bfb2d73f08fc99125cb235dfbded
BLAKE2b-256 5b7e07b9419094c4471f44304e2360123dacef9876c967978e205f6e1346cc98

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 9.3 MB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.14.0-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 59434f6c77ed0dc6c83e278ed3c0e6f5991ae583fd1e8c5665f2a844bb33a3b7
MD5 f734aae5c411bf973b2831a1c32ba139
BLAKE2b-256 7a4e7c480e9f1eb4f8ff6fc875cf9c55f3ac973ba76632c2e3f033a8e7458227

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0-cp34-cp34m-manylinux1_i686.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.14.0-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1e03d85ce4d0e369301a51af6be52700b456e8e0710862a03ffe595bdf4d1de3
MD5 de72ca6126a2a9588c7f083f6729e766
BLAKE2b-256 053fa4e104c449b95a87213929115a6f58390c04fc1148561a73cc8f6c2c9d85

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0-cp34-cp34m-macosx_10_7_intel.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.4m, macOS 10.7+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.14.0-cp34-cp34m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 29551709182a5b6e884f68424ee25ea1a0eb4532da1d57eceaf378491c287ba2
MD5 17dc6a36d25b7c7882b25559dc3ea198
BLAKE2b-256 54da9bf908defb5851f427bb47b11df8a3fecd38e000b9cd8b907ed6396ccc32

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0-cp34-cp34m-linux_armv7l.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.14.0-cp34-cp34m-linux_armv7l.whl
Algorithm Hash digest
SHA256 997b5854ae17c8f2e1d72abab37f96b96d6a05e536c57ff7f0f6222a7bf53b6c
MD5 25a740f091606a47bbd9fbd23b6dd84e
BLAKE2b-256 8e5e753f54c2ece8baf9bbb4bde2f1f26fd338e5d815fb49a577b0d5743859bf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 9.2 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.14.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bc220d9b89787a67cf87798ad2b7fdc54faf97281a3cdd02e23fb653c3c29abd
MD5 ecfa85305eb99ea19d517d07606a3b70
BLAKE2b-256 ea96234eaae211b6b34739018735be33e1616bc3e73c62d842c5189b80a4bd72

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 8.8 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.14.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 90096135ef8e8656660482675e30e6af4df67616690bfadd13be51ecf9202619
MD5 d37d0a1659cf26c3fc944a5db1daf1ed
BLAKE2b-256 9256389aad265884d0b9c67da8f6d3c2545fd51f3091ad0e7ff3581c58228a2d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0-cp27-cp27mu-linux_armv7l.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.14.0-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 d2e2ee3035cd357fcf4c3dfd38bcb43f5a0658dced5d405f6de41419721c55be
MD5 8cbb7de611a7ce493cc5d9b862f79f64
BLAKE2b-256 e5d5f5c92bfaa4d81618db5f1c063268aaf4d3a077016a8fdac3fa9d59bb27a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.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.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.14.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 2fe01f8fc078456f7c810d6106ac912662dd432823be0d81470d54f775fbd89d
MD5 2cf3d78110dae874b860812a4f11c271
BLAKE2b-256 78066853ee278135784d74f2f4900735595cfcb60d5ba29d15f4eba244d924c5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.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.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.14.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 e3df35591cc3eb9dc8f257b021b2739d47ea4d26b9e47bdb5ddfafba5214cba8
MD5 226039cf9c04b569eeccf8a968c6e7eb
BLAKE2b-256 f24298aa891ad1e4bbca2f916218d8ab2914cf8e33c12b928eddfdd1bf5c1e34

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 9.2 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.14.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 96915d5140848c80204e8af57c1a021d4edadf7b99090908b57f93973f071ee1
MD5 46c0944b6dc254cc795c7778ef1aaa70
BLAKE2b-256 5fa3f8d53e012cf31793e3857f87a6cdb54aec0c4bb8a7db5651c3722b6372c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 8.8 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.14.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 0dd9af65478ba73cb6a69335a0e506dccdc932c9803fa908052bf05c94da18b7
MD5 551591e96af9afcebaa1c5cb0fc146bb
BLAKE2b-256 92729ad7102bc79b82c7b46d8881ec85d553a2ec5ece23994f3062b46be3c1b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.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.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.14.0-cp27-cp27m-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 311e86e8fa349d89362831319ce830ce7f4187f4e61ac6ce1d05a0119ec9e362
MD5 cb9c1161fa1660bf0794c85e5f897291
BLAKE2b-256 2ee5bd1cb07547e90dea9565aff45bfbcbc6657c4001e70cde1450a6d1ff713e

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