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 $(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.27.0rc1.tar.gz (16.9 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

grpcio-1.27.0rc1-cp38-cp38-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.8Windows x86-64

grpcio-1.27.0rc1-cp38-cp38-win32.whl (1.7 MB view details)

Uploaded CPython 3.8Windows x86

grpcio-1.27.0rc1-cp38-cp38-manylinux2010_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

grpcio-1.27.0rc1-cp38-cp38-manylinux2010_i686.whl (2.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

grpcio-1.27.0rc1-cp38-cp38-manylinux1_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.8

grpcio-1.27.0rc1-cp38-cp38-manylinux1_i686.whl (2.7 MB view details)

Uploaded CPython 3.8

grpcio-1.27.0rc1-cp38-cp38-macosx_10_9_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

grpcio-1.27.0rc1-cp37-cp37m-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.7mWindows x86-64

grpcio-1.27.0rc1-cp37-cp37m-win32.whl (1.6 MB view details)

Uploaded CPython 3.7mWindows x86

grpcio-1.27.0rc1-cp37-cp37m-manylinux2010_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

grpcio-1.27.0rc1-cp37-cp37m-manylinux2010_i686.whl (2.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

grpcio-1.27.0rc1-cp37-cp37m-manylinux1_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.7m

grpcio-1.27.0rc1-cp37-cp37m-manylinux1_i686.whl (2.7 MB view details)

Uploaded CPython 3.7m

grpcio-1.27.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

grpcio-1.27.0rc1-cp36-cp36m-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.6mWindows x86-64

grpcio-1.27.0rc1-cp36-cp36m-win32.whl (1.7 MB view details)

Uploaded CPython 3.6mWindows x86

grpcio-1.27.0rc1-cp36-cp36m-manylinux2010_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

grpcio-1.27.0rc1-cp36-cp36m-manylinux2010_i686.whl (2.9 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

grpcio-1.27.0rc1-cp36-cp36m-manylinux1_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.6m

grpcio-1.27.0rc1-cp36-cp36m-manylinux1_i686.whl (2.7 MB view details)

Uploaded CPython 3.6m

grpcio-1.27.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

grpcio-1.27.0rc1-cp36-cp36m-linux_armv7l.whl (17.2 MB view details)

Uploaded CPython 3.6m

grpcio-1.27.0rc1-cp35-cp35m-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.5mWindows x86-64

grpcio-1.27.0rc1-cp35-cp35m-win32.whl (1.7 MB view details)

Uploaded CPython 3.5mWindows x86

grpcio-1.27.0rc1-cp35-cp35m-manylinux2010_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

grpcio-1.27.0rc1-cp35-cp35m-manylinux2010_i686.whl (2.9 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

grpcio-1.27.0rc1-cp35-cp35m-manylinux1_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.5m

grpcio-1.27.0rc1-cp35-cp35m-manylinux1_i686.whl (2.7 MB view details)

Uploaded CPython 3.5m

grpcio-1.27.0rc1-cp35-cp35m-macosx_10_7_intel.whl (4.7 MB view details)

Uploaded CPython 3.5mmacOS 10.7+ Intel (x86-64, i386)

grpcio-1.27.0rc1-cp35-cp35m-linux_armv7l.whl (17.1 MB view details)

Uploaded CPython 3.5m

grpcio-1.27.0rc1-cp27-cp27mu-manylinux2010_x86_64.whl (2.6 MB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

grpcio-1.27.0rc1-cp27-cp27mu-manylinux2010_i686.whl (2.9 MB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

grpcio-1.27.0rc1-cp27-cp27mu-manylinux1_x86_64.whl (2.7 MB view details)

Uploaded CPython 2.7mu

grpcio-1.27.0rc1-cp27-cp27mu-manylinux1_i686.whl (2.6 MB view details)

Uploaded CPython 2.7mu

grpcio-1.27.0rc1-cp27-cp27mu-linux_armv7l.whl (16.9 MB view details)

Uploaded CPython 2.7mu

grpcio-1.27.0rc1-cp27-cp27m-win_amd64.whl (2.2 MB view details)

Uploaded CPython 2.7mWindows x86-64

grpcio-1.27.0rc1-cp27-cp27m-win32.whl (2.3 MB view details)

Uploaded CPython 2.7mWindows x86

grpcio-1.27.0rc1-cp27-cp27m-manylinux2010_x86_64.whl (2.6 MB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

grpcio-1.27.0rc1-cp27-cp27m-manylinux2010_i686.whl (2.9 MB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

grpcio-1.27.0rc1-cp27-cp27m-manylinux1_x86_64.whl (2.7 MB view details)

Uploaded CPython 2.7m

grpcio-1.27.0rc1-cp27-cp27m-manylinux1_i686.whl (2.6 MB view details)

Uploaded CPython 2.7m

grpcio-1.27.0rc1-cp27-cp27m-macosx_10_9_x86_64.whl (2.5 MB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

Details for the file grpcio-1.27.0rc1.tar.gz.

File metadata

  • Download URL: grpcio-1.27.0rc1.tar.gz
  • Upload date:
  • Size: 16.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.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio-1.27.0rc1.tar.gz
Algorithm Hash digest
SHA256 8ccf26b36919f43152ff92cbb4746fbd076e03b9234b7c3bece8a203133ad3a4
MD5 f29709c034b7147a4bad79f3d85e3733
BLAKE2b-256 de30dc5574f8579d928ddca6a9070853e22c5189841666760532c2c943354560

See more details on using hashes here.

File details

Details for the file grpcio-1.27.0rc1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: grpcio-1.27.0rc1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.8, 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.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio-1.27.0rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a640d9a8751b40163f26d16d6e6199faec0882599820f0be13c61b730687da0b
MD5 5f299d9816f783ef8544f9c38415f586
BLAKE2b-256 6d1f9a20c7d29ed0f89b5270fccbb57aebeb457a0c58405d3aa589a38f956e00

See more details on using hashes here.

File details

Details for the file grpcio-1.27.0rc1-cp38-cp38-win32.whl.

File metadata

  • Download URL: grpcio-1.27.0rc1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.8, 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.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio-1.27.0rc1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 5c906e5fd3e22fdd0d0fa9fab99a1308038e0f9a034188903b4996092ab2f712
MD5 58e6ebd05f884ecd9ff16910c99f7ef4
BLAKE2b-256 ea837768ef90432b117cb10f328698ddae85cbbb104b462082c1d1ccc4b55377

See more details on using hashes here.

File details

Details for the file grpcio-1.27.0rc1-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio-1.27.0rc1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ 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.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio-1.27.0rc1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 cd281dafd2f1ab636dbd972a58150d88b7cc82e022eec732b232a741154390c9
MD5 f951ae9e53fd291a2cb3fec0b62d6acf
BLAKE2b-256 40e03397f1cf61bae3bcc8c63055d9a1ee7c11900c01d153874c73f5e0720fc7

See more details on using hashes here.

File details

Details for the file grpcio-1.27.0rc1-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio-1.27.0rc1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • 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.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio-1.27.0rc1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e3e333292930d6b372d0d16f6650e0053f45e895794b8e88ea2332751d02cb26
MD5 a3c01dd04a82b8b690ee268f7c84c532
BLAKE2b-256 1cb45f28e9b4c33e049cb5c53b8072b38eb3bb47b0654a1c9ab5658f6f8ceff8

See more details on using hashes here.

File details

Details for the file grpcio-1.27.0rc1-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: grpcio-1.27.0rc1-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.8
  • 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.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio-1.27.0rc1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2e79d04734c8cca43758d1c3115dcb4203ec24408dd03679700b1ed921842433
MD5 7a67b39a5ce4a07d8f41345f10a2d1f6
BLAKE2b-256 422cb870ce5f6968fe465b273072914e8fbe4b2e563c7766a26bc2f46c0cd3d2

See more details on using hashes here.

File details

Details for the file grpcio-1.27.0rc1-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: grpcio-1.27.0rc1-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.8
  • 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.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio-1.27.0rc1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1097fee7dbea3ad2c2141f159f75f9e9ef935499f908aa3191d1ad6788dfc498
MD5 adb26feeaa011d8bd52131a3d797404e
BLAKE2b-256 30a987ab28482728aec15afc356da3ee368ff97df0427174c04bad81b595e0c6

See more details on using hashes here.

File details

Details for the file grpcio-1.27.0rc1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio-1.27.0rc1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.8, 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.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio-1.27.0rc1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1b92bd0bdb2a03850c3591256034d9126e21c017e02020519618ddbb6266498c
MD5 452bb1f8040ae8257c5dbad827b10339
BLAKE2b-256 82f81bf542e9bf9d9a59eb4a440d9aec8c54e78951960a0bdb11a42ccb4d64a7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.27.0rc1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.9 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.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio-1.27.0rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 af30ee750746ca1d8ec6e5b2deb1a75078300f285ffe6ab5d9ab2d97ead4eb4b
MD5 9b180eb8f010c3aaa55aa2e3b9c138cd
BLAKE2b-256 964262f72678fe7ce22f77e3734349c841fc256b5de5c5e75d84df34d046b3b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.27.0rc1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.6 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.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio-1.27.0rc1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 7d35f11d0f15def99c95eae7f97c968c44d6a3c1d1f524c9b7214e7dc87a8440
MD5 426b785acc5600d20522a2b95152c2f9
BLAKE2b-256 67735f10b9f4d138a49c03972b2d075de2c7e204ff6ca92c89d0868401c47479

See more details on using hashes here.

File details

Details for the file grpcio-1.27.0rc1-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio-1.27.0rc1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ 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.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio-1.27.0rc1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 29d18073a52d73b4b8e5a880285b463270a2beddf97eeab6ca4979d2bcc71b23
MD5 de17bdbcf872ef1712413ab24bb6e9dd
BLAKE2b-256 a0e0d8704ae17c45dfa1ce1458b1f6572f0874e20a2800088400008cd96800a1

See more details on using hashes here.

File details

Details for the file grpcio-1.27.0rc1-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio-1.27.0rc1-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • 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.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio-1.27.0rc1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3a256b43ffb06374661ba614b060283bc43518aad9bc19850c9cb26fb3f1a87a
MD5 51efc96edb25fe8b7d5ff929c138efc1
BLAKE2b-256 42af1759dd40c9db1b29a96e45014473b3958d90ee44a6672fe0d81bc0b58c47

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.27.0rc1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.7 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.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio-1.27.0rc1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 18ade9008226164ba67bee1a953a05c11386d25aa51069b8aea2d9d2d25d0d33
MD5 01577d65c9b640aeb8109c2bb7df2601
BLAKE2b-256 03e925883a767121bb674df65b614d2e553f9b7122b694726f7396714518eb7a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.27.0rc1-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.7 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.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio-1.27.0rc1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8e6ebf30b905e8c379eeb8bd4bed03163fc01ec97a37e157da44367f9ebb0abb
MD5 a1e54bde78e8e665fd4436e8035e6b53
BLAKE2b-256 36e1caecbd7b1629dc19498275e866cdfe715fa321f98d44783ba9012eedb0c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.27.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.5 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.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio-1.27.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c0da7997e2026f3e8dafd5e8dc50f7fbab085e39b632b7c72e4e805ea1676ce8
MD5 a2825860ec9877838c33aa8b143c9b1a
BLAKE2b-256 5a08275d1d653287fd12544b5969e12a67bc2593811068c318d96cade2c00ede

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.27.0rc1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 2.0 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.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio-1.27.0rc1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 cbbb88eefe1a23e59ee82a082561bbddf8123e107b758bf3524f05f994edae44
MD5 db0d91dae86dd67b877836e29a1c7a70
BLAKE2b-256 0aa1599a65ecf8f0393b0845566e9aa93b254c557b81c64d2912b2a6b8dd50ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.27.0rc1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.7 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.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio-1.27.0rc1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 ad5f1746f6a962417c5a7491af919383625e2a6637860a488aac748f4220bf12
MD5 c77d0ba31767393d829f8008fede9d4b
BLAKE2b-256 4d4ac243dffe03b96e8df5ab43f33e4d0381cc4de0a2156ee8fffe3a2882fc8f

See more details on using hashes here.

File details

Details for the file grpcio-1.27.0rc1-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio-1.27.0rc1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ 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.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio-1.27.0rc1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1fab7e444d38bc6f1978ce37a457cc9a6dd4f27f035fa4e5e3079ab237e72a47
MD5 396dd8765f6bcba792ef8125a83a8a05
BLAKE2b-256 f58ecb4c4c8a721646644e5339517462dd86534ccf3626f1d63de50370efdefb

See more details on using hashes here.

File details

Details for the file grpcio-1.27.0rc1-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio-1.27.0rc1-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • 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.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio-1.27.0rc1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 04aa7e571d00f38bc8d5a6d4cd7338dc5574702dbf83671e09c874940225b031
MD5 89a6d226732e0f15cc26bd901fde37d2
BLAKE2b-256 728070a17471609d803a5a2416db778aece9954c7b5e21cf2fc288631e95608c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.27.0rc1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.7 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.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio-1.27.0rc1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ae648a9d3d74253c5702d44563659991f9b014e8a241384b87fd65948ae8b302
MD5 fa3c33f6354f5a8c9948bb78ad4c0e8e
BLAKE2b-256 ebab28d7fa1d61233bda5d0322ec2ce1b0edf83d48701e9366033e07302976ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.27.0rc1-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.7 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.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio-1.27.0rc1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3715d64678039a123995b890967fd0b0877acb6c49ce5b0112cc3e4ee030ae7c
MD5 c38a4979dce5711456dfe7a29bd1fe32
BLAKE2b-256 48d29f3dbac3517b793d161aeaf38ee3d569d7616d02b4e55b3c02b735ab09c7

See more details on using hashes here.

File details

Details for the file grpcio-1.27.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio-1.27.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.5 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.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio-1.27.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f22a1132b6ae1e4722238fc02f9ffda902e94ef1466be6bdcab43a2103ae2155
MD5 d23eedf5cba6578653a7b243cb403eab
BLAKE2b-256 23ad19587c8deeab133e522840411306bfec10878a705819474670e86d44a8b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.27.0rc1-cp36-cp36m-linux_armv7l.whl
  • Upload date:
  • Size: 17.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.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio-1.27.0rc1-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 376b1a185d93544a7c55f7743316940993e4de67344ef74ea12e728e635fdb9b
MD5 7aa91fc09174361452cd49d2317a323d
BLAKE2b-256 03d0ef47447a24dc7a863e550ea7b63ec396623eae4702368f351764dc466f15

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.27.0rc1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 2.0 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.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio-1.27.0rc1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 392c2782ffc44e929bd607d25ece066daa1892e45db424ed4c1c89ffd42f5a2b
MD5 7a9ae66f56c6dec770ba2420f217614e
BLAKE2b-256 9cc4b2b210bf03c93812939f0006274ea58f9e4121d1170d78b6cccee3cbf353

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.27.0rc1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 1.7 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.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio-1.27.0rc1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 1fb29b6e2c045ada9b4f49dbf49fdea96e4c7f5cb5f87cf9b59e7401013e99f0
MD5 2922bbfa5117e5aa5187c0bdf68fcd26
BLAKE2b-256 31dbd3a3fe26fed7a58488dd21767af26c85e7f717dae6e8aa6207adbf0fe586

See more details on using hashes here.

File details

Details for the file grpcio-1.27.0rc1-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio-1.27.0rc1-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ 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.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio-1.27.0rc1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0a687f44bb7a0e529a642a2be90ab5eac8b2c3ce554d3c73fb7503ebd09b62bc
MD5 b80ea38839d50dab85dd9e9c0977e505
BLAKE2b-256 27bcbc1ee5b4f1fafefd35d9ca08ab62c817672b942f96f1cf592bf98e1f3cda

See more details on using hashes here.

File details

Details for the file grpcio-1.27.0rc1-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio-1.27.0rc1-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • 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.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio-1.27.0rc1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 935d15d54c04e22531d04d25adcb34a924fcbf4ccfdb5d4eea6d9ac0c3280f61
MD5 9bc253e6b9a29ca1198f1d5e491f10a2
BLAKE2b-256 bcd40246243e55299758d441ba56ba2efe06ab7ea645aa70f3d67d069f342106

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.27.0rc1-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.7 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.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio-1.27.0rc1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 661fba0b4b9abc1a761bc3e266a8724bbd468ce577b0a65f2e567a973d10b63c
MD5 c3d23fd95205a20c7aebfe210bd69197
BLAKE2b-256 3509b39004d00da0128c3bf39922a085c51c9b06bab03b0e92f8a2a86804924d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.27.0rc1-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.7 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.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio-1.27.0rc1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 285b6af4571ad534d25438deab74555bb48d3e078546f20a82a8ac8235c08f51
MD5 2ff99813aa88a383a94343be7f647414
BLAKE2b-256 6b230a5e4e4d9885498e00c5904a5c78ddab3e9d630b1894305cb4d8dda93ee2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.27.0rc1-cp35-cp35m-macosx_10_7_intel.whl
  • Upload date:
  • Size: 4.7 MB
  • Tags: CPython 3.5m, macOS 10.7+ Intel (x86-64, i386)
  • 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.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio-1.27.0rc1-cp35-cp35m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 fbdf06ae6e9b01b8a64e146c118fa7d97f6951bc6853ed264af49873ee74a584
MD5 59ec4b47980c38feae6ef66162a1cf20
BLAKE2b-256 ab7c83c6cf2f55196736f04d6776fcda4d3181af0ccc4325582baf1b2ba9824d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.27.0rc1-cp35-cp35m-linux_armv7l.whl
  • Upload date:
  • Size: 17.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.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio-1.27.0rc1-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 1f6f5b77984960ec36f7379db4b603b22d8f05005ac50e7073ae01659175a13a
MD5 9d8cb586f99da59f1ada03ab0f11a1df
BLAKE2b-256 279c4972b0d29bb0fbd083e6a84599c05e67dab2688374b4bc2e7a96e20f5b02

See more details on using hashes here.

File details

Details for the file grpcio-1.27.0rc1-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio-1.27.0rc1-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ 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.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio-1.27.0rc1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d4c458fc946da9c2a161263a55e49376de868f51c4451b21970afc2dc6abc736
MD5 6888a8b665e67af3d9ea81140e298c54
BLAKE2b-256 4f8c3811e156ae43cba9d9d9fe21fc6f01f8c5caf960855d927554456b7e7d3a

See more details on using hashes here.

File details

Details for the file grpcio-1.27.0rc1-cp27-cp27mu-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio-1.27.0rc1-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • 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.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio-1.27.0rc1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 88e2c501d199ccb9069f85b5bf11136f5de554d9f8f7f91f75f54b92defea99a
MD5 94d8d4d1eec0a1f16ac4738652b1884a
BLAKE2b-256 bf32f05cd99e6cf80636272baf97b9229e3e33aa9406c4013095e13dd2ccef7b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.27.0rc1-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.7 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.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio-1.27.0rc1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3bbff8d8e2901b06d42d36920142d7dc03c4625524c5d8e3a5a6080999bd08ef
MD5 1292c1dcdda343d5429d416d87e72636
BLAKE2b-256 fafc98019fc07f815696eac0283d9b04bcdabb5bb623695b0d0743aacfeab27b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.27.0rc1-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 2.6 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.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio-1.27.0rc1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 cddc0924766be506bfaf89d01a7f473cb46d0f376668998e58048cd1bd384941
MD5 5e3dd74b4b85040af8437f8d67507fdc
BLAKE2b-256 b25dca29dfcdd2374dc2f33391681447e6bd8c6f96a28548b71b1d8821c5ce82

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.27.0rc1-cp27-cp27mu-linux_armv7l.whl
  • Upload date:
  • Size: 16.9 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.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio-1.27.0rc1-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 39dc1270e307f50026c3af4446611ba1ae26f341e4297d2eff6a80ff16af3db9
MD5 7933876a0c823aebcc5c1125d78e7bd9
BLAKE2b-256 e00c26c866b7b968718ba766f68d33421bb6e124a8e99dccc08064be59772b22

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.27.0rc1-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 2.2 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.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio-1.27.0rc1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 25462ed717e73d775607c2dd99f7cc33eeea44ff6404c8c3ac391ba50a7351f5
MD5 15d62ec674272075bc234da7e1ed1388
BLAKE2b-256 35bfdaf15f0c339d4a9d09f98c527b6923d2dcf42059494412ffa314160d1b89

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.27.0rc1-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 2.3 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.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio-1.27.0rc1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 75b3beb311d8245f8edc8374a517f984905d15842855ab4d85600bb988622015
MD5 2d8bf89351de9f1502c8201ea8d23b74
BLAKE2b-256 2479fdf5b447dc5d31aa09c1a48b45d09b2e8b28e14562167e0612b6297e7d06

See more details on using hashes here.

File details

Details for the file grpcio-1.27.0rc1-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio-1.27.0rc1-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ 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.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio-1.27.0rc1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2abd76faf140ce298b343e7764e733f87e5e2e865e3be3551658758254940269
MD5 296d449f1754cde6630bf859c0f5ef38
BLAKE2b-256 ce5bc6e9bc87dd8b7fcfdfa32c625b7166e743ca02e1a3f43ef90b6893643004

See more details on using hashes here.

File details

Details for the file grpcio-1.27.0rc1-cp27-cp27m-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio-1.27.0rc1-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • 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.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio-1.27.0rc1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ecc428c2a01851e1740ba798393907eac563c24de2ef90809aedf24153a34d16
MD5 82db28caeac241ebbf0111a24d0df140
BLAKE2b-256 0ae03ceb491ffbed2f2fb9110c00c6fb079a1d29dfebfbb3744f6f26e906253e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.27.0rc1-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.7 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.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio-1.27.0rc1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ef80cec7cb301ea68689242e41ca2f8b407162ce6f4c78212c446b1a5c7ac6ea
MD5 7ec2691e08d03c980d08dad15899b5f8
BLAKE2b-256 fd672dcf21812d375fa88316d126ab1d42b39318a670b16f50bf6926d7a99cdc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.27.0rc1-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.6 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.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio-1.27.0rc1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1219b235a99dda5794f583d66095be1a345f53e573d8df02135d37c74340a734
MD5 2fb52e56e46d04c9f7b631c5f7edd93c
BLAKE2b-256 5f65b6b308e4cd18c0833afca3adfe0afaff3b5ed6f82124490f0a60cd5517da

See more details on using hashes here.

File details

Details for the file grpcio-1.27.0rc1-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio-1.27.0rc1-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.5 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.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio-1.27.0rc1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3d082a7df0ff174216b91e5dbb5df0bc7921a08636ae28e592b50947d10465f9
MD5 0b7a179096946e94d6386f0e79e2affe
BLAKE2b-256 26ec4062925ede01f282cb4171f510784c23959d38c2990a84bb65332016933c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page