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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

grpcio-1.19.0-cp37-cp37m-manylinux1_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.7m

grpcio-1.19.0-cp37-cp37m-manylinux1_i686.whl (10.3 MB view details)

Uploaded CPython 3.7m

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

Uploaded CPython 3.6m Windows x86-64

grpcio-1.19.0-cp36-cp36m-win32.whl (1.3 MB view details)

Uploaded CPython 3.6m Windows x86

grpcio-1.19.0-cp36-cp36m-manylinux1_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.6m

grpcio-1.19.0-cp36-cp36m-manylinux1_i686.whl (10.4 MB view details)

Uploaded CPython 3.6m

grpcio-1.19.0-cp36-cp36m-macosx_10_9_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

grpcio-1.19.0-cp36-cp36m-linux_armv7l.whl (10.0 MB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

grpcio-1.19.0-cp35-cp35m-win32.whl (1.3 MB view details)

Uploaded CPython 3.5m Windows x86

grpcio-1.19.0-cp35-cp35m-manylinux1_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.5m

grpcio-1.19.0-cp35-cp35m-manylinux1_i686.whl (10.3 MB view details)

Uploaded CPython 3.5m

grpcio-1.19.0-cp35-cp35m-macosx_10_7_intel.whl (2.2 MB view details)

Uploaded CPython 3.5m macOS 10.7+ intel

grpcio-1.19.0-cp35-cp35m-linux_armv7l.whl (10.0 MB view details)

Uploaded CPython 3.5m

grpcio-1.19.0-cp34-cp34m-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.4m Windows x86-64

grpcio-1.19.0-cp34-cp34m-win32.whl (1.6 MB view details)

Uploaded CPython 3.4m Windows x86

grpcio-1.19.0-cp34-cp34m-manylinux1_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.4m

grpcio-1.19.0-cp34-cp34m-manylinux1_i686.whl (10.4 MB view details)

Uploaded CPython 3.4m

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

Uploaded CPython 3.4m macOS 10.7+ intel

grpcio-1.19.0-cp34-cp34m-linux_armv7l.whl (10.0 MB view details)

Uploaded CPython 3.4m

grpcio-1.19.0-cp27-cp27mu-manylinux1_x86_64.whl (10.7 MB view details)

Uploaded CPython 2.7mu

grpcio-1.19.0-cp27-cp27mu-manylinux1_i686.whl (10.2 MB view details)

Uploaded CPython 2.7mu

grpcio-1.19.0-cp27-cp27mu-linux_armv7l.whl (9.9 MB view details)

Uploaded CPython 2.7mu

grpcio-1.19.0-cp27-cp27m-win_amd64.whl (1.6 MB view details)

Uploaded CPython 2.7m Windows x86-64

grpcio-1.19.0-cp27-cp27m-win32.whl (1.6 MB view details)

Uploaded CPython 2.7m Windows x86

grpcio-1.19.0-cp27-cp27m-manylinux1_x86_64.whl (10.7 MB view details)

Uploaded CPython 2.7m

grpcio-1.19.0-cp27-cp27m-manylinux1_i686.whl (10.2 MB view details)

Uploaded CPython 2.7m

grpcio-1.19.0-cp27-cp27m-macosx_10_9_x86_64.whl (1.8 MB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: grpcio-1.19.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/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.19.0.tar.gz
Algorithm Hash digest
SHA256 2ddbca16c2e7b3f2ffc6e34c7cfa6886fb01de9f156ad3f77b72ad652d632097
MD5 188565f150f34d1927b87e014f0f4b73
BLAKE2b-256 e3aa6ee1f1c0b35d270725abff07f8d807c0413154af14cd019fd3aa3ab69d64

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.19.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/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.19.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 316e6c79fb1585b23ae100ee26f6ffefa91a21e4d39588fa42efadd7f20c7225
MD5 c268e1f68cc96f5bf31b075d85f72a4e
BLAKE2b-256 9c501fd6e3cb2cc0b9f88aa396020b0a831a2e8fb63a4479d1dfb4ae64b654bf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.19.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/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.19.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ea897ffa80276565acdd92349ef82a768db0e3327aacd4aec82f79ca10989689
MD5 b7668e12e499557b8313fe7d6ca1645a
BLAKE2b-256 4f515e14559ceae1826a33158c48cec067b43dfe88e8f7b4b033953a004230b9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.19.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 10.8 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/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.19.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 828d13f0edd27f452af7fc23093c8a2d63d8fbd92595dbd0f698c78b13af9bdb
MD5 303aeeb26b83737c240a818ade8ee7b5
BLAKE2b-256 8360b58313c04365bd2b3c63d077bedb9c28723b9b22b399d3e89c96a16bc5bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.19.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 10.3 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/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.19.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 51fd87ff610ca2f483c668c3fa7f70d479bffb3c14805d2065b51194edea5e26
MD5 8598af0623e7f0ddf1206bdee583be37
BLAKE2b-256 2bdd35d1528b0c9cc0c849747fff8712c7dc9272e027ba2a78569504d2992e8c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.19.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/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.19.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f96a2e97df522b50da9cb3795f08199b110ceab4146bf70ea7f6a3a0213786cc
MD5 75027ac48e3cc5fc84542f2db90687a2
BLAKE2b-256 df33c0561fe7c5e235325255f46c08bd3d07f2c80824feb22d057328eff1f8b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.19.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/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.19.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 bcb44cd53beccc92c730254ad3d50715b67a7432e693961b566d982f759b1787
MD5 89307a1c3ea7f145836d855b7ef26483
BLAKE2b-256 0177ca7813b375b09a62de5dadcbc18594a21ddd892b431c00c76fc312c46cd6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.19.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.3 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/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.19.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 5569aba69041530e04eff3d40536027db8851f4e11e6282849b9fc5b1855075d
MD5 7ed206479dc88cd89d136475037d8004
BLAKE2b-256 bc02e08c9d35bfb692db82a4829033092a811cb9369ed52a84ad671a1c8aaf8b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.19.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 10.8 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/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.19.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d03c0524d5953568f74269e0faebb1e880ba9f36ca8c773be397087c35bd8188
MD5 8a215a63a0413ecb61c8a180e90b10f9
BLAKE2b-256 f4dc5503d89e530988eb7a1aed337dcb456ef8150f7c06132233bd9e41ec0215

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.19.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 10.4 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/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.19.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5a97bb5a4af16f840f1211dbe66d61592f02110f286d96e67bf6006d7f96aab7
MD5 78c1fd442c4b057d86d76dd0d0e1da67
BLAKE2b-256 0ffd6e8350effe091b594b98fbd8896cd87cb940d1785443f80a6443b23d5f47

See more details on using hashes here.

File details

Details for the file grpcio-1.19.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio-1.19.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.6m, 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/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.19.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ba434873945d5d4542589674cb60c43a1cf76b2b5f0c0f759aa76d499055722f
MD5 565d8fd0dffb7dc8566e4cba45c66b70
BLAKE2b-256 b1450ae182eb92a516a2485e803236eaa90b99d17fea0b3e32d891ce5d33893a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.19.0-cp36-cp36m-linux_armv7l.whl
  • Upload date:
  • Size: 10.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/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.19.0-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 6cec17145978cef3d20093cdc05e88da597ce05076db566a66a35b9c55d416a3
MD5 280d836ff3d1728e1e0f00efac24712d
BLAKE2b-256 c71c7f339fb82039b18b46d0fcc5640a89f864d509cffe272646149ebf1ec3b9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.19.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/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.19.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 5d57e41c913152b215eda070955b3544bdf20ed2327e5e5eed3005186220ebd0
MD5 73c7764e6f98eb6e172ccabb004e83b3
BLAKE2b-256 0555301141cd340e23614324e2e270203c8481bcbecc16edec156398ef501e12

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.19.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 1.3 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/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.19.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 400abff9a772351fff72d5698c8758b837bec3d7f4ed93de70bae744d8f63f53
MD5 7c0c2f748e2327d8b26641113d2ca614
BLAKE2b-256 17887d987848953e97883731ecc58bb0a764bd6f3948e6c7e2e40f57fb8ce172

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.19.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 10.8 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/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.19.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4ed90a256f6f8690b5c95b9d4f2e9fe6513628f3674e9068e10637e50c2f93d6
MD5 566434fd32020a8a1d050780bb214873
BLAKE2b-256 0efde6696e5b115f328c382dd88414168e2b918cb7153b59dc9228d3c15e356c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.19.0-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 10.3 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/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.19.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8cf02c4e07520be61ad8b59b0043771ef2af666cb73066516eabfee562a28df4
MD5 54b5a572bc33b539ad6fe4b0af751625
BLAKE2b-256 d9d7cc160514e6374ebbff3512fd4ff84f88951ce17395bfca399e2b6944be4d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.19.0-cp35-cp35m-macosx_10_7_intel.whl
  • Upload date:
  • Size: 2.2 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/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.19.0-cp35-cp35m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 6ef7ab9b6ba09ce087ddb3b27f12504f50efdbf5d319b8b23173478765452301
MD5 06f5115646d2a7740cf9ae9d4169c74a
BLAKE2b-256 f3e77d5bec2c79e53a0b76d4c7265a6c3242a38f12eee199d182767e4b83cbd3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.19.0-cp35-cp35m-linux_armv7l.whl
  • Upload date:
  • Size: 10.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/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.19.0-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 b04a061280b06cdc4e68c4147a0f46b98c395cf62f0c6df4fa2a30a083cdc333
MD5 1ff28a7ef2fceb226c39314f52a97080
BLAKE2b-256 c9937213898a91778de3f309d18f11244321ed8c5cc88290000ac4f0ee1c6068

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.19.0-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 1.6 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/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.19.0-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 5817f970fbfed72a6203ff96349e796d8f6ff3ce85b58af241c4a14190d9f4d1
MD5 821617c755438a56fc12420f86abb7f7
BLAKE2b-256 484c40552e4c233138e8711fc962a4113f253eaa57dd4fc78150c94832d5b96c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.19.0-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 1.6 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/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.19.0-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 756c0d65e4ebce1c47787dbb48955864f2a768e1df76902f33d3e4062c209f3e
MD5 b90f4fe68de7d47b042d7df8ae2f8023
BLAKE2b-256 91ed3d5f4829484bc197bcbcfed91a69a167d52b662f88117c7383d38f504dda

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.19.0-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 10.8 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/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.19.0-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b740681332b5a042b9e22246a3cdbfc3d644cf73d38e117f20ad9d8deab8f1a5
MD5 41d9688c3c71950a96b56b2f1934d9f8
BLAKE2b-256 6223fa20590eb7005f711f8da4d27770c838b80bb1b18af88d1427f89ed42fe7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.19.0-cp34-cp34m-manylinux1_i686.whl
  • Upload date:
  • Size: 10.4 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/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.19.0-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 fadb649a69e3b08e01f090c24f0c8cccc122e92c362c1a1727b695a63be8416b
MD5 427ec82f4377e9410bfe00855a5fbdb8
BLAKE2b-256 58ee25aa522819db97a600399f5b2d219a7c82550f51339623db6a70cf7bd88b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.19.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/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.19.0-cp34-cp34m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 30d84f9684b4c81ee37906bb303a84435948c2dd3db55d3ef38f8daf28bc6ea3
MD5 c7144ef023379c40523560ebcf9a35fa
BLAKE2b-256 c49b01392535d4b76c3dc3fdb65d2d7d5c50e0acb9fc30a4f06ca0c11e9c536e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.19.0-cp34-cp34m-linux_armv7l.whl
  • Upload date:
  • Size: 10.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/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.19.0-cp34-cp34m-linux_armv7l.whl
Algorithm Hash digest
SHA256 c4e38326fcab5c52fd1a8c8e0f908bfe830629a5ffc60793ec5545ef913d62d2
MD5 a10234297978a58d4b9e58ee474fb118
BLAKE2b-256 f5999670802d9a68da53836127cad443f027523e48c24c8a46d295559bb02a2a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.19.0-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 10.7 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/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.19.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b2dbe7d2f9685bdbb4415f8e475dd96b1b1776193b7286705f90490c3f039037
MD5 089c1de09c77c2c61e35c639dff3c0ee
BLAKE2b-256 b8be3bb6d8241b5ed1f8437169df53e7dd6ca986174e022585de15087a848c99

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.19.0-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 10.2 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/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.19.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 07c7f7b251b26ef94e29d2c19245e34d4d05897325a289b31de3b6a5e16fbd6c
MD5 615a6e4225701ffc18a4ff058669ebe8
BLAKE2b-256 333a4855dfea951f8cffe0eb97f360cc289fd66aaf0250877370fe1ae035c32d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.19.0-cp27-cp27mu-linux_armv7l.whl
  • Upload date:
  • Size: 9.9 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/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.19.0-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 be1cbb6cad1d4242e3aaa4143eabcfbf383358f6c8e9951be2c497b65561b075
MD5 ab9b86f78df5af1276904d568118bd36
BLAKE2b-256 b2bcf1cd3f6926bdfea0a1934a8a32ba2b99703ad8a37329e21c666ff8d13ff8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.19.0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 1.6 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/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.19.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 fbe4360ff1689a9753cbf1b27dad11e683d39117a32a64372a7c95c6abc81b81
MD5 b86549f14a5a75a2871c10f3b5c6e24a
BLAKE2b-256 4d69cae8de36aeab53b8b7e8d81bdf8cead1712c5481bbd1026a713d8011ef26

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.19.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 1.6 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/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.19.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 566b752e36cdcd5a4d38f292aca4c8e3095f13cfe82606e010d67749cacba341
MD5 a82ca5091fc5b67975cadb20c9d009d4
BLAKE2b-256 2ca65a10d91ee5d584627f8b2c0a4f97a9d50b6e76a587044e87b8d31a1354fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.19.0-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 10.7 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/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.19.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 edc50e8bcd10b165f34c3cf3e1d4f97e9c71b165b85a85b91cf3444000a17692
MD5 ddb258d05b32c15e5a723f151cc28da8
BLAKE2b-256 c7a3eb0d41f592f67588ad28cc72187bf5c22b9b830b130cbaacfb22f6476971

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.19.0-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 10.2 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/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.19.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b60df7cbc3e77c39d5befe6a1e6e4213f3ca683d743ff7c1622b1d4412245a55
MD5 0e7f66c71d2ec12c8ea2fc6a1fdb0ae0
BLAKE2b-256 63bea41e9ebe60caa8b6d2774aaec72a16752bd731c17e534ecf50ba87b5c01e

See more details on using hashes here.

File details

Details for the file grpcio-1.19.0-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio-1.19.0-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 2.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/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.13

File hashes

Hashes for grpcio-1.19.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 919dfe84d22ce2e2ae81d82238586d7c2a86714fb0b6cf9b437e336851e3c32d
MD5 768f1b2d06e66a29a32a83d3d11f39b2
BLAKE2b-256 0537560146c628aea6c6073322a309429e9c8afb1ba91f178b3dd838bcd0d43b

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