Skip to main content

HTTP/2-based RPC framework

Project description

Package for gRPC Python.

Supported Python Versions

Python >= 3.5

Deprecated Python Versions

Python == 2.7. Python 2.7 support will be removed on January 1, 2020.

Installation

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

Installing 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!

Installing 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.21.1.tar.gz (13.9 MB view details)

Uploaded Source

Built Distributions

grpcio-1.21.1-cp37-cp37m-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

grpcio-1.21.1-cp37-cp37m-manylinux1_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.7m

grpcio-1.21.1-cp37-cp37m-manylinux1_i686.whl (2.1 MB view details)

Uploaded CPython 3.7m

grpcio-1.21.1-cp37-cp37m-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

grpcio-1.21.1-cp36-cp36m-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

grpcio-1.21.1-cp36-cp36m-manylinux1_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.6m

grpcio-1.21.1-cp36-cp36m-manylinux1_i686.whl (2.1 MB view details)

Uploaded CPython 3.6m

grpcio-1.21.1-cp36-cp36m-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

grpcio-1.21.1-cp36-cp36m-linux_armv7l.whl (11.2 MB view details)

Uploaded CPython 3.6m

grpcio-1.21.1-cp35-cp35m-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

grpcio-1.21.1-cp35-cp35m-manylinux1_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.5m

grpcio-1.21.1-cp35-cp35m-manylinux1_i686.whl (2.1 MB view details)

Uploaded CPython 3.5m

grpcio-1.21.1-cp35-cp35m-macosx_10_7_intel.whl (3.8 MB view details)

Uploaded CPython 3.5m macOS 10.7+ intel

grpcio-1.21.1-cp35-cp35m-linux_armv7l.whl (11.1 MB view details)

Uploaded CPython 3.5m

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

Uploaded CPython 3.4m Windows x86-64

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

Uploaded CPython 3.4m Windows x86

grpcio-1.21.1-cp34-cp34m-manylinux1_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.4m

grpcio-1.21.1-cp34-cp34m-manylinux1_i686.whl (2.1 MB view details)

Uploaded CPython 3.4m

grpcio-1.21.1-cp34-cp34m-macosx_10_7_intel.whl (3.7 MB view details)

Uploaded CPython 3.4m macOS 10.7+ intel

grpcio-1.21.1-cp34-cp34m-linux_armv7l.whl (11.1 MB view details)

Uploaded CPython 3.4m

grpcio-1.21.1-cp27-cp27mu-manylinux1_x86_64.whl (2.2 MB view details)

Uploaded CPython 2.7mu

grpcio-1.21.1-cp27-cp27mu-manylinux1_i686.whl (2.1 MB view details)

Uploaded CPython 2.7mu

grpcio-1.21.1-cp27-cp27mu-linux_armv7l.whl (11.0 MB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

grpcio-1.21.1-cp27-cp27m-manylinux1_x86_64.whl (2.2 MB view details)

Uploaded CPython 2.7m

grpcio-1.21.1-cp27-cp27m-manylinux1_i686.whl (2.1 MB view details)

Uploaded CPython 2.7m

grpcio-1.21.1-cp27-cp27m-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: grpcio-1.21.1.tar.gz
  • Upload date:
  • Size: 13.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1.tar.gz
Algorithm Hash digest
SHA256 fb98dbfee0d963b49ae5754554028cf62e6bd695f22de16d242ba9d2f0b7339b
MD5 0b902776ba6405b133360f118ddf00b0
BLAKE2b-256 fbd530bc142a40bb891c28739ec48c99730d20e5fb9cf9637036b4b52f70505b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.21.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 fb9cd9bb8d26dc17c2dd715a46bca3a879ec8283879b164e85863110dc6e3b2a
MD5 41569bbf7874daf030c05444063436be
BLAKE2b-256 f7bd171c99a393df51faae5f696c9fedee59c109c4346535fe84450ab0d2cdd6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.21.1-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.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 9e9736659987beab42d18525ed10d21f80a1ba8389eac03425fbfd5684e6bbf0
MD5 1120f3d3921cb3fdcce1abcab9bfa019
BLAKE2b-256 fc26277669ca5bb4adc7288b097c9f93706570de3ac36f7ac6a58d79a2904856

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.21.1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a93e08636623e24c939851e2e0c0140b14f524b2980c9cdc4ea52b70a871c7e0
MD5 1792dfdfa3fc58a01e278104d0351987
BLAKE2b-256 a266a44fc7eb9bd3a9c480a70c30306f175521ca0531e2cf1ca54b74a450fdb9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.21.1-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 0232add03144dd3cf9b660e2718244cb8e175370dca4d3855cb4e489a7811b53
MD5 21027fc8eefc5354a4ee6393931a121f
BLAKE2b-256 8dbdbd2dd85aff0ad44fbccf3c3f1eb7a7c5f458e385d00132f9384eddf7d4aa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.21.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4338d2a81f5b4ca022e085040b3cfce19419a5ce44aa7e6810ac1df05365bed7
MD5 13b532486348df92de6633e76e3036ea
BLAKE2b-256 5e7192d142dcc3337dbafb6f1d936b19b94a1f65efc9bc3ddfb2315710068025

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.21.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 fad42835656e0b6d3b7ffc900598e776722e30f43b7234a48f2576ca30f31a47
MD5 0c8de525d4927ff3efd743c3d08147d6
BLAKE2b-256 4c6ae83233ed636bdf8668f0e79897fd70bce04869482dd88f3cfc4c42404fb2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.21.1-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.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 c92de6a28a909c4f460dc1bbbcb50d676cf0b1f40224b222761f73fdd851b522
MD5 f00234986e454c0663eefaf1ad93907e
BLAKE2b-256 bca2fdbc5621a6e0542cc8514d5626973dafa25d3905477a366fc54b66a84960

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.21.1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 289dae0b35c59d191c524e976dd0a6f8c995d2062e72621eb866ad0f4472a635
MD5 ea85b57e9c6dbe3ca44ab449eb9bfb68
BLAKE2b-256 998318f374294bf34128a448ee2fae37651f943b0b5fa473b5b3aff262c15bf8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.21.1-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2be726f16142d358a0df1e81d583d6820ee561a7856a79cca2fbe49989308be7
MD5 90b488a4c342ea600931871b4486e738
BLAKE2b-256 8b1e7dea959d483db0ddba2e2255b138cb44e966c8c5462db9fc7cf9f4596138

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.21.1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9ebcbb1a054cab362d29d3be571d43d6b9b23302d9fc4b43e5327000da1680a9
MD5 b8921f4e23784928a6183b994dd101c2
BLAKE2b-256 7b611bf3bc7ed4772d81b480e6934c526707c7b799a359fea5c32d61b9715b48

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.21.1-cp36-cp36m-linux_armv7l.whl
  • Upload date:
  • Size: 11.2 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 557154aef70a0e979700cc9528bc8b606b668084a29a0d57dbc4b06b078a2f1c
MD5 ddc5f09d76cbfc37148fb98c12d19baa
BLAKE2b-256 283deff8fe5948376253d18721c965e9b0077a6e2bf95e4619415947a17b9780

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.21.1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 10c0476d5a52d21f402fc073745dc43b87cc8e080a1f49bbff4e1059019310fb
MD5 f7ba1651bcaad031fc25c375bcee8d4a
BLAKE2b-256 36ec43fb7ab5b4e78a97710ac5d34c5e207c32fa5a9066aaa8aa316cfb36170f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.21.1-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.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 0f20e6dcb1b8662cdca033bb97c0a8116a5343e3ebc7f71c5fe7f89039978350
MD5 aaeb98b9a6d43411f3eb9ead6a343dc1
BLAKE2b-256 ee35d0774b8c86c7d15795a4d245e8a676f576fe2122b4d53484a6763d8f7218

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.21.1-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4c535b46f20e66bee3097583231977e721acdfcb1671d1490c99b7be8902ce18
MD5 1eadcc012b5382dde75ccfc443c5617c
BLAKE2b-256 1419f1858ed60786ff681a5f8681448b56bffaaa87a81e9a7ca5cd075a873b35

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.21.1-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 87d8943ae7aa6ca5bbad732867d7f17d2550e4966a0c15b52088e8b579422e47
MD5 2dd230ec1cf8f9b793c4b7f9309bf3b1
BLAKE2b-256 240ae1832bafe44ef734eb18ab12545503ed90dfb83e86cec21d6630aeb5f28a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.21.1-cp35-cp35m-macosx_10_7_intel.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.5m, macOS 10.7+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1-cp35-cp35m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 ac322d86d1a079e0a118d544443ee16f320af0062c191b4754c0c6ec2fc79310
MD5 9c1a037f17ce1987b783dfe28adc4eb0
BLAKE2b-256 b9fbed340689785c0606ff00e7f9c36ff0d9f27c5b2baf6df73bd68288e410bf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.21.1-cp35-cp35m-linux_armv7l.whl
  • Upload date:
  • Size: 11.1 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 10b07a623d33d4966f45c85d410bc6a79c5ac6341f06c3beda6c22be12cbfe07
MD5 6b8fbdfa783aa488d7005e6848dac106
BLAKE2b-256 080543bed257f431f82ef8989ceece785209ad9982c317073c5ef2bb91b6bc95

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.21.1-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.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 b39aac96cceac624a23d540473835086a3ffa77c91030189988c073488434493
MD5 ad5ae12029e73df77eeec27c8c94b722
BLAKE2b-256 456eb01d2cd0cf93b60cb28ac1c1e0e2516630a9db43336439d118e3e79ffac1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.21.1-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.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 c9f5962eb7fa7607b20eb0e4f59ed35829bd600fc0eacb626a6db83229a3e445
MD5 3650fdfcc4f10d9a1865b8ff012f5221
BLAKE2b-256 ccb8efc852ebcd6bd222391760ae097e49dc158c95d313004c70821d97b47411

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.21.1-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 da804b1dd8293bd9d61b1e6ea989c887ba042a808a4fbdd80001cfa059aafed2
MD5 e5080fac19ff9f8fcbb6cb06c46f560c
BLAKE2b-256 5cae91fc21a6d4e5392b9c35c2c1c709abd094dc8ff1b0599e6812cfcd6ca24d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.21.1-cp34-cp34m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b65507bc273c6dbf539175a786a344cc0ac78d50e5584f72c6599733f8a3301f
MD5 560f2b8a52ab6bf51d827693730f4fab
BLAKE2b-256 347ebd3203df2eb9d3a419828b73714623a8a5162560902ee93c1deded50b7db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.21.1-cp34-cp34m-macosx_10_7_intel.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.4m, macOS 10.7+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1-cp34-cp34m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 ef6a18ec8fd32ec81748fe720544ea2fb2d2dc50fd6d06739d5e2eb8f0626a1c
MD5 fb5df2fc2adb88ec0418c67e58b55034
BLAKE2b-256 d2fbddb610f0f544f4c843435ab04d74ea283df7bdbe924b8e65f77601317ac8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.21.1-cp34-cp34m-linux_armv7l.whl
  • Upload date:
  • Size: 11.1 MB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1-cp34-cp34m-linux_armv7l.whl
Algorithm Hash digest
SHA256 ead6c5aa3e807345913649c3be395aaca2bbb2d225f18b8f31f37eab225508f6
MD5 9b9daa95e977e90df65a8c32b6d3251e
BLAKE2b-256 7584235931955a6d3ad1bc9d43502348d6b24e76539e22a8ed0693d3e4617151

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.21.1-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5bfdd7e6647498f979dc46583723c852d97b25afe995d55aa1c76a5f9816bc1f
MD5 f354cc7aa60e49d2f06c060b21f448f5
BLAKE2b-256 8e62448199c50e05526f7fd336d8a87bd83a0c7d92188ae51ebea23aa5f3c37e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.21.1-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 89d8719d8de4d137678f7caa979e1b0a6fd4026f8096ceef8c2d164bbabefaf2
MD5 0260a154b70773c0e5b8ca3a1e4b5695
BLAKE2b-256 99a55e49c7775a0f8ebc3e88b8b31b07facb09f96038e4da9a3947f86756cc24

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.21.1-cp27-cp27mu-linux_armv7l.whl
  • Upload date:
  • Size: 11.0 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 be5bb6e47417e537c884a2e2ff2e1a8b2c064a998fcfdfcc67528d4e63e7ebaf
MD5 0ac7c871b9db470df66961dc9b0fde0c
BLAKE2b-256 037c275ed3986dd6b87bd17da4a80bb0ad9ce95cf985bcfee1ab45b25b5919e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.21.1-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.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 eb4d81550ce6f826af4ec6e8d98be347fe96291d718bf115c3f254621ae8d98d
MD5 34c8a8b598dd35f6ff7c548612e5a49a
BLAKE2b-256 ec264c0f85d0805ec3070af8689f35039c7dbf6b7269d46c3c22c7ffeeba2b9f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.21.1-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.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 9da52c3c728883aee429bb7c315049f50b2139f680cd86bb1165418e4f93a982
MD5 4317f4a689370cf746a2ac9bad933b7d
BLAKE2b-256 c2de4e7b59f81d1ec4f1b2c420b6f885a96d572c64a215bcdb846780ba6554b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.21.1-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9c3f4af989ce860710ac1864dc2e867dd87e6cee51a2368df1b253596868e52f
MD5 971173370c490c0ea600c5cd497d70bd
BLAKE2b-256 a5de5b3ec476bf1eeecef94e656ef79e0b4fc7ae79c04587e380512699bd1514

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.21.1-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d00bdf9c546ed6e649f785c55b05288e8b2dbb6bf2eb74b6c579fa0d591d35bd
MD5 a040d9e45c0b2ce4f5de1512871e76e0
BLAKE2b-256 448cd18235e75c7bb27ba04b989df5374227aa0175b5734121e71218bf848062

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.21.1-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for grpcio-1.21.1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b1fb101459868f52df6b61e7bb13375e50badf17a160e39fe1d51ae19e53f461
MD5 ddbf56f5081ac1e5f9e71f2215eb7b34
BLAKE2b-256 10f18fdd0e277d086652b1785d30523202df07b63ed5b0b18dab804ba34885eb

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