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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m macOS 10.7+ intel

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m macOS 10.7+ intel

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.4m Windows x86-64

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

Uploaded CPython 3.4m Windows x86

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

Uploaded CPython 3.4m

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

Uploaded CPython 3.4m

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

Uploaded CPython 3.4m macOS 10.7+ intel

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

Uploaded CPython 3.4m

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

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

File metadata

  • Download URL: grpcio-1.14.2rc1.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.2rc1.tar.gz
Algorithm Hash digest
SHA256 ad0239c037aed787025e08de3b7a60d4fa4146b29d07b8810e45ad00b2d2370e
MD5 9275fa848a144d0b69f41341d19ff044
BLAKE2b-256 f30bd28b139765f6297b2f33516adfc8cff5b030bf542c89d43da20b4382e257

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2rc1-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.2rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 c7a1131db6f1e952d7cdc2c30f66909cdde0fe11de8af8ce80b43adc1afa36c6
MD5 98574c198df297285bb5cbbeb91cb544
BLAKE2b-256 269eb8e456d97ca82a430237ed2e83848f200f4f978732c90bd3e16b9fa5ae64

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2rc1-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.2rc1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 fe104a61d2b90f1a657e071a3aab7eb8c2249ba4e9a21f1fbcdc8cdcb2a52fe6
MD5 2f38b63e982c59b01bb4227bf73abfb8
BLAKE2b-256 cb603d3252059513017f68dc79e5a4e8f377082b6f4b3ee4fc339ed086cfa00b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2rc1-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.2rc1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 dda5a1a9b238017f15dae13329742a845ef672f275bdfda20d756f26fdbeb778
MD5 689dc50e1a60d19208a82dc14e495e21
BLAKE2b-256 032f4810ea0ab7312dae48712c66d166f685747c3af9c018029a32d488a3a70e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2rc1-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.2rc1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 886ca71f8302c522be325bb1fc9eaa44e645592f1894ea9b66b9142bda22726a
MD5 3a29ea77b70a47a4cc64eb901b6eacbc
BLAKE2b-256 2633ab890eaceabd3a59af59159f5189fae0d21ae04f2c393a8da7be4daaa716

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2rc1-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.2rc1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8d45bb2ec9abb89ea6a9c64dfe5931b71ae5dbe26b4b39b22949a919f357a716
MD5 0e10da3f0b8eec2e55ff3293377c208f
BLAKE2b-256 779a9b8ddd390d3097b313a170901634c8d83a852edcd810677c7c01872b7e61

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2rc1-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.2rc1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 15c7a8cc5815606843d14ba1c46a2221051426a1893eb455986b6e1ee8af54eb
MD5 8676e87e992eeba4dc644fe147d1e604
BLAKE2b-256 68e90c47749cf6710918fffd9039c920b876ccfb5a55d788c09996597dd695e8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2rc1-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.2rc1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 7180d9e5253ae11d6bc4198ac2c33c091e14fd777a229388e521e62775887b2f
MD5 af9cf481f6ce209a7688c96c9ecc1ac1
BLAKE2b-256 fa2703a4bbaf8d1fc603967ca2b2b390088756147378887b6451e41f4c83b37d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2rc1-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.2rc1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f4cbe71b758e1e9b315a854a9ce5ea023aa839c2d0e1b01e91c4565411fa3675
MD5 1949a4605e8999c3d48bc7960896fe59
BLAKE2b-256 7d1347d1bd54d3e1f9e8991ce32040d5af00e842c7e0d0492467e7bd52b83680

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2rc1-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.2rc1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 17bf9e7e9ecef17b83f5d609fb22459907a52d8432023ee541121783cf584e3c
MD5 58bd958d19caaf3c0346958b57ded2a7
BLAKE2b-256 d78dd53cd984ce877509454e050ba21d6ecca3e981332180c75a19af08202baa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2rc1-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.2rc1-cp36-cp36m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 433e85f302684247c576f7da24a508a5345cd2fe789b05040b369003a1ce233e
MD5 ad4031a74b6fe3bd1413fc7be077d246
BLAKE2b-256 2ab07ae4f88e8c440691e404d2149665842350f78b22c497c770f3b1eb18ea25

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2rc1-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.2rc1-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 b9b91594fdd92df0fd48213d24cea9e68b4a3d7b58bb8f2c321a0fc82d765265
MD5 abaa65ab5de3a24f03534cd6a10e8d7d
BLAKE2b-256 9b24afad98f16e6a8c50a4226afdd0a24cc18fb50b46d6b93fb86d1c8f286927

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2rc1-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.2rc1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 2027c2607f6a84e831fe11779473d46ebfc82e90a9199f172e5b23deb1abb625
MD5 0c1edaf77297c8148970309ecc18a61e
BLAKE2b-256 38d56e8eb010abdd4ea2f115b3bd28e3cdf02008d82d0b763ed643a4061115cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2rc1-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.2rc1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 15df30fbf53ade9f5f654729ac560c75dbfb36cb173e2ea0490bb5a0fc4aba1f
MD5 eccb60b32639b7539f112db806e13617
BLAKE2b-256 6746936fd369250ec6a733504fc512247009570250ee97d5427b68f389d6ef2b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2rc1-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.2rc1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 081e66d07cdf6edbed7ca53857423e651bf093063efebccfa4fa331fc5d50ac9
MD5 350ae64213724b462b2e0a8b57ee2438
BLAKE2b-256 fced2bbbb9420b7d4fb6ede13213770616c142084d54c5ba2d385fbd6eb1a00d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2rc1-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.2rc1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 fee2030595ceac97b05d3e3f61f1e3637fccd6da86431f72f82a25be075faff0
MD5 262695258137587b0fc4adecb2ba20c0
BLAKE2b-256 250a158997d219b2d5efe468b57facfb9ae94561ac679f4dbce9ce2523215a6f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2rc1-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.2rc1-cp35-cp35m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 8f647ab13550273530835d2f7792b3454858677f08f31d9ef68a4baa97ac9f01
MD5 078735d7bd153284b861c2bdbc9cc02d
BLAKE2b-256 b66ba29334d5eb1c141de0c029426dfbe0c9c7ac053da7b12d29843da0e69331

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2rc1-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.2rc1-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 9d745b232d23a75d52f14c940ea28e5a95a510f00c9cf3120400b2d93b9f0ee6
MD5 8c9f17c27cbead3aa73051448328ca25
BLAKE2b-256 8d21362b930f4d4d07a049a04624cfbc03cb2b038c15a7e64f5e9f0e30151f4e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2rc1-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.2rc1-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 d954bc5f511830168321d5a4a424e8e178cb58ff44fc32efbbdf99698892d292
MD5 b26a6d505bc79614ce8af33823208fa9
BLAKE2b-256 6be337e883eaba188e47e93bc8854767245919065aef34341d0107048dbf0c65

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2rc1-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.2rc1-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 1b34cd9f85f3f39202d2f8f1205c4cc7db3d4f98cda289d7ad415da7baaf71c0
MD5 4ebb5a71e9c038cb06a8c1c42d69353e
BLAKE2b-256 f568d810a5cbe717e63e2c965d6ff9d706223dc051d9264e7ea022f6c778b651

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2rc1-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.2rc1-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2bc08a60c364af7cebf39efa2ec4212ad287e84fd5991cd5184cb58de4f84f8f
MD5 073f5b4a39c01c35b5c65c7dba9e0ae2
BLAKE2b-256 21fcf13c6865201d4ce37e36e2a691bb41d95a008f38aa25602ae78e89d9afcf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2rc1-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.2rc1-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 62ed49660479dafb33064c27f93a811deb43dffc3b735314f333bd34bc50d631
MD5 9dfd6c39324b5a653736940ef6d22a04
BLAKE2b-256 9533f95afb0e766cda7f3241cb7f07b32d03dbd5ae0b17e6ac31088b4bebe239

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2rc1-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.2rc1-cp34-cp34m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 4c8bfe8b48391728ec61ef28de096bea20f4a94a30eea4428cbdda8d264fe840
MD5 aebaca4f409a2cb086e2654496043e92
BLAKE2b-256 74baedb72bdea1750ad629fbb9f2f5662b061a93ea188ef728ed8f2ea5950388

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2rc1-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.2rc1-cp34-cp34m-linux_armv7l.whl
Algorithm Hash digest
SHA256 126ecac2a439405946caf94aedf71a2209a19535ba0a8bc63a4c397d5f036d37
MD5 c711b42e93abdf011e48786b908ed152
BLAKE2b-256 8613be42b3cbfd961032ef14bcc5dafa7c420da78486d1e1b26f1dfe52615ab9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2rc1-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.2rc1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 31332b5d3410fcc555eb59980c290b967d1b2533f620657c06d03c392e9e2f29
MD5 ddb8c9b70aab9f6d7796078f9978c51d
BLAKE2b-256 73f300fbedea6a98ebfa49a6b5908694b4dc151b636bb83d4a42190581e854a7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2rc1-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.2rc1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8972ce64200a0d0bbdc39142af505350b108659e9027bc418f4d17d48055ccc5
MD5 21f3146fc23e23b955b935aaf22248f9
BLAKE2b-256 29e49455734ef13c21ff30921ce5a86f539b5e6c48c19103ced869aff6f85606

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2rc1-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.2rc1-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 b76589f7fc32030b2fd921b2870cc3b4723790b28e769291224fd53ed0c3754c
MD5 ab781d9d84ff8088d6229bc37c2e4572
BLAKE2b-256 eac25eb5c1cb8008d474b06b7c3bdf9fe2552373459edf6ba47d784b03cc6e9d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2rc1-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.2rc1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 ec5357fe3bf0cf6805da2e0ab5c11060dd103f98ba89c55b6efa98c54bc37d3f
MD5 e57bd65f8b11b8b6e13bcfdcdf43cc09
BLAKE2b-256 c717bb1afa33265d3bec938f975f83e3564c87ac3da7e6a2e2a8892cdefdc499

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2rc1-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.2rc1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 6fd6803a01bf3a0e82a705433617fc13a190b29fe3eb484df9276360fe9754aa
MD5 d010fb477581a32834d9e2768e3c70ad
BLAKE2b-256 cd0a499dd401a48be51b2b14b406392abd83841ede42cd7ecc3dca13f55a7bdd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2rc1-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.2rc1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d9975be11a44bec6fce70045879a4fbdbbbee7317b24bff4b2fbb70977b8e574
MD5 1c464a2e93d958c146c8a1b23b778702
BLAKE2b-256 271b478a6191f1314a6cc302b79f354085604bba9f4612562b60a6d92ef6ab33

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2rc1-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.2rc1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 6e90ebd9bada1e78ed0921e2e16a5e72d9c44aad3eb80e191e67cccca73dae81
MD5 4141ba94fd4310a57b9c178bd2de2e7c
BLAKE2b-256 666ca9a58b90ada33d4de67bc7f09dedd73db1b8d3f4106d967ee3ca3bdbf416

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.2rc1-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.2rc1-cp27-cp27m-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 14706b98637d46569de8b1ba226197fa26905477995d8434840d933e7f0b4503
MD5 67ddf55f33cf4cccddfdb52c9cdd9cf2
BLAKE2b-256 6542897576a59c3cadfb501c2fa009b6bf7501978f7a27f6e30e37fc4d96487e

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