Skip to main content

HTTP/2-based RPC framework

Project description

compat_check_pypi

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 RELEASE_TAG_HERE 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.29.0.tar.gz (19.6 MB view details)

Uploaded Source

Built Distributions

grpcio-1.29.0-cp38-cp38-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.8 Windows x86-64

grpcio-1.29.0-cp38-cp38-win32.whl (2.0 MB view details)

Uploaded CPython 3.8 Windows x86

grpcio-1.29.0-cp38-cp38-manylinux2010_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

grpcio-1.29.0-cp38-cp38-manylinux2010_i686.whl (3.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

grpcio-1.29.0-cp38-cp38-macosx_10_9_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

grpcio-1.29.0-cp37-cp37m-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.7m Windows x86-64

grpcio-1.29.0-cp37-cp37m-win32.whl (1.9 MB view details)

Uploaded CPython 3.7m Windows x86

grpcio-1.29.0-cp37-cp37m-manylinux2010_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

grpcio-1.29.0-cp37-cp37m-manylinux2010_i686.whl (3.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

grpcio-1.29.0-cp37-cp37m-macosx_10_9_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

grpcio-1.29.0-cp36-cp36m-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.6m Windows x86-64

grpcio-1.29.0-cp36-cp36m-win32.whl (2.0 MB view details)

Uploaded CPython 3.6m Windows x86

grpcio-1.29.0-cp36-cp36m-manylinux2010_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

grpcio-1.29.0-cp36-cp36m-manylinux2010_i686.whl (3.3 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

grpcio-1.29.0-cp36-cp36m-macosx_10_9_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

grpcio-1.29.0-cp36-cp36m-linux_armv7l.whl (21.4 MB view details)

Uploaded CPython 3.6m

grpcio-1.29.0-cp35-cp35m-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.5m Windows x86-64

grpcio-1.29.0-cp35-cp35m-win32.whl (2.0 MB view details)

Uploaded CPython 3.5m Windows x86

grpcio-1.29.0-cp35-cp35m-manylinux2010_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ x86-64

grpcio-1.29.0-cp35-cp35m-manylinux2010_i686.whl (3.2 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

grpcio-1.29.0-cp35-cp35m-macosx_10_7_intel.whl (5.2 MB view details)

Uploaded CPython 3.5m macOS 10.7+ intel

grpcio-1.29.0-cp35-cp35m-linux_armv7l.whl (21.3 MB view details)

Uploaded CPython 3.5m

grpcio-1.29.0-cp27-cp27mu-manylinux2010_x86_64.whl (3.0 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ x86-64

grpcio-1.29.0-cp27-cp27mu-manylinux2010_i686.whl (3.2 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

grpcio-1.29.0-cp27-cp27mu-linux_armv7l.whl (21.1 MB view details)

Uploaded CPython 2.7mu

grpcio-1.29.0-cp27-cp27m-win_amd64.whl (2.5 MB view details)

Uploaded CPython 2.7m Windows x86-64

grpcio-1.29.0-cp27-cp27m-win32.whl (2.6 MB view details)

Uploaded CPython 2.7m Windows x86

grpcio-1.29.0-cp27-cp27m-manylinux2010_x86_64.whl (3.0 MB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ x86-64

grpcio-1.29.0-cp27-cp27m-manylinux2010_i686.whl (3.2 MB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

grpcio-1.29.0-cp27-cp27m-macosx_10_9_x86_64.whl (2.7 MB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: grpcio-1.29.0.tar.gz
  • Upload date:
  • Size: 19.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18rc1

File hashes

Hashes for grpcio-1.29.0.tar.gz
Algorithm Hash digest
SHA256 a97ea91e31863c9a3879684b5fb3c6ab4b17c5431787548fc9f52b9483ea9c25
MD5 b63623e411b51e4761c1e40dcaa0142d
BLAKE2b-256 f12362d3e82fa4c505f3195315c8a774b2e656b556d174329aa98edb829e48bc

See more details on using hashes here.

File details

Details for the file grpcio-1.29.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: grpcio-1.29.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18rc1

File hashes

Hashes for grpcio-1.29.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b85f355fc24b68a6c52f2750e7141110d1fcd07dfdc9b282de0000550fe0511b
MD5 2d436ffe1b7e90e9413585c399cee38b
BLAKE2b-256 b822937cee490dae6dfdba50ced5dad0d23095a8f4d80e6dd670db40b07463c5

See more details on using hashes here.

File details

Details for the file grpcio-1.29.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: grpcio-1.29.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18rc1

File hashes

Hashes for grpcio-1.29.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 97fcbdf1f12e0079d26db73da11ee35a09adc870b1e72fbff0211f6a8003a4e8
MD5 4881f00252a68a30ca3a584899406554
BLAKE2b-256 882dcedf902834a04faac05debe54e174ff487ba229c07c67594fdf2053125b4

See more details on using hashes here.

File details

Details for the file grpcio-1.29.0-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio-1.29.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18rc1

File hashes

Hashes for grpcio-1.29.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c3a0ef12ee86f6e72db50e01c3dba7735a76d8c30104b9b0f7fd9d65ceb9d93f
MD5 165812558c44c8db0d576b92311d23cb
BLAKE2b-256 7fd2a6f7cdee1c4bda7195a221be18a3d1a4d7cbade270b5a6014d45904fc2e0

See more details on using hashes here.

File details

Details for the file grpcio-1.29.0-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio-1.29.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18rc1

File hashes

Hashes for grpcio-1.29.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 524ae8d3da61b856cf08abb3d0947df05402919e4be1f88328e0c1004031f72e
MD5 2236b94260ab97930d3261f263b4466d
BLAKE2b-256 7ad7de502690b38a54d243d65febb05445932adca8a52157f49df9955f256122

See more details on using hashes here.

File details

Details for the file grpcio-1.29.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio-1.29.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18rc1

File hashes

Hashes for grpcio-1.29.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 80e9f9f6265149ca7c84e1c8c31c2cf3e2869c45776fbe8880a3133a11d6d290
MD5 64fea725043290ccb56dc185b5aecbeb
BLAKE2b-256 3aec2c697e94cfbaa9d08442fde13987d7adfd60d8ecbe1c284d67c04eebc1ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.29.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 2.3 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.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18rc1

File hashes

Hashes for grpcio-1.29.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 81bbf78a399e0ee516c81ddad8601f12af3fc9b30f2e4b2fbd64efd327304a4d
MD5 ab8f353cdff776ec8811dc9dcd881f44
BLAKE2b-256 9a107fe727fbdb4086b1afb1bb3c70052fe04c9dffe6cc3db6beb6ad6ce45077

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.29.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18rc1

File hashes

Hashes for grpcio-1.29.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 3d8c510b6eabce5192ce126003d74d7751c7218d3e2ad39fcf02400d7ec43abe
MD5 c8956470c4465400b441932e29f1ce0a
BLAKE2b-256 dfd0335c4f903978355cbea885916804befaf55353097bd96aaa9f2c39ba4cee

See more details on using hashes here.

File details

Details for the file grpcio-1.29.0-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio-1.29.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18rc1

File hashes

Hashes for grpcio-1.29.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9ef0370bcf629ece4e7e37796e4604e2514b920669be2911fc3f9c163a73a57b
MD5 3c65541ea720b1da26cb3bbeeb29516e
BLAKE2b-256 82ca5e135298d1c033dffa25e9d34b8f848d000aa2bc9c6001768b289e51295e

See more details on using hashes here.

File details

Details for the file grpcio-1.29.0-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio-1.29.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18rc1

File hashes

Hashes for grpcio-1.29.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5fd9ffe938e9225c654c60eb21ff011108cc27302db85200413807e0eda99a4a
MD5 f95acc620878bbaa75ff3882f11fc761
BLAKE2b-256 15718befcf055d885a69c0829f69f1a33f158b0adb9e34370fda4a815e7957b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.29.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.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.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18rc1

File hashes

Hashes for grpcio-1.29.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ff7931241351521b8df01d7448800ce0d59364321d8d82c49b826d455678ff08
MD5 44f07b11281cddea13c7094e5679d497
BLAKE2b-256 59755a949d048d96ecb3c304f14975f8a0965cb0d3c3f5f5f6b3f4e15c3d49eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.29.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 2.4 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.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18rc1

File hashes

Hashes for grpcio-1.29.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 7e02a7c40304eecee203f809a982732bd37fad4e798acad98fe73c66e44ff2db
MD5 38bd848d02702e225211633a99d8ac94
BLAKE2b-256 118ef01dd2b7e845fe8bf6c93dc240e4a7a839e85a0f1a9038c86c3aebbdc658

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.29.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18rc1

File hashes

Hashes for grpcio-1.29.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 54e4658c09084b09cd83a5ea3a8bce78e4031ff1010bb8908c399a22a76a6f08
MD5 73afb28b7fbcf5f79ef331ae8b795725
BLAKE2b-256 5a51081e0b62c10dcbd16e8e5eda2cb0b31d8f702b5765116368557aa7d0b9f3

See more details on using hashes here.

File details

Details for the file grpcio-1.29.0-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio-1.29.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18rc1

File hashes

Hashes for grpcio-1.29.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 eede3039c3998e2cc0f6713f4ac70f235bd32967c9b958a17bf937aceebc12c3
MD5 1dc17214e3d5a7963256104e92bb4d82
BLAKE2b-256 cd042b67f0a3645481235d5547891fd0e45e384f1ae5676788f24a7c8735b4e9

See more details on using hashes here.

File details

Details for the file grpcio-1.29.0-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio-1.29.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18rc1

File hashes

Hashes for grpcio-1.29.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 517538a54afdd67162ea2af1ac3326c0752c5d13e6ddadbc4885f6a28e91ab28
MD5 e966d21da7fa1311dc40efd07a4f61b6
BLAKE2b-256 5f2a15cd19966feb68b87835da655228db875bfe5b983969794d48080ab4bb46

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.29.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.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.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18rc1

File hashes

Hashes for grpcio-1.29.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 97b72bf2242a351a89184134adbb0ae3b422e6893c6c712bc7669e2eab21501b
MD5 ac9e7dbf7dd47f52630c7ddf2fa4973a
BLAKE2b-256 a7908c6938631dd6faba49a1dbc130da046e76696b85878ef76b536abe2a58e5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.29.0-cp36-cp36m-linux_armv7l.whl
  • Upload date:
  • Size: 21.4 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18rc1

File hashes

Hashes for grpcio-1.29.0-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 57c8cc2ae8cb94c3a89671af7e1380a4cdfcd6bab7ba303f4461ec32ded250ae
MD5 70de123e79a0398186606ab8e3cdfc6f
BLAKE2b-256 77e6138228fe9c707a0fde2132377819b3e6962feb83fcb262888a0da6dd5c60

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.29.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 2.4 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.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18rc1

File hashes

Hashes for grpcio-1.29.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 806c9759f5589b3761561187408e0313a35c5c53f075c7590effab8d27d67dfe
MD5 22b247b676b399c4850c4dcbf240aa86
BLAKE2b-256 9a7047389dc7521426e021159b4ca275761070c2788ede6dcc385f18957a8a47

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.29.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18rc1

File hashes

Hashes for grpcio-1.29.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 10cdc8946a7c2284bbc8e16d346eaa2beeaae86ea598f345df86d4ef7dfedb84
MD5 de1785e061e1c4201607adfe923110aa
BLAKE2b-256 6dd4fb569bfb941a37acff9a4b874a3489108af97c2ff712374626d17d4f154e

See more details on using hashes here.

File details

Details for the file grpcio-1.29.0-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio-1.29.0-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18rc1

File hashes

Hashes for grpcio-1.29.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9cfb4b71cc3c8757f137d47000f9d90d4bd818733f9ab4f78bd447e052a4cb9a
MD5 12546a01f26e3fadee23c13551b3793f
BLAKE2b-256 719d55ab2e369efa72fad97be41f76e6377c09e29776702adc229dcb5c5af37f

See more details on using hashes here.

File details

Details for the file grpcio-1.29.0-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio-1.29.0-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18rc1

File hashes

Hashes for grpcio-1.29.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b49f243936b0f6ae8eb6adf88a1e54e736f1c6724a1bff6b591d105d708263ad
MD5 078485cd780a5661b595dd9e8fc46f2f
BLAKE2b-256 6b1850b1d362b07c26dd59a5e7061164d1c35379e02b6b78e76282475299f59d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.29.0-cp35-cp35m-macosx_10_7_intel.whl
  • Upload date:
  • Size: 5.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.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18rc1

File hashes

Hashes for grpcio-1.29.0-cp35-cp35m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 a6dddb177b3cfa0cfe299fb9e07d6a3382cc79466bef48fe9c4326d5c5b1dcb8
MD5 aeeb9ef4af3bd20c8e410f70e584a367
BLAKE2b-256 16bfe7dcb464c0db99dc7f0268cc97da1256cbc438c3617b6f2a6c33f965382c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.29.0-cp35-cp35m-linux_armv7l.whl
  • Upload date:
  • Size: 21.3 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18rc1

File hashes

Hashes for grpcio-1.29.0-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 7bf3cb1e0f4a9c89f7b748583b994bdce183103d89d5ff486da48a7668a052c7
MD5 4db671b9009e643a47fa353e4c7712a2
BLAKE2b-256 d809461de11b7b687dc109097779dd026eead246c72456a60b9aade937bc1bb9

See more details on using hashes here.

File details

Details for the file grpcio-1.29.0-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio-1.29.0-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18rc1

File hashes

Hashes for grpcio-1.29.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 75b2247307a7ecaf6abc9eb2bd04af8f88816c111b87bf0044d7924396e9549c
MD5 ca733d7721093909b32c1d304de78963
BLAKE2b-256 f5c452f17ea1a0e0f2eaf8e8aa829b97188cffa0bca88967945c0a20b7855553

See more details on using hashes here.

File details

Details for the file grpcio-1.29.0-cp27-cp27mu-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio-1.29.0-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18rc1

File hashes

Hashes for grpcio-1.29.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2637ce96b7c954d2b71060f50eb4c72f81668f1b2faa6cbdc74677e405978901
MD5 0209a0b5cf482f0a7cd04c212b4a1ffe
BLAKE2b-256 3e09587ed8a89c1dcad0cb20e802510abb5e50e8cb53988406e37bc3ab626bc8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.29.0-cp27-cp27mu-linux_armv7l.whl
  • Upload date:
  • Size: 21.1 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18rc1

File hashes

Hashes for grpcio-1.29.0-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 ebf0ccb782027ef9e213e03b6d00bbd8dabd80959db7d468c0738e6d94b5204c
MD5 6ab9974c7e36a469f3d948cf80a1eac8
BLAKE2b-256 921d26272495631b6248aa4ae7097c2c25d05ab84cab552f2b7f7288eb18bf22

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.29.0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 2.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.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18rc1

File hashes

Hashes for grpcio-1.29.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 da0ca9b1089d00e39a8b83deec799a4e5c37ec1b44d804495424acde50531868
MD5 ca5370753e22681336ff3d8186d3fe62
BLAKE2b-256 802f05694421c94810cdc49ca29d4c6caf5c8c5a4bc1cb17e1a2b07fd982bcde

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.29.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 2.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.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18rc1

File hashes

Hashes for grpcio-1.29.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 886d48c32960b39e059494637eb0157a694956248d03b0de814447c188b74799
MD5 603aba03e58daac0a3cb5cb7f657d1c8
BLAKE2b-256 acee13a662ed68cef2de7e7b6dd0af60c9e9da2a9d4a1bb9254c9f8ca11bc887

See more details on using hashes here.

File details

Details for the file grpcio-1.29.0-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio-1.29.0-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18rc1

File hashes

Hashes for grpcio-1.29.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 23bc395a32c2465564cb242e48bdd2fdbe5a4aebf307649a800da1b971ee7f29
MD5 859204e5499da16c011995333e9a2dbc
BLAKE2b-256 7d87996839b06637cd441050c3d0a3d69af10713463879b9b35182397c633a32

See more details on using hashes here.

File details

Details for the file grpcio-1.29.0-cp27-cp27m-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio-1.29.0-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18rc1

File hashes

Hashes for grpcio-1.29.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5024b26e17a1bfc9390fb3b8077bf886eee02970af780fd23072970ef08cefe8
MD5 f9d99d9b7d19ad706d8236a9d6f7f87d
BLAKE2b-256 b5e09cc98c709ef7841cefa373ac9faa89e0f96b0e5dcf54fc899ac69bc65214

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.29.0-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.7 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.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18rc1

File hashes

Hashes for grpcio-1.29.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e90f3d11185c36593186e5ff1f581acc6ddfa4190f145b0366e579de1f52803b
MD5 18bd11a20222fa22a670d0e05eb31d31
BLAKE2b-256 4127bb317026f11f9e9aa5161af99855dd741cc7c49c0e00e87957a1bf02e3cd

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