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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

grpcio-1.16.1-cp37-cp37m-manylinux1_x86_64.whl (9.7 MB view details)

Uploaded CPython 3.7m

grpcio-1.16.1-cp37-cp37m-manylinux1_i686.whl (9.2 MB view details)

Uploaded CPython 3.7m

grpcio-1.16.1-cp37-cp37m-macosx_10_9_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

grpcio-1.16.1-cp36-cp36m-manylinux1_x86_64.whl (9.7 MB view details)

Uploaded CPython 3.6m

grpcio-1.16.1-cp36-cp36m-manylinux1_i686.whl (9.3 MB view details)

Uploaded CPython 3.6m

grpcio-1.16.1-cp36-cp36m-macosx_10_7_intel.whl (2.0 MB view details)

Uploaded CPython 3.6m macOS 10.7+ intel

grpcio-1.16.1-cp36-cp36m-linux_armv7l.whl (8.7 MB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

grpcio-1.16.1-cp35-cp35m-manylinux1_x86_64.whl (9.7 MB view details)

Uploaded CPython 3.5m

grpcio-1.16.1-cp35-cp35m-manylinux1_i686.whl (9.2 MB view details)

Uploaded CPython 3.5m

grpcio-1.16.1-cp35-cp35m-macosx_10_7_intel.whl (2.0 MB view details)

Uploaded CPython 3.5m macOS 10.7+ intel

grpcio-1.16.1-cp35-cp35m-linux_armv7l.whl (8.7 MB view details)

Uploaded CPython 3.5m

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

Uploaded CPython 3.4m Windows x86-64

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

Uploaded CPython 3.4m Windows x86

grpcio-1.16.1-cp34-cp34m-manylinux1_x86_64.whl (9.7 MB view details)

Uploaded CPython 3.4m

grpcio-1.16.1-cp34-cp34m-manylinux1_i686.whl (9.3 MB view details)

Uploaded CPython 3.4m

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

Uploaded CPython 3.4m macOS 10.7+ intel

grpcio-1.16.1-cp34-cp34m-linux_armv7l.whl (8.7 MB view details)

Uploaded CPython 3.4m

grpcio-1.16.1-cp27-cp27mu-manylinux1_x86_64.whl (9.6 MB view details)

Uploaded CPython 2.7mu

grpcio-1.16.1-cp27-cp27mu-manylinux1_i686.whl (9.1 MB view details)

Uploaded CPython 2.7mu

grpcio-1.16.1-cp27-cp27mu-linux_armv7l.whl (8.6 MB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

grpcio-1.16.1-cp27-cp27m-manylinux1_x86_64.whl (9.6 MB view details)

Uploaded CPython 2.7m

grpcio-1.16.1-cp27-cp27m-manylinux1_i686.whl (9.1 MB view details)

Uploaded CPython 2.7m

grpcio-1.16.1-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.16.1.tar.gz.

File metadata

  • Download URL: grpcio-1.16.1.tar.gz
  • Upload date:
  • Size: 14.5 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.16.1.tar.gz
Algorithm Hash digest
SHA256 41bf456665d666d0a07cb1b363626745dc1a98b02395acd666b36c929133a72a
MD5 2332bd45ac67edcb076ce291f2ad55de
BLAKE2b-256 fc3b2521b40ca9ba6950e68e8556429b5f1c4499378cc09c0efea9dc4038c7aa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.1-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.16.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 703e431ca770b924f85d14bb02a1ebcebf70541a068b4cbc4a1f2fe88cc4e997
MD5 0a25013d4d4bee2b042e3ad05f587c26
BLAKE2b-256 e623456a9a229cc8a4e69ef8fab82cdadd7d1e1580b9cc7d01778e7a358abdc1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.1-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.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.16.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 6a6f5bfd3e23ac43dcb11e7ae8ca499c5a283df138d0f70f05cc2a46dd0599d2
MD5 7dd0adf864d666464c195ab7a2571634
BLAKE2b-256 3ee20e4e9811532295e1927fd998ee2f678e846f0a91a170009c969fc01ce223

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 9.7 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.16.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 df316ce5b353d8ecb9fdff4c5bedb86964d4f46cf979825a444cc3e03d5ce2d5
MD5 7d3f533fd2c6b3bc8684d38923f1e2d5
BLAKE2b-256 3829c1afe6a27c43111081773b8bfab444f5fb21669d36b6f355a800867bf9e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.1-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 9.2 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.16.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 09a37a0121215740fb39c5e20afa2d40a4731799d8b7dc61d854a75c9299b6a2
MD5 6010d5baeb868783499cd18a3adf50af
BLAKE2b-256 db9f8f446b8b68b2371e0e156f2728c0b4c5d7e8a29395c03da6bd241931ff3b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.1-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.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.16.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 446b40a37250acb2555962df900e0ce7d5c7e8b9c5353bd786b75a389d2b67a7
MD5 86dae2c75f1a3793c96d0d6c71768b0c
BLAKE2b-256 38d5cd754189f2e7ff171d1febc2d98849100c71cbd91f05fedb10af870ab38e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.1-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.16.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 58b09826e26f7842aca2f81fb4c7169fdff3e58c4b1b635a8a2cd0b3a216ea74
MD5 2da5b64357cadf467a5eb2a7ba01431a
BLAKE2b-256 2396c98fb50c0cb693e3846ff4b9f39d09bc48b7302293c8ada3bf47c6467c58

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.1-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.16.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 7e8c15407b5d85cb7ea580e2e272af4063dcdbb1b0ee93f0131ba3b345679bd2
MD5 e6a3809c34aac856620dd64852aefad2
BLAKE2b-256 fb7c8959aaae9e38f6a6f73ecba7013dcbe6c7889f7717196d09fe9db70b4013

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 9.7 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.16.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a73f989e45b34d211719a62d565ea13db32c7ae741fff5746126b2aacb31a0be
MD5 6fb6159f0adcb6b51d6fa10cf94f410f
BLAKE2b-256 0e4fe9e84e4600c43cae7ce58489c6e73ff4c864557bc4d4d0f0029c79e07f31

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.1-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 9.3 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.16.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 78b99a433b8ee41d878facd76c6877a688b5f1e07634968bf3f86fdf0557510e
MD5 03e966633b11c4e31cdc932b8bf32bc1
BLAKE2b-256 066d3b10844af6180690e31e5734d2f5f2af7d35addc32c6391720718d4258ec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.1-cp36-cp36m-macosx_10_7_intel.whl
  • Upload date:
  • Size: 2.0 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.16.1-cp36-cp36m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 e6dc1ed826107f782f300774dd933eadfe54784a5225a0a5af4a31821a440136
MD5 7b4f6695e606a044b85c454a81c846b5
BLAKE2b-256 5f1e61db56d478ca2e9a8f58172f619c08db5010c4fd2897d2baaff0d9c4f8a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.1-cp36-cp36m-linux_armv7l.whl
  • Upload date:
  • Size: 8.7 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.16.1-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 5764615ae4c2bb3de6b8498714c64507ea6bca9461d4fc4421af632491e55139
MD5 0c1618f045d1f213e999d5ac4909f748
BLAKE2b-256 ed1a9ff4c633056c51da2d6d71f5270160ba653ed1b6ddcedb44c2fa1a4dd583

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.1-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.16.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 d6c798506312648758ee774281f64469109b834f19e5de1a800451ef1d4e276b
MD5 ffc731118687568a9971446293e7293a
BLAKE2b-256 6f2f793bfc7b761e1c289d71b1c00d627a701636bf64f84aba5742ebb84b6509

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.1-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.16.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 a7a0fa9df943ba46fde64083cf18579c34ae73a56e765e8b3dcf36eed0ad1bdb
MD5 cc2254168c23de3e1516464472fb5560
BLAKE2b-256 f621f10666d79f3378d4adaeca1249ea43441eb2c96ca35940c456c7174982e3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.1-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 9.7 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.16.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7eae9240a6ad2097f835f5f93050e0ad9440ff50799215b70c9950e743b7c685
MD5 619905286fbdcd8a33aaa3c02dcd0421
BLAKE2b-256 90b4ce6b50cd30a07a13143eec055c9737573916327217fbe243e38856e2ab95

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.1-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 9.2 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.16.1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c0c624efc1fc1433588efb38011a570d1939b23001ef1dfec06ef1734cf00e7e
MD5 ea7c278cc0a82de14f272be3180c68f4
BLAKE2b-256 36b51b86088176cbe7ffbf12b904af53c3e67e9837f6645717bc3011cd336efd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.1-cp35-cp35m-macosx_10_7_intel.whl
  • Upload date:
  • Size: 2.0 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.16.1-cp35-cp35m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 d2c17d4a1fee746e7d122c84ca9733347beb449bfc0afdba36ad292871d62f4f
MD5 03b965d8ab0b57f0a6dd3551adfe2deb
BLAKE2b-256 7455eced55c22a919c8f2d88996a4fae247469937135c2483c48dc6878d2ee1d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.1-cp35-cp35m-linux_armv7l.whl
  • Upload date:
  • Size: 8.7 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.16.1-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 7e78e05df820136eff85056253411bc2598ef3c3395508ade7373800825511fb
MD5 8a9e71432df736812061c1929227a3cb
BLAKE2b-256 f83856a82ce5cf25f5d4a61eec2d6bca0f88a74bf30e6f0f6093288df7e6b025

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.1-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.16.1-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 dd2dfc067acea55c89f6b2b63a4c96b84534a3073509277ff980c44bfcf3314f
MD5 14cbb200f58fabb473ba50cc7191bb49
BLAKE2b-256 53d208d724da381b06308e845d9d4df61d0521b23b233356535a212b7f34c239

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.1-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.16.1-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 9a6eaa71d328347fb13f6a3fb4d1564cc393dc37b6d07f37e84c78d8f605b548
MD5 304f3edc4f7cea0b2eaa923ddcc1a9cc
BLAKE2b-256 c3d8676092038b8c5a7f2470d345b41aa07d8a8bf1a845625d0efbbc1f3f86a1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.1-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 9.7 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.16.1-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8b9b2c5084b883b52c705838b132ddbd5138f64bf21c1fdbeaf854598f9131f3
MD5 3c7e01b45733cf867943353e6ede682b
BLAKE2b-256 5b835237778db7d44c16268318163c213e7171118add5df6782f08d9131cf0e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.1-cp34-cp34m-manylinux1_i686.whl
  • Upload date:
  • Size: 9.3 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.16.1-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 9bff46dd43773329fbca3f19b2b07c0be9ec43c5a57a98ef77b7faa810d452e3
MD5 d015cb7d46040a312748508c3c6ac3f6
BLAKE2b-256 45860eb1e9c299c5a0f564e98c550572ec39e1d5a65540a193f7697bd0817d01

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.1-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.16.1-cp34-cp34m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 9afe4584a7c9928588be3b6340eea887f241e3b470a6cad9827e8f2cd3a90273
MD5 6e6bb52f4d0095bc60fbc6e1660c1808
BLAKE2b-256 305ea8ace657f9d4b7168e6bde92e5e121d511b14f56fb27a24c0afe072e120e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.1-cp34-cp34m-linux_armv7l.whl
  • Upload date:
  • Size: 8.7 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.16.1-cp34-cp34m-linux_armv7l.whl
Algorithm Hash digest
SHA256 817b6c479ff3edd05bc89bbff5ab1ba89392af81894cc27ae6a47d741ca375c6
MD5 de08819af4752b348f4492671429b53a
BLAKE2b-256 218d4b3c1ef02ce0ea7196b14d9c79db10692d58d72e4e1059c84b3cb6e3e14f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.1-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 9.6 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.16.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2d06536bcfb6c83e9074b86ce88ae7b2faedfaac5e8cb261b8edb47b3b14dc59
MD5 f351d74b76256c2a2873e76516e6fd23
BLAKE2b-256 3c4a38e5d11ed0ce0a21067a6be0afb86ba2773e993aeaee12acd54227722f56

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.1-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 9.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.16.1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 836e3ccac59c4b3222915d2b6440b1ab13191be15d004cd7ab9fcac5946249fe
MD5 d225f6e7304752d3990382ffc4f8d4ab
BLAKE2b-256 4b0856c9fcbba958cc945adb03d276d341e9c60c477e2bba4c8b77b30f05a01d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.1-cp27-cp27mu-linux_armv7l.whl
  • Upload date:
  • Size: 8.6 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.16.1-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 bdad37e6dfcd70524b712e45e7bac7cc05caa2eca563b0c072b5fcdc9dc34468
MD5 f88bd92ea472c399812337c8bb9eb9a5
BLAKE2b-256 e0ba62c482c411867fda68cad282a991047ceb153cf9764f3a1222b3a612e41f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.1-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.16.1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 a7e6c986b0d12e7fa70faba37fec4cf7366cdba603a6548a79c6e2ed1db906a5
MD5 d1d5a599de7531a50c2cba546553506c
BLAKE2b-256 dcccf0ac6c778ec4b00f8d212ba3f7a38d0fbcf95c8f2634018a0650053cecd1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.1-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.16.1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 7907cc0119988532e30594bb3c97d78d3e0998d15a0623d7223bbd4db2fcace3
MD5 ec5e44cf1852cb50af01358d757c70b8
BLAKE2b-256 ecbf6b649ab34b07345354bfe7452c861da0beaea14f6cb9c3edb7a9b64a33ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.1-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 9.6 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.16.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 32d967ed8e09c1ef71126fbbe0d2f3bc8d1f7500ae6065b4dd271e0822b83650
MD5 99efa1a81e9d35a42e64546891144195
BLAKE2b-256 630fbddb6b7595e67f79a31cfb54e0990cb98d0f6c60fb5fe1dfa1b37a9e6402

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.1-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 9.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.16.1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5315dfc229223c6e18134e1ad1bec1306372ab74ef4ccee4eebdf4f6e8e149ff
MD5 010a10f8c9242165e3a92a80f3509e8e
BLAKE2b-256 cb1e995a69c6f3d3f1e51ba9788dcc9026eaf6f340df0846d876ae555241ed33

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.1-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.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.16.1-cp27-cp27m-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7b4467b7ba0db4c506c8c689461d75c4d4e626edde2e1b666fba35f473b9c671
MD5 16f34189cf3bc1e2553808ee3828c1c7
BLAKE2b-256 b561c12d3d8abc719efbea9f87d92f3d70ecf30b366ec34f7a5d8f6725d98146

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