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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m macOS 10.7+ intel

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m macOS 10.7+ intel

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.4m Windows x86-64

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

Uploaded CPython 3.4m Windows x86

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

Uploaded CPython 3.4m

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

Uploaded CPython 3.4m

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

Uploaded CPython 3.4m macOS 10.7+ intel

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

Uploaded CPython 3.4m

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

grpcio-1.14.0rc2-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.0rc2.tar.gz.

File metadata

  • Download URL: grpcio-1.14.0rc2.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.0rc2.tar.gz
Algorithm Hash digest
SHA256 0d70e8755aa987d4e27e40e898f85770d36314884e63a5cf760b69c816c90abf
MD5 fc79808410b396795ef4121d03913aee
BLAKE2b-256 3d5958a81b38b34958196599060525596859b62680419835d4a698a48dc39b2c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0rc2-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.0rc2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 51a047db170e671a1f86fa1c2ad4bdcdefbd28c12a3f4e6372dad327b7244c01
MD5 f3c7e23615bd9e1eef65b3c0a8185e74
BLAKE2b-256 254776c35d6bed611c29c1919c51647e2d042eea602bad441e3f184199b69fe7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0rc2-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.0rc2-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7a7d08b4a68fb13bc2c39d33e700b4456bf638b4a3cb7fe55aa68e1749869aed
MD5 948ada27142031391c9cbc992f547f91
BLAKE2b-256 a247ce49bd7735dfd0c82d7c457ac5cbdc1baf9337595654c95831d8a4c35c11

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0rc2-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.0rc2-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7393c602256c19a8ab7c4774f0a3f21034a53c1c16819997be704c580db1daa2
MD5 34284ec23072ecc0a0b84bc25b9afacb
BLAKE2b-256 6aefe56d1b02c1e686116c2f3119b470b2b3fb491023029d55f3008ce09ac919

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0rc2-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.0rc2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6b4a8c3b62eabd1d9bdc93c1c1c39bf3b539dc9515076f4da09d93355fee442a
MD5 a58528d470f6d44bdb8721770020e772
BLAKE2b-256 55e2a576a597e64e5a6ac06120954c8c3ab53aa6ab35277c11559df3ae8a61f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0rc2-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.0rc2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 468d892a200c48d07509d09d52b51a9a10bf05272bac7602a439d9c80a278903
MD5 7c4e236eb32005040392a05e5ec26baf
BLAKE2b-256 d49c91d6d3272c1b4f1a875b0d0d3c1e6e4c69b3018e4b8e7f5d003698c5adbe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0rc2-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.0rc2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 b2cf58419e57d3f6cc98b421da98f68456fec90a0d5d46699f362145f1e03883
MD5 730cb2d7313c77fd54987a6dc1a60959
BLAKE2b-256 b20ad035f51e52bbb0a8e726cf0caa135f58f6deff7c29735fe398272b6eb471

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0rc2-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.0rc2-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3f47436716c9ddeb88771eae8b0c915245bbd6698439fc2b0bb905d95c9cc3e5
MD5 90358de182b1eae7b776f623b9a25b75
BLAKE2b-256 5c23af54ae95f87cc2a9552a8f6772c47fe28841cbf5ee37f10ff35e844565b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0rc2-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.0rc2-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7fbab05a6081d67c66c92c48a1d67f13495e1e76614b175bc0cb0774e201c93c
MD5 990504712e09e287342e38424b65fe56
BLAKE2b-256 d9f88026a64432ef67bca4501437ab3b72ec6873d71d83b786e808a47b5dda7f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0rc2-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.0rc2-cp36-cp36m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 248a23a83615e1bd695b920fa3bbe61fb8e6c02076b0a421ad9d81aeac6c521f
MD5 b2555d521cf20082b8ffcc0918a3f95c
BLAKE2b-256 d8d4133a046c91b850e5c572a409568279fb7c9d0f2f2a33a6bfe36b0197de89

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0rc2-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.0rc2-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 0c60e6877b2420ffd4cff27020739403f0338b7737235698b1b103e06ddcc7fd
MD5 7474de721925b37e963d84c7100c889d
BLAKE2b-256 be7bac6b930000b66069e3ea9b21f2ff1d9b44635293449a95b55c1709925638

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0rc2-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.0rc2-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 25ee03e4b8389b507d9a7e0eaa09174024ff75d3091663d6d53eb27db990643a
MD5 08568decbe5695bff08e486aaeb4d300
BLAKE2b-256 dba55b49a03bd47b89164af8bf4e8c405e8c664b278d1830dc3a3c08bb42e64c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0rc2-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.0rc2-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 f9f92004bd7fb4fd95cb56b037f51c8cb40c917b5513ad3307822ecea22b431e
MD5 166186617c43828181d1e23cd8920454
BLAKE2b-256 80cb3176ce349ff740a9a34262cc6605e9e6f07cf314665ebbb879d5b0c96e8a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0rc2-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.0rc2-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cb3b1fb63a5b18240def6eac11d019e6173839d2202c8087da326e572551e62b
MD5 50232196d2a8dc1ff2ea0e87bb579a25
BLAKE2b-256 d9bc4292325699a689fd7fb249bde3f59a71c59420b4266f6f35f4eb7ca2c86f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0rc2-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.0rc2-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 0ed899c3d1e00928265df75888e2be2f2333335a14914775833ab708cb19b3ef
MD5 23a918a5ef72059a5fbbe0bc9bf36205
BLAKE2b-256 596980068ff8d475d57c6bb5e68961aa6148b298889322ec943627f271e1126b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0rc2-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.0rc2-cp35-cp35m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 aab374f6e336ee17bfa61996e85def48accd83b6f7cff73ca6ba204f8bd0a31c
MD5 c6cf5254a819d10d4c0835fb7b138c72
BLAKE2b-256 674e1c0c06f0c461d7a7cb7615131356bfed5ec52c255c1bb3dd980f39726643

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0rc2-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.0rc2-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 fb705b74b47d44d9528a3b24c1aae7606391002f07dd818780713e4799fd2da3
MD5 a1ef28610a4f64ac8ed46d891f1e7668
BLAKE2b-256 74d8b2a41bd028cf6344632dfb690787cdf5809423e01bf51274604b229157b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0rc2-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.0rc2-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 f3d35d14f27d969ed732a6d59aa9aedd3fad4bf82b57ba97952f18ad5155f3f8
MD5 bc8a37b603679df3bd84d321f90e7bd7
BLAKE2b-256 b74ee3d42e9f7fb47b6c8d4b8a03f5546ee5e88d58d610aeb7728580baac8efc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0rc2-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.0rc2-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 002d4d972b4e5f98a63b521b5892e3f2bab978d2e61866e6b677ce31d8201159
MD5 48a0ad0ace410704455d86cf50c24f15
BLAKE2b-256 7bbe9ad7e283d91173d9b9c102f3141adf365094e48b317b7c82422abde6c157

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0rc2-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.0rc2-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 af2c05de67108add6c0c9a153e73a35bf2fb11a26625f5839a0349c7bd023427
MD5 00c481698c291cdc20d250d23479bb37
BLAKE2b-256 187f53ee72803efd41542678f5eddc70e35e6cd7874a9da0087c9736e947b03f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0rc2-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.0rc2-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d652674fce18bf1167f57d75799a04ae4d6e158c612526b2b185182f181ebf18
MD5 5a5c0a90b2928c93fb3b12a9854f44ad
BLAKE2b-256 40e43c2bbe49db99b6905edd6eb0865877b5a94ea4f2632d84120dc96e313224

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0rc2-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.0rc2-cp34-cp34m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 e8581ae7e4ae6650dc2aef8dde66a665edfb8843912d77439922b5191fd9be1d
MD5 25bf1668cea08e5dd17197b8b5ce2426
BLAKE2b-256 373a705651aca8fd4d830246252796bfa4a0236a3e8f581c55c94c2af5c55676

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0rc2-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.0rc2-cp34-cp34m-linux_armv7l.whl
Algorithm Hash digest
SHA256 f3cc65a9e4aa3e01e71431b1241f2af306b038fc8696324c78121b951908680a
MD5 4937e87d2335a9250bdf57c1a7d9c3d4
BLAKE2b-256 5e832af23e6165f1f754a5638daef0a0268d872d913e92ec54c09526eeda162b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0rc2-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.0rc2-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3765eb6dc893afe217d485a1f91ff8d18589513966961c3d76aab963862dc7dc
MD5 b07cc23108cb00d05fc10434ec10c45c
BLAKE2b-256 f51d15a9adadc7addf97a4c188395cfad9693ba77ac4f69c987708cc6c60e5d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0rc2-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.0rc2-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3d2a26289587441f80326f99f1a91b3db99d3ba6ccf7c7fc81294d543653da69
MD5 4c72e9e9d99f66695082a84a855ac470
BLAKE2b-256 df9a142d2bf05c77658c6c1c0712e228531846b61a49b70f18ea15e90082b975

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0rc2-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.0rc2-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 fcea82a7f9d799e378a9fc372a631f0b28158d5d1ea2d6ad2896cbf86cda2dc7
MD5 a52844172003f91eb6f727817f22a42b
BLAKE2b-256 7a8429a17b6476dc5d8dbac576e037632a7565c3ac550dfdfaf733830de2403e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0rc2-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.0rc2-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 9e25ace1a08b9a9962f28d82019ce81259cb079b33cb2330869ca5d5b712e6dc
MD5 30edf93e38f2231f82e39eeecccd0168
BLAKE2b-256 492ab75a2a5fa1155a21af4d45aa23c6c874494e30beb8481e7e2e3c3fd8cec1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0rc2-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.0rc2-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 1be3d4a617e72f0c2e3785328a341fc7d7920bf4219dacaa21a2450546f2c874
MD5 008f81903efa73deec41cff4259b0066
BLAKE2b-256 a1b9ec572181837230c56fcf76ad8f65e2f15fb08d0949bdecff3fb4119e663c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0rc2-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.0rc2-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ea9aaf13fb4d778616920ae6056d421d8d94b470397e59f0ab288cabeff31aff
MD5 a28ab3fea6fffd4feb5f5cb5a75ca074
BLAKE2b-256 f3e54c0a3a84cff7f554cd14c37c37fc566d8c6112400dbbf5815431228c9f72

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0rc2-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.0rc2-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 44e589fcdea38e85daa1e1ab4e9017676764dc92eb9dd53633eb30c1fba87570
MD5 d967c64b2ae91557f38bcb3097a2abb8
BLAKE2b-256 99ba2aaec0fcc1708cc79363e4a57122dca33cde12d54bd3f6427b2b50051f51

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.14.0rc2-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.0rc2-cp27-cp27m-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8625ee9ad113f0137cbe1493976eabaf5dec00de8d063c134b28d0fbb9332b87
MD5 4007418dd5eabc731835c3c4784c3518
BLAKE2b-256 7ea497dccf32d851e0b078c2c38749387195d4356bd59e8aabe6614d899d3b60

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