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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m macOS 10.7+ intel

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m macOS 10.7+ intel

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.4m Windows x86-64

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

Uploaded CPython 3.4m Windows x86

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

Uploaded CPython 3.4m

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

Uploaded CPython 3.4m

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

Uploaded CPython 3.4m macOS 10.7+ intel

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

Uploaded CPython 3.4m

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

grpcio-1.16.0rc1-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.0rc1.tar.gz.

File metadata

  • Download URL: grpcio-1.16.0rc1.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.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0rc1.tar.gz
Algorithm Hash digest
SHA256 fc3ae6a062dfc1dee9dae524164bd1bb1f61929b1d3f0727ac889e08b0979702
MD5 6058b4951a82032578c0dd1f39f1df8e
BLAKE2b-256 f32453e18e2c95b46bdb364019e78b96187e263c79166bfee44be9e2554307a4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.0rc1-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.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 37b3dc87f33e3a46c3d92a3ce7ea60c61df9831275bba1ea0992fbcc267ef92a
MD5 60cb63cc49e9854e2715bc06cb05d063
BLAKE2b-256 a43b2194aae74d9aca90918860796b649df8da9fbd33d26b4e4f3651fdfd253e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.0rc1-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.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0rc1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 5486b8423be6a72e0d55ee1aa878d6ba4b265de63d0a70c008638bd86dc8a0a4
MD5 987bb252e2b5a5d3c4a14a0497ab6abc
BLAKE2b-256 02622b5fe69edff754328400316e48248c6d492fd89004ae1d947a68e4e04ed5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.0rc1-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.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0rc1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e26feb9ee1313315af880a2cf98a6e51aa1fa2f8e5953eecc5a896e49aab2875
MD5 118cdd869319429f2defb64d2cc492c6
BLAKE2b-256 25e79f6072035e15019ee266e555851b8b9b37bf257192185e8044ae58cdc213

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.0rc1-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.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0rc1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 aada779825e1fd109ee1e4191c57ce5f3a737af6cb6e656e6c6b538fdeb8efef
MD5 c3d43e82e4aaa8cb6712f2723cab3cf3
BLAKE2b-256 9fc299eacefffd364e685df6ef363747f7a931e3da20d90ca1437c353882dc76

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.0rc1-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.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 088dcf0d4cc34356a91fc664b775564ddf23b5bb4bfb385764380aa18bb10308
MD5 c193a5f2611748bb619caff5303b2920
BLAKE2b-256 ed32570601c512064d28678b294886a4d9903af47ff9567911603f9cf33aec34

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.0rc1-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.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0rc1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 3bce2bde7a3e14be765431d3df354b74820349fa3ee99ba31f345e66a287dd78
MD5 61f95bd18a2624c2ca71cfe07cdff216
BLAKE2b-256 063fc3f2edacf71e9ed99294aecf8af58e4e89f68105992c47f36aab35fbaf41

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.0rc1-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.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0rc1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 43b41e5f44d48c4e06b7e9b0bf04f3c8f510c47fdbe275a6512ba389a9e18e71
MD5 86e532dfa63f34af92e456e884a2584e
BLAKE2b-256 337a638e9adf95c3b885a1cfd4a47473f566ec1ad7d5d7640257c9ca5c7559ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.0rc1-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.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0rc1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d6e7ae991b9c6f35ab164e38294af0c85883bb5152f6c148df48bd367966749d
MD5 04c1f85dd517031292600a1346637573
BLAKE2b-256 75d1153a7c056b108320f7507148e67602e31eade5b881675d6ded9eae7e2e46

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.0rc1-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.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0rc1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e22ec699e362dadb5d9dd11b440af94985695a92527364cb3de82f6cf6c8ba82
MD5 73e74306715d73ced9a712ecbf5b73c1
BLAKE2b-256 1820a88a31863e619867f3479096a741aa71023ab13a67ad7783ef4e304f973e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.0rc1-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.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0rc1-cp36-cp36m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 90ae07072f87269704f890a1f96f67eb210c5ffda4acc7028c28e699132e8b2a
MD5 acb6efd9bc490f9a8d55acb01e48a83f
BLAKE2b-256 a9298bb1392619f3411dfa79704d6e4782b8129fb6af48638d5a4802f280d48e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.0rc1-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.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0rc1-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 cd0aa2cf5997737d8a20a29dd80c1931f3b411608cd829fc2cb09cc128e6d0cd
MD5 6a0941e9ef245939be921cfef48824b9
BLAKE2b-256 c5b2ec174eb4bd17defa030a6bfe1f8c32a4fc0cf2bbe02ea934ec32023448d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.0rc1-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.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0rc1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 bd1678e5c749a770b2eb0259bcde5d4eac5c142e88d0c9c5399b5204f2a1863e
MD5 c34590f5a14f461c1568d3da930710bc
BLAKE2b-256 0bb9b08453fb0193a364bf6e284e4d0522814e16567497073639424987dadfbd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.0rc1-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.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0rc1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 770c525625d406dfd1b7cb1645ca3c2e68cea10d33ef754397e14847edefcd8a
MD5 21b8da8577f90f53c36f4324e4835981
BLAKE2b-256 f5b7cbdd11a4945ccdab16b9e48b9e0ca21d2d19b6c1b4a0bee077a13cb51b88

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.0rc1-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.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0rc1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e1f6f4ca106075b4780eb0c69baf7fb5e492ff64f8208622723ef490166295dc
MD5 8b7e1db259a9dae547ec1da747f8ded3
BLAKE2b-256 eb91cee145a2e8f4f7f5554f3612a49e38034907e33acc9fd6a9e1cb56049995

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.0rc1-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.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0rc1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b4e441c329db9738cd6c412f811419153de52021ff0d86c57f8c61ddd397e08c
MD5 98a5feb3e8357472e96fadc8ef4c2282
BLAKE2b-256 65cd5e386232d29c093c6a906d733749997454b7a04f0061bf1be0b789d770c0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.0rc1-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.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0rc1-cp35-cp35m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 1bcaf943592485dfea1b905f8b2b54c521020bf5cb9fd79f806aaa9109d4a98f
MD5 ff0efb53307cc38865af4d9925fea007
BLAKE2b-256 9eab61969a546c400cb29961a4a919ef06a1b15287ffeb2a506096336f2ca449

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.0rc1-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.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0rc1-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 a841ca831aa13701e07dcb764540d6b295e55be21e79562ee4f8b8deca11c7df
MD5 c3c19e292717a2aa84733084bebcb60a
BLAKE2b-256 62194b732b1d5525c8f4dd8dba028778cfa28a4f094a19a143b462708290fb5e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.0rc1-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.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0rc1-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 1b2a21fbd7a8df0a788250bdd83b5bc6421840ce5a6a30d3cee5680f8749c4f8
MD5 513d02744464b12f5b894939d096f277
BLAKE2b-256 7f0ca3b27e1f6ee75163f3622a31da093f95cdd457be5d6350d408745ff8ceae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.0rc1-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.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0rc1-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 d5bd71d3647208f831480c2e35ba4b7c6f0becefe5b1342d25f73b5a55cd60ad
MD5 b8e09a9839f6a121dea351da4c215d3c
BLAKE2b-256 92aaedb29870a7271652336ce92221e4176c7b1efba0f4fe277583109d0c660b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.0rc1-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.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0rc1-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 77a6f6aa5c8c3f1a41ec31c1f3a0a4a616c0d38b17f90071c298c44c409995fe
MD5 4913ee101dfcc0edda5ffae02b40b3db
BLAKE2b-256 642961e338c5785c9473c588a87fb05de3d96855a14a9f9aa0e6e4eaaf64387b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.0rc1-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.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0rc1-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2cb9e3268cceec8a82c24fd2ca85625b69f8c08614cffd9327ce2209c70bef4e
MD5 c2a949660c41c5b82106f02bbf5523bb
BLAKE2b-256 71aac34797dfb3346870744dca277ce39379caed06423e4b0b0b4ddbf9fc39bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.0rc1-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.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0rc1-cp34-cp34m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 2ea297b6b583e2524669203d74648eedfe981531323d2ec19fd76205f68df8b5
MD5 1edf676ab83991a6751277a644fa0c11
BLAKE2b-256 76a9179f8846999402d8c4f114da9a60340fdbccff75de431bb982ddef019ebf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.0rc1-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.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0rc1-cp34-cp34m-linux_armv7l.whl
Algorithm Hash digest
SHA256 e76b063c3875dd206c94371f74e650e9bf65563657a071b99bc87f66e8bb764c
MD5 8462f042c6d625924b34a7dc99d54b46
BLAKE2b-256 8675d0062ddaec8fb8aec3e105156449ae206bb7a4978b8b3e24c823ed8de6f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.0rc1-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.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0rc1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4beb00c03a7a46f2fe437e8a1d3a3280b52ea28871dc50b1b70f91b3d8e100e0
MD5 efb6651cea277fe4f1657a46f582613a
BLAKE2b-256 8c70cea4d9a09928837887e39e1441f19890fef2a08857f993db7f0c3e8798db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.0rc1-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.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0rc1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ec9dcb9731cbb63db8dc3b70551c7d698d1e7c001aac87efadb35ed66d7d6ecd
MD5 27c38317f410cf1e2e3de0cd23d81196
BLAKE2b-256 ca28061be73dee2221cf8eef4ec1546bae6693af9fade85f4501de579a6dfd22

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.0rc1-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.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0rc1-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 cad96e14e9a59a58a26801e3aa4acf0a404a0226dbc6707add5c6f64535d06de
MD5 352690f9d2ad6883dc06fb09ec25e0cd
BLAKE2b-256 814ad046c93bbe39f87330add35ebd85a6b1ae0765038795988933ee6ffa331b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.0rc1-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.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0rc1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 d2f2ea6294f37a649d24eceb33061ba157c4062305fca529474ac974c194db61
MD5 4a5fd64474bdf561e5746c331b279354
BLAKE2b-256 ad6a956f1c7b73e0f450ee1e4a72bea06877aac18c3a3eb879733e80fcbaa180

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.0rc1-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.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0rc1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 18ff8228e97bb0025d875c06a52fd4fcf4c9ceb7e2d07977bec06d35abcfd9e1
MD5 985acabc3f023ad32a07e5128a61cbe9
BLAKE2b-256 0ac8f456b774c3e3f2ada857eea625c296e7f296aff017735dc8ca7ef92f2abb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.0rc1-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.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0rc1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 50dfeba499d63022e3a85046ea3c4a7d25cbd100bf3282a5b385cafc19052466
MD5 2cfa050bd0d657127d53df9355361861
BLAKE2b-256 33b79be2178feb0b61a42d089f416bc1742edbe24677af2ad268421ad5ce9840

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.0rc1-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.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0rc1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 74fce470e8b15a4917d6fbddad3475be7c9c3b23c3a15aae5ac24fb9da8fd25e
MD5 4ccc22525d9dd5a1aaee03709cb76279
BLAKE2b-256 b3f6a89b01d23d3c4eafa8183ac72b62040e2edd6dc41ef149ccf6e8f93e0000

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.16.0rc1-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.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.16.0rc1-cp27-cp27m-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 03c05368d96707a526b67fbd947d593fd3af341cf401d5204c3d7d1245bab592
MD5 f0cdab8d40958a22ee0497bc7fd0df83
BLAKE2b-256 1934c64db6ad8b5c8ebae961363fe12815307b1513286af079428180a58135e0

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