Skip to main content

HTTP/2-based RPC framework

Project description

Package for gRPC Python.

Installation

gRPC Python is available for Linux, macOS, and Windows.

From PyPI

If you are installing locally…

$ pip install grpcio

Else system wide (on Ubuntu)…

$ sudo pip install grpcio

If you’re on Windows make sure that you installed the pip.exe component when you installed Python (if not go back and install it!) then invoke:

$ pip.exe install grpcio

Windows users may need to invoke pip.exe from a command line ran as administrator.

n.b. On Windows and on Mac OS X one must have a recent release of pip to retrieve the proper wheel from PyPI. Be sure to upgrade to the latest version!

From Source

Building from source requires that you have the Python headers (usually a package named python-dev).

$ export REPO_ROOT=grpc  # REPO_ROOT can be any directory of your choice
$ git clone -b $(curl -L https://grpc.io/release) https://github.com/grpc/grpc $REPO_ROOT
$ cd $REPO_ROOT
$ git submodule update --init

# For the next two commands do `sudo pip install` if you get permission-denied errors
$ pip install -rrequirements.txt
$ GRPC_PYTHON_BUILD_WITH_CYTHON=1 pip install .

You cannot currently install Python from source on Windows. Things might work out for you in MSYS2 (follow the Linux instructions), but it isn’t officially supported at the moment.

Troubleshooting

Help, I …

  • … see a pkg_resources.VersionConflict when I try to install grpc

    This is likely because pip doesn’t own the offending dependency, which in turn is likely because your operating system’s package manager owns it. You’ll need to force the installation of the dependency:

    pip install --ignore-installed $OFFENDING_DEPENDENCY

    For example, if you get an error like the following:

    Traceback (most recent call last):
    File "<string>", line 17, in <module>
     ...
    File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 509, in find
      raise VersionConflict(dist, req)
    pkg_resources.VersionConflict: (six 1.8.0 (/usr/lib/python2.7/dist-packages), Requirement.parse('six>=1.10'))

    You can fix it by doing:

    sudo pip install --ignore-installed six
  • … see the following error on some platforms

    /tmp/pip-build-U8pSsr/cython/Cython/Plex/Scanners.c:4:20: fatal error: Python.h: No such file or directory
    #include "Python.h"
                    ^
    compilation terminated.

    You can fix it by installing python-dev package. i.e

    sudo apt-get install python-dev

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

grpcio-1.17.0.tar.gz (14.6 MB view details)

Uploaded Source

Built Distributions

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

grpcio-1.17.0-cp37-cp37m-manylinux1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.7m

grpcio-1.17.0-cp37-cp37m-manylinux1_i686.whl (2.0 MB view details)

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m macOS 10.9+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

grpcio-1.17.0-cp36-cp36m-manylinux1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.6m

grpcio-1.17.0-cp36-cp36m-manylinux1_i686.whl (2.0 MB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m macOS 10.7+ intel

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

grpcio-1.17.0-cp35-cp35m-manylinux1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.5m

grpcio-1.17.0-cp35-cp35m-manylinux1_i686.whl (2.0 MB view details)

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m macOS 10.7+ intel

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.4m Windows x86-64

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

Uploaded CPython 3.4m Windows x86

grpcio-1.17.0-cp34-cp34m-manylinux1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.4m

grpcio-1.17.0-cp34-cp34m-manylinux1_i686.whl (2.0 MB view details)

Uploaded CPython 3.4m

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

Uploaded CPython 3.4m macOS 10.7+ intel

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

Uploaded CPython 3.4m

grpcio-1.17.0-cp27-cp27mu-manylinux1_x86_64.whl (2.1 MB view details)

Uploaded CPython 2.7mu

grpcio-1.17.0-cp27-cp27mu-manylinux1_i686.whl (2.0 MB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

grpcio-1.17.0-cp27-cp27m-manylinux1_x86_64.whl (2.1 MB view details)

Uploaded CPython 2.7m

grpcio-1.17.0-cp27-cp27m-manylinux1_i686.whl (2.0 MB view details)

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.17.0.tar.gz
Algorithm Hash digest
SHA256 18fcfa88a6ce7b3a1e903823fe1adc4367c01c28e992ef6cee2cbf85390d63bb
MD5 80eeedf2150de90cdc7b957b07407dc5
BLAKE2b-256 96939f5abdb521cdea251de25a7546d34a739556b8d07dd37deafd2dda24f8f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.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.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 7e62575e56827888188dd75629467d53413130caf0c6dd82a7912a51dead1300
MD5 f5ef43e523bc99365a24b5cf062c51e6
BLAKE2b-256 3ffbc679c30fdf93a653dba8ce414ca44b43cdfc7a86ad7fe040c897bfccad33

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 886bcefd4d679800c50adf465afe45b5b41742e771addaa94d4ce69c3086ea92
MD5 a487f338dc1adb874a40b7bba8ee9b60
BLAKE2b-256 23918408da2a847faf3383a5b66ea230a78e89e5350c479dae4cca39b626b639

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bbb0771f45425898ff6bd480effef36dcc9609dbb0a311fb6afabbde05b3ab8a
MD5 47aa3cafe945b9354d8ec8f24eaa5570
BLAKE2b-256 fd8519b89696acf12ae6398bd6e83d9bb930052028b4526a9e9a676de15513c4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 105ef978b29d1e08b5b404f3267ac80c26be55cb6e21b7cff1b94091d1c9eac7
MD5 f0f6642c6bb52489926fdf684ab38b69
BLAKE2b-256 018a4fdfbce346e6eec8c91402d979b2a211a79f26b157dd42073df8564e482a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1cbafb3e1a5e6f54f9f0d493d7e41e2a4fc6476e5954bb60bab91e223b694429
MD5 bd1598ae23e7a370011a36b4312fc5f2
BLAKE2b-256 e895537181f499764f40ef64c3ade1c501927ecea73e507fc514bc8ca4b343d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.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.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 3f5828cd296a4b2b819dad0cf9b22d859af874b20d0f7ab485d1c430419256fd
MD5 99047dd0703e4ac07d9e0d7fb82712a6
BLAKE2b-256 2fbc671ce1e13032cfaf6d4d8901019d376f8ce7f18ee046435bf18ee5782630

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.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.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 8f3d1e03bd5f60394e1920dc85236efac993eee5011d03c64e3238f6ead84410
MD5 090aa4b5e229f13277ef7346d98afdb3
BLAKE2b-256 71d7165601a665dac3b61b0372e9299691656ae02498604ee7bb96f93a868e27

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 65ca882c09c94cb395517c4c2727b09cb281514125a93bb4c571df2edba90101
MD5 b81fba987aa4e1c5644dd81f780ddaac
BLAKE2b-256 97642975e1d234c7bccf7a63e84452800f96aeecfd87d8310f77aa4afcda6bed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 278d2072a4bcd42cd1d3810611a510abee37f0dfcfa7c1c29a306b2a1b9690d6
MD5 4cb765628c46174a4e266d61b9187141
BLAKE2b-256 84de42453f028959a1864244dca66bd2776793c6ab2db9a3d9aee58b8c4d0418

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.0-cp36-cp36m-macosx_10_7_intel.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.6m, macOS 10.7+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.0-cp36-cp36m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 beee76e4a0beaa43eb2b1a0e34aa4a547aea28626e8553bca5c705436ca485e3
MD5 c49c6365555bdab2f2ede75d0e5a878e
BLAKE2b-256 43bf20fc60520e518fe1d1cab864e5210656cd3584d1fbeeeab98075219c3d84

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.0-cp36-cp36m-linux_armv7l.whl
  • Upload date:
  • Size: 9.1 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.0-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 0930ecfc6c07c1484196643c9de9b409c583b9f06ad6b4d2a2778bd48cc75210
MD5 35a6f099a912c39b6fdf63b349f3ef4c
BLAKE2b-256 4366c0709ec5b9b70bfdaf06fe880510710dedd7f4eb97002c1478218b6f65ec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.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.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 5805827bdebc24f4c4ab18e425e5e8af85d34154e4fbc0673964e3b0b80a782c
MD5 f2d43469ef5b7bca09c6bb93a5282bcd
BLAKE2b-256 cd0e19a9f44f2137a78dd22130831ca7b63af5372567cf8bcb24c841ae4ddc3e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.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.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 94ecb774cf0fa0de95c2a856fc4cc51e321fb635b851734dba94f8f9b64828bf
MD5 ddf1a73f09c4b34855c4fbfd82563043
BLAKE2b-256 e6ff962d489d9aec8b52db1225d56ee0d83ce381f2e4217bca38c7aacd42cc94

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a22fb84b8bd15f006380a83dea0c558beafb6beb5a6c3922c16770638f5cdbec
MD5 224bdee2005aca1ac54cafa4efeae138
BLAKE2b-256 c95f3bb67a84b671a294dfe6564680b86790dda21fe0549f487dfed795c637ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.0-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 61de1a7334464017f3cd169c8d02ca96814bdc74f7f7b3bcc3c80d98611ce11f
MD5 5bd4f92ae4eb1de8d074ecb7e3f808e8
BLAKE2b-256 91e89cc37f3ba718cbf9656d817f95eba30e45552c8b8bc8d4f376717844bdf8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.0-cp35-cp35m-macosx_10_7_intel.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.5m, macOS 10.7+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.0-cp35-cp35m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 a44d5e43c0ec103fc327be0b732fed1783db20dcc3e43dbc77e779b49046fe06
MD5 15453ea7f2aba740a03d37b001b27ca2
BLAKE2b-256 65714a68466e0cbe3c1c02afe9c846977b5601f40c8af32adb8e6286f405178b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.0-cp35-cp35m-linux_armv7l.whl
  • Upload date:
  • Size: 9.1 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.0-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 a6fb8ba46b35ec1bc4e3875934e1641469cb655228960d29af0ebba7733e21e2
MD5 f81adebc43c06aae3be15f32ea8de75f
BLAKE2b-256 3f2808bbd82bc40a87d2cbe95d2c3fca49b3728dda5111dc4d9cce2a79c31e89

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.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.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.0-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 5695c79e4c8a20caa2fe2f570dcda1cc5536cb9e8f03eafb94a6b0f37552b382
MD5 a0314a4a9ae51ab56415f3e3887582fa
BLAKE2b-256 b7d1c4718793870335709e14cacdb2ff3da33b891db65fbfd1ebfa7b0f3a7efa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.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.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.0-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 6c9bb3c2b23a2aca31c75edfc71535d72c8d08b29ebb9dd020450406c8fb972f
MD5 84d6141d2225662071aaffd51a6baee4
BLAKE2b-256 67666c532b984f354231cbb27ca6eca32aa45ddf329040d82edd853ae87a2005

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.0-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.0-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cd29fe5d9617dfe8047addd276964f4c28e0a8861ba23b63caacb2ff680010ec
MD5 17ac777d6c298e038abad5dde23b422d
BLAKE2b-256 9427a101ca8b62cbda4641d8af5da3e210feec44a68287721d2b97fb36e14e78

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.0-cp34-cp34m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.0-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d6c5bc95fe91ca0b62b8aa10c6f8839a17e346f61baa17e66ba3228524beb32c
MD5 f4ff1aa2b8261ad8a7c273346390b4db
BLAKE2b-256 a4f8b9b14847546d9935524eb29aff10807b887f7dd5daec4526fb9d7f93154e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.0-cp34-cp34m-macosx_10_7_intel.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.4m, macOS 10.7+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.0-cp34-cp34m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 5fe448942f3deeccc15b50c9e0b4f73ce56c32e34e69c56b91b7645d3239b700
MD5 aa8dd687a6b4862011e4a72199754e84
BLAKE2b-256 25a2afeec73ee721a688277a3fdd3d7b71e6ea5b8a351d3edcc3a2e19c039cdb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.0-cp34-cp34m-linux_armv7l.whl
  • Upload date:
  • Size: 9.1 MB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.0-cp34-cp34m-linux_armv7l.whl
Algorithm Hash digest
SHA256 33a899c9dbb33b493dc16ce2f9088e1002094a55cc7260efb78488a69ef48c53
MD5 8f9df6d6e000895e5d8b89afcafb5a22
BLAKE2b-256 c88e8da6a1dbf4bb917b8675e7cd214106465b703b2a3be12e46f5daca2174d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.0-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8a272e3c57813a60d66c734be964873330eb0ba3e4175d847f5c2f9c65a4bc47
MD5 3137144c02dc00b16a67118ba4ce954f
BLAKE2b-256 c0a5161f97110155b7bb828336cf42eab8dade2ac6b58714e5406adcb099b0ae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.0-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5216b5e90dcae438d3e9aeb6dce3f0d18d8f96434e660653c992c5cd8a13ad6d
MD5 55148cced1d63eb5a7fb21a4fbad0077
BLAKE2b-256 2c66ee57b3051b048d5450c53f175460550e86602a76676e7705d4d5682a061b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.0-cp27-cp27mu-linux_armv7l.whl
  • Upload date:
  • Size: 9.0 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.0-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 1ec9cb3ebbe9d3ec1db0153593dbc55394b600353056ccb88df4d7ce947247c0
MD5 04dbf97d718727e7ce54a074075a8170
BLAKE2b-256 3814405721e1f93625e316799171898574f5cad9c4c754f1e363ac8f2def7e4c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.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.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 5e47c1d13d330451fe2a5dc5350c7302e5ff43dfa4e3adf9ac880aa16ea4b306
MD5 133acf5be9155eac5f51e052f6582daa
BLAKE2b-256 cb82b97a2683ce884e01b9c0833731c0670d6d61b183deb841c177f7a8236976

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.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.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 8c0471bede2b5410a38ad054174f32a396bc20161fb5a77179eabe64d30fe5b3
MD5 cc065b143c1935f189c4043ea4db94fe
BLAKE2b-256 a12f26c77356fda0da828ffa70755f44fb32e9783c2d0a174dfb440c0bc69370

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.0-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9297254ba6fe73361444fe7ebf0e7b96c68597779127e7e77dfeb08b0a9e1806
MD5 3d2d01ed2e8ed0b3b3df6d3935b3de92
BLAKE2b-256 151df5994a29ef391c85e11a5ccb35954400b785f786b5515f8002bb57466ab9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.0-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d1c64466c388001ce7ef420bf8cfd289b47938ac897e0293b9a8fbd64fd8546b
MD5 684af5319aab8706a1ec42c43cf1fe21
BLAKE2b-256 fea48ff6fc30ad5aed74b9871df5c616a00b6461f6900db847a7f22eb6beb5cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.17.0-cp27-cp27m-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 2.7m, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/36.0.1 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.17.0-cp27-cp27m-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 43fda83c2b540c11735f9e039cb2470e4925ca9c128a34fbb74bf2e419623c15
MD5 d14f86ed37d5befb7e1539faa301d7f5
BLAKE2b-256 71ac55d690f98797bd4558f8b82914d9cdd023d057c3a0217f1416de09fb4891

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