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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

grpcio-1.20.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.20.1-cp36-cp36m-linux_armv7l.whl (10.3 MB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

grpcio-1.20.1-cp35-cp35m-macosx_10_7_intel.whl (3.7 MB view details)

Uploaded CPython 3.5m macOS 10.7+ intel

grpcio-1.20.1-cp35-cp35m-linux_armv7l.whl (10.3 MB view details)

Uploaded CPython 3.5m

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

Uploaded CPython 3.4m Windows x86-64

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

Uploaded CPython 3.4m Windows x86

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

Uploaded CPython 3.4m

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

Uploaded CPython 3.4m

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

Uploaded CPython 3.4m macOS 10.7+ intel

grpcio-1.20.1-cp34-cp34m-linux_armv7l.whl (10.3 MB view details)

Uploaded CPython 3.4m

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

grpcio-1.20.1-cp27-cp27mu-linux_armv7l.whl (10.2 MB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

grpcio-1.20.1-cp27-cp27m-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: grpcio-1.20.1.tar.gz
  • Upload date:
  • Size: 13.9 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.16

File hashes

Hashes for grpcio-1.20.1.tar.gz
Algorithm Hash digest
SHA256 84eb47b1a47e206e78f453fb92a155ed0d18d2ca8747f5c67e4b50b9c37180a7
MD5 d1196505efef70edbbf5d7433dbbd63c
BLAKE2b-256 1eca2ae3967c69f72fc5596815bbef3c895e34ad88738ec3322ebe87671e60c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.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.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.16

File hashes

Hashes for grpcio-1.20.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 b37f36da8f4d0bf07d53eb34395b68f5e0dc0bcee207affde9ba29bbf6bd6ced
MD5 69a490ffa9051084dc8920d07cfce4c9
BLAKE2b-256 2a22bd327063dd0bdf9d8d640b3185b760707842160e69df909db3fcaab5b758

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.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.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.16

File hashes

Hashes for grpcio-1.20.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 e6cbd27559ff91c98991b8ec4ef19f394bf9056d6897aabb9af79568307181d3
MD5 6cacbde567e935e6152803552b96811a
BLAKE2b-256 c1a051a0b113ff96acde8ff232979a145c0276c8fcbce2b527b9952a378811ef

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.20.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5f8574c9e42d1917e41cdedc6312682a96e4547114c7bb0f3de125199a58b3d6
MD5 054c2d79a1166117279d87de1afeee7f
BLAKE2b-256 443c0f680a3e2e7720dc1b37bf3163b1f62f0f847dc081a17f2a2f4389e86a38

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.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.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.16

File hashes

Hashes for grpcio-1.20.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8a6289e5c38318cba75115f0bf88be166ead40c83c10dd81ace52f1ab5dc1eab
MD5 e30dce00df00ff33bf2d0eb440998299
BLAKE2b-256 83dcf682468be10cef94ca13ce821394b8979e569d8b6a4ff86370b41a274f7b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.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.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.16

File hashes

Hashes for grpcio-1.20.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8bd5b8c3c8872da748dc8810b664699a5f1d49f2c9ab2b205b96ec9fe06741ad
MD5 bb0f61be79ecb8aee346159318890b36
BLAKE2b-256 c18260d5ec84dd2ed474aced1a1fd3cff932306c359ce97b2bb3ff5bc750d0d9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.20.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 fee4accad7a113004aef226b851f0494c01fc8d281fdebd74468f19cc45354a0
MD5 e64bff0c1fc1bc860fcccf4add1acc46
BLAKE2b-256 c7c0e1f8180d75969ac4b7c026514740f10f5edfd912ef2d6aaa845790ce4095

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.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.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.16

File hashes

Hashes for grpcio-1.20.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 9d37fb214674f0f194a80df5ad0b9c9b9f2fa5c5408ceaf0fc796e57588404d9
MD5 b1319da98d118145a21f7837b81184b5
BLAKE2b-256 529a91d958e3902d13feee0af0add3f30fb0cf7f655a528653aee0a56a18e3ac

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.20.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0d262794b2339770d5378a5717f8ddbfb68e409974582f0503272b90b7cc79bd
MD5 365b3426a77ee5e09f11bdfcf341bdfd
BLAKE2b-256 0a9d8bd5d0e516b196f59f1c4439b424b8d4fa62d492a4b531aae322d2d82a7b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.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.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.16

File hashes

Hashes for grpcio-1.20.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 714cddc170efeedf6312d8534ef7f52dcf20dd8f5fb7c5e425c2b6819ac1b9ec
MD5 15be666aa587e177627ab0ee8979e077
BLAKE2b-256 adedf43f7a917fc3f4006d9e8e2ec5836436521f9fe1d08f0c8d018d4975eb74

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.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.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.16

File hashes

Hashes for grpcio-1.20.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cf9b57d139e44eab294ab31eb0181150d877440a8a321bb4422e2c09f6c7a7d9
MD5 aabac88d1c6b066413882ef47d008415
BLAKE2b-256 ea9d6f2b4665b6d1ed1af75dcc4964f79a1bd23a33814d0c2881538abb573749

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.20.1-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 18d44515a3fd3a71442abb5a1c65fc1909d859c13cda50c974cbc69742a80cea
MD5 b61c610763567f2601fac8a8a1243477
BLAKE2b-256 0949f2b1f98fa218ee8ee91e89590c3c3539cc432ca65f6afe5b96c10f0f5a00

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.20.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 1d50674bdffa18ea6143e0df9a1b97cdeab583ce5dd1cabda3502ee75215065c
MD5 693694c62f6ad447279fa57ee434fe8c
BLAKE2b-256 0918b06c832391e3b47762942f677880b168222bd2719a2adf3f669a661a488f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.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.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.16

File hashes

Hashes for grpcio-1.20.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 7edf33e929b1666ff68bfc280b9021a862ab423d0e6306889cc2bc7c907dfc27
MD5 35c9f7778471745be5670434d9f1a903
BLAKE2b-256 c32061c927d2771eb2ebef4d7028688bd206c1b0bfb1ed8cbe877293191921c7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.20.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 53c512c7c8af9cb9e3e1cc5ce5e4a5fb2f2e7695e69219f90016bc602abe2f3b
MD5 8804a5635dad5000b96abbf78511f1a5
BLAKE2b-256 871ddf17052784a9e19668b9ef7cb778d31ba984e4a2057be2895d1709505dff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.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.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.16

File hashes

Hashes for grpcio-1.20.1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 57ea92c9b81015e5f2cc355e53f08a4e661b78a207857311c7b8c55137a43b29
MD5 e25b5818ced055412668249a38aee484
BLAKE2b-256 80433a3f1a7a008a725a8c25d256884139bdba77a92a649b93b5972da7b6da3f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.1-cp35-cp35m-macosx_10_7_intel.whl
  • Upload date:
  • Size: 3.7 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.16

File hashes

Hashes for grpcio-1.20.1-cp35-cp35m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 051957d0f61f4dec90868a54ee969228409926a0a19fd8ed7b4a0e50388effee
MD5 570b415189a4c54d5b4bdc4ba0220aba
BLAKE2b-256 33dab97d02c7dded9bd676fa27d25e4cd4d0f998b2a24410d1f5b235daef3d48

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.1-cp35-cp35m-linux_armv7l.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.16

File hashes

Hashes for grpcio-1.20.1-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 9e530c69d6e566ca985193a63363af36a7560a23f4979df6e392bb1bdf05caed
MD5 a6384ab18c1ecd691a62ede392b28586
BLAKE2b-256 4813571d7a29cec16b45b46af9c4a6145666414a574dbea80e4e4580598de3b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.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.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.16

File hashes

Hashes for grpcio-1.20.1-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 142693dc8bd427c595d030f75bf8d01c843d9ccb659499e8507ad22da832e9cf
MD5 41feda3b8f4e03f050654a848f821dac
BLAKE2b-256 0042524b49771338337364d3725865d3785f870f5e080e9529c291c425233731

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.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.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.16

File hashes

Hashes for grpcio-1.20.1-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 dd716aab42be3d1fde74577e42b6319b6399b07d418e49b653e0e1bcd88399bc
MD5 e26168643dcde790b5a0125dacdf2289
BLAKE2b-256 fc19d0f174d34517784834df9d3ad4e6cd5959e4d083d884871c8a71e6c49799

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.20.1-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 dea43aa864edc3b3d8de1f6e40144119fbccdf04525b3ece4fef9392b6eed436
MD5 7fb2a077284886b8c6ba868b5ebd1579
BLAKE2b-256 03e1e4956684759d793027de8946ab560875db2def40c01e3e47daf5557cc1ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.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.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.16

File hashes

Hashes for grpcio-1.20.1-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f938fdfb780a0658d04e1d727b4fb470490087c56cb31ba75cb54fb4bea515bd
MD5 ed173e444572043fdadca91746e3871e
BLAKE2b-256 4671730abe5d422a6046f955f98b42c0ccb807db09449ded83d7a615ca64541b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.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.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.16

File hashes

Hashes for grpcio-1.20.1-cp34-cp34m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 9de6746a749634004499bac773ad9877d84d826aca2dc14ba4ebd3cd9f64ed74
MD5 7bc3efeab7140ee4eb85ac04c1e45928
BLAKE2b-256 ee63938443493c4176bce383e6136a910207fed40be32fe03b377014b6be1446

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.20.1-cp34-cp34m-linux_armv7l.whl
Algorithm Hash digest
SHA256 52861aac5c1dcf4c841eb555b257cfb56d0c840a286495078382f538d0a34d6a
MD5 148a025a788c4543b026fae5a4d4aa7f
BLAKE2b-256 d3b53678340f6b8e58f4bec2460cb47db98805b42aedd2463050ba8de5d5e44f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.20.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f58e3377da8e8e453068dffc00d17691a97ffd1c3a5a7460b890cf83a9ca6edf
MD5 60318d50056258ae8ce80f6e75d459a7
BLAKE2b-256 71f4175dc28565a59860912c11d859d15d829b8f0e6fe0c8dc7405c6560d52e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.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.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.16

File hashes

Hashes for grpcio-1.20.1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 64fe0dc897f1f19a6500948862857cb3b97247be997bc47b4dbade42f8af5f97
MD5 e7dd5b6157623400055c6835fdf56fbe
BLAKE2b-256 3e0a954f2be293595c8561dbb6db5a6d3d92490bd2c811ff5387ee9d56b7384e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.1-cp27-cp27mu-linux_armv7l.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.16

File hashes

Hashes for grpcio-1.20.1-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 67920ec7d2de89845e5232aed41271ef53e1a362c8ffb84f6a6c6e644a75ce3a
MD5 3f8e18889637c8b5f5655cf53d68e091
BLAKE2b-256 a29d9f393ca42ddf624b94f138329dfc87ac9d36eee3d269dd9fe145b9c14f20

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.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.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.16

File hashes

Hashes for grpcio-1.20.1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 3945335a5b8332995415c5f03da1a5f6e36da6ede819a611e2cbb093cf752bdd
MD5 1d52bf3c07ed59bea0642bbe2d5fa35b
BLAKE2b-256 45ea5caf66d75fb7ecde9a1ee8cbb6c6ef3a7283b683f37f34ebf7df5acc3eb8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.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.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.16

File hashes

Hashes for grpcio-1.20.1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 638ff1a45dd7a226b2b9390296a111142363fe2b5503499f3987d599bce0683c
MD5 4c7c203c00a2355fc81af62a57f478f7
BLAKE2b-256 20d2dbab6b03174e6963a80c755057b13a274292105bd6a81743db112bca38c0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.20.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3a9603ff14070524f4c69634afad6b280b07ad9f8c2c346c4b2290306e1928ac
MD5 4e367b51cccf487ae2be7852f9273484
BLAKE2b-256 655cf685f869dc18e3c1c45bf9ca591b8b9397996885dca95ac752d14d1e2f5e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.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.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.16

File hashes

Hashes for grpcio-1.20.1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 0442f7d0c527ceab6a76159937ae8109941eace90ec00cb1bd08fc4f3179e52e
MD5 75310df4b60dcc127fbf8b6763b8276a
BLAKE2b-256 011160b252373ea1b9771779bfcba3864587d391740971442a3d64f83e58f827

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.20.1-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.9 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.16

File hashes

Hashes for grpcio-1.20.1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 93e7672348d4c68ac570c499a794ff4453a1928c39cbe708472a0e1b77176411
MD5 c9b3dc60ca0d1730287bf0039b69c852
BLAKE2b-256 41c06bf54d407de0931c080c1f177823929ad0543634b5016e288d7f21889035

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