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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m macOS 10.7+ intel

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m macOS 10.7+ intel

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.4m Windows x86-64

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

Uploaded CPython 3.4m Windows x86

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

Uploaded CPython 3.4m

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

Uploaded CPython 3.4m

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

Uploaded CPython 3.4m macOS 10.7+ intel

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

Uploaded CPython 3.4m

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

grpcio-1.14.2-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.2.tar.gz.

File metadata

  • Download URL: grpcio-1.14.2.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.2.tar.gz
Algorithm Hash digest
SHA256 19bb32ddedfc8424698ee4533362c40c0fbfdd2e922a9b26557a26446a479fed
MD5 25e9f3131695799e3a927077e1392667
BLAKE2b-256 a492be89519c8328d78f88136a4b11951378a28525fd9606fc51c279fff48e5c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2-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.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 f26aff4e93ea40d1e6f1f7130b6d39877f3834abb0b2aa0e66fd3073acdc009d
MD5 c5c3dbeed98dc95b2410d8d470b22391
BLAKE2b-256 eea3137910a8baa5783accac3c5c137b27c6e4d5a60d41690f46ff506f83c2b9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2-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.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 7e72a98bd236d76846c57ac01ab4aadc337ca4f6d451f02372f27f94e9c56c1d
MD5 4a5249d4bba4163dae370c1acdff0710
BLAKE2b-256 43332a6ad4d41e495cf2d646e52075687ad66046758de7a119eec64e14119988

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2-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.2-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 90bc328ca96671255d89034405e57d98abe7e4f529721eee5b78bb971ee4d53b
MD5 556da9761c5b80e6e125dfcdadca5268
BLAKE2b-256 d8bc13909d8de7ea345fac8039c673f1233586ee067ccb0fce554d86cd88f5cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2-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.2-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e86e04a3434c8c59b12c016c5a509fd8a9d13e20c4b3e392f0a47e702dd7ac39
MD5 adf6a017bb6c576d396a2a37783f21d1
BLAKE2b-256 3331f66ebac65f2083c4478f991c357f3282d011fc7b771fa716bb505355bf07

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2-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.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 94a609780c316b36631858a863268d3a17929b9cfa11ffda99e7a4c061adfe31
MD5 80daa77ff8c822bba6ae318c7252d964
BLAKE2b-256 f88d2c4db4d4284d6547d39cafb028d9a0f8400c4b63b603bb7e45039a32e980

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2-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.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 fa9b6949f1546be56c7bd7b956a06555c1cfc110a6615b495725326f51a757b4
MD5 1d9a1f24a45aeaa43aafa460970d58cc
BLAKE2b-256 65da03e722b7981ab3222f292f735a3c157b1d1bca120c479d7e273273828170

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2-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.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 b3dff5ffe4a7f5f988fd7d6233639a4dd4e3d5d52b5cb99a7c45151ebbadc15c
MD5 3698e8a57b8c414cd2cee8066c19c31b
BLAKE2b-256 f52ede514e01efd1f1989b9ebc699d5afe42f7a1815ad06144d0383951946a27

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2-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.2-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b626d0461bf2e466d8c8969ba16263218214d5e4d7856710590f8b6e1fe7c14b
MD5 d6169a3f3fb117cad391ce92a552b762
BLAKE2b-256 e50bedc9ab1d960128d609b394de70181ac84985e39983d009b608050534b75b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2-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.2-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b22122fb0674c1e2af7dd684e71d15de27918181213afb8d31f3ab7d97da8007
MD5 9793b6abcf3af1aefac0bdc2c9062cf3
BLAKE2b-256 80ff9e9ff538d458ee63fa172598e57a0c0fcff7d83b37ff1c527edb5641a9a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2-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.2-cp36-cp36m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 cb468146d0b16c56f0c5087f182e0ee18edfde18cf986feabb3f0dc5d05faefc
MD5 ce05d4ff4a0fa96b7b907ed2d2b5e5de
BLAKE2b-256 d4adc1ae01f257f84d091c224839bdd10a4a87643d5646eb97d13b56ef67ca3a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2-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.2-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 dadaf58e000251bfbcdfe8b270d076b90886742883af9d604c0efb1f9dc8a9e8
MD5 c4e0b5b67da7f69eda6d7560d9d96b62
BLAKE2b-256 3c38053c550116fb95fa71a4e85404ac9a15aa526729218d2e15fa50e1778f51

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2-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.2-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 f3109009be69953dcef69ced58b2f563af8bb6f9b8947fa14a122da78e361cc1
MD5 3fdf79bb26dc51ee7f31068fa40f1a73
BLAKE2b-256 010d858cd1605445c137bdba044bae35bf3606e0bcf5337095e356a4254466d2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2-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.2-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 5f51019780e3dfd50fdf343357814927d3707ebaccb847d65f7626be7b069896
MD5 ac86c6fc63cdf01f3d793b3cd82b0a07
BLAKE2b-256 cf3bfc50343b9bb867518c9b0a30ce8f91afafe9435f166f5e7b1727cb458f29

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2-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.2-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f27da3b44037d039e2a55c4d98d04967a3588272d964acaf95676af3389f1419
MD5 e7acbae363b2eff1f68e33dcf02f5014
BLAKE2b-256 f3ace78695aa5d370e4dc8683e927fbf88227fba419213fbac95baf91bfb8806

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2-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.2-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 9d8851e18731577e0cb4aa326abd1179fb2dc18ca1af26c7b5a853706a32aa62
MD5 116fbf3e644d6c6bbb600dbff2b5fbfa
BLAKE2b-256 fc11b99efb5659a8a1d391f8671b9cded76c134ab62d47272c42d221790b9dcc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2-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.2-cp35-cp35m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 92f279484675abcbfc5ff12cc97df29300eecbfafa83eac4ee1a6438bd3a9c9b
MD5 55c938601c1e04dfbf29a4a09afdab30
BLAKE2b-256 737574013a525ed0edc40ea6fa5ffec6fc5688b1b91701af899fce6ba50655fb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2-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.2-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 61b19e889c2ea6b941722a1b1226717b68bb40af80ca0d94e1f87a5bb61bd500
MD5 032a95111ec5e5fb341fceb360c9b778
BLAKE2b-256 7ac632fa27783eead0adfc22d947c1f7189497596cf104eef86f15a340880478

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2-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.2-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 b2ef358fe5bae8dab2e822fd204f2f61f61cc27e276b58fb5e0215d7a553b208
MD5 519c173729dd159e314aae71f114c59c
BLAKE2b-256 c50a61c76491044522c03ab7a04b2afe47ef3aa0903af3476bea07df377f1cad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2-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.2-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 4cd3ba58176934ff6d2662547f0aecc9dfab9c6b6b3177087d9b710b6237b9d4
MD5 f2c130ac2cc37520a9440654080c11f9
BLAKE2b-256 618ef0ad18f714b8f70925ea593b8e5e09c66ecd0e61bd1a1645520d6ea0e51b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2-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.2-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5f4992672d76dfdca0158c2fdf17631fd4ac0106fd48d9daa1d1be589f02597f
MD5 a5dbadd685cb90265309f218f11297c6
BLAKE2b-256 c933e0c86a299eabf463d4fb45b915a4833e5ccbcffa64ac5b7a5bc676b5baa9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2-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.2-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8aef8f9e449a6e175a59152f49c52519f5887f3a626fac75a75d91f3cb68d89d
MD5 df9e26b5f0c74e38f17295c7778af6d6
BLAKE2b-256 002ec836cbccd88c84a8b2bd417318201320d2763948753eb149571f9a51973e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2-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.2-cp34-cp34m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 e886e6317e62a027fbb30ff3bdbf510247ed805131520225aba85821175202d8
MD5 95593bf94564f67f5cabeb1d9da1e26e
BLAKE2b-256 162b2a318f891bcbaafd0e9a25fe30c66f13a7a5b5f93da02f9c92865b66ef52

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2-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.2-cp34-cp34m-linux_armv7l.whl
Algorithm Hash digest
SHA256 12f0d320c99f8ed8ab746e1eb9592b7c52aa133a99c25d1fc7ac3024c8db7839
MD5 ba8d7dd3133a05aae3d8754bbacda389
BLAKE2b-256 b8c9845945fcac7b0ab9b1d76265026b6dbd021cba6b7ec1d5e0e817a9cfee3d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2-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.2-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f197515a12c98bd4e199a06fced131c1623ff6ee443754a9ca97fc98f57af4b0
MD5 2882a52d16c83265916eeabffbd3110f
BLAKE2b-256 bda64bad0d1a49071363dc6547a5178656fe375c80535128c12bb65c59d1a329

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2-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.2-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 15a040e9c7cd2755a082c701ce8e12842ca166ff54fdf448ce1c70ee143dc228
MD5 c63b864dfc1dfc68f2f7bfc6a6c008d9
BLAKE2b-256 7316a7cf78484ee714b194fc31b6fae9f41d711b10cd90083c6e1cb3118ddb03

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2-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.2-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 007a6f1d2c2eb4631f815dc413b109a0687775b8b18e33e99cb971d611f7709d
MD5 2406f8173c93d1a265a451dc47b13160
BLAKE2b-256 3b375c9afab75d4b7afc5f2a71f59fbe05e9d42ae8b19585343d97a6c0881d60

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2-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.2-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 cc16f771c0206af2c780f4f06f684cede3546a072c8f3527b190e1db7795354d
MD5 d6de9cf9bff863da78cee9eab0f8f835
BLAKE2b-256 84966ee71a64b5536f290b5dfbbf784b3f2e9b78410133a65de20f623a39b216

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2-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.2-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 bb50103ba19b4ce4259639367ce84f06a638ea42586ab82ac15e2bea4772a5c9
MD5 17e0152adfe08cdc1032fc278e1a468a
BLAKE2b-256 afa6b72a8301d43135a28e584653254f83f9b680d66691c91ff993058e81b343

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2-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.2-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 800be53727f56e173bc0cd462478c5f25d56e99e7978fdb6717bcf482872caf8
MD5 92480b76c3558299f3ff8394d64cd133
BLAKE2b-256 99ec8545ffc34b5d0dca66261dabaa8bc44b93e8e1df3549792d9a5649f507cf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2-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.2-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3d69bc0a49c796dffa930761949d2d099fa42dfa7a8ecbb7efa74b1cc69abae3
MD5 f4489b44062bb6ca93e7c14574600827
BLAKE2b-256 861b6a81adf1cc9ab4b014c3b750adf28f0696c3f59fc83a57f8c1054c8e1091

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2-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.2-cp27-cp27m-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 baacd8c51e9d0ba9de58021778da2589274db518d16639b192a32a2947202f54
MD5 025eba7603f6b039fd38f2e41ddacaa7
BLAKE2b-256 61dc8906272fbfc05f7eb4d1c3fe90a6b74eeb2f1887c6c174c87a3f957bb190

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