Skip to main content

HTTP/2-based RPC framework

Project description

compat_check_pypi

Package for gRPC Python.

Supported Python Versions

Python >= 3.5

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

Uploaded Source

Built Distributions

grpcio-1.36.0rc1-cp39-cp39-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.9 Windows x86-64

grpcio-1.36.0rc1-cp39-cp39-win32.whl (2.6 MB view details)

Uploaded CPython 3.9 Windows x86

grpcio-1.36.0rc1-cp39-cp39-manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.9

grpcio-1.36.0rc1-cp39-cp39-manylinux2014_i686.whl (4.2 MB view details)

Uploaded CPython 3.9

grpcio-1.36.0rc1-cp39-cp39-manylinux2010_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

grpcio-1.36.0rc1-cp39-cp39-manylinux2010_i686.whl (4.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

grpcio-1.36.0rc1-cp39-cp39-macosx_10_10_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.9 macOS 10.10+ x86-64

grpcio-1.36.0rc1-cp38-cp38-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.8 Windows x86-64

grpcio-1.36.0rc1-cp38-cp38-win32.whl (2.6 MB view details)

Uploaded CPython 3.8 Windows x86

grpcio-1.36.0rc1-cp38-cp38-manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.8

grpcio-1.36.0rc1-cp38-cp38-manylinux2014_i686.whl (4.2 MB view details)

Uploaded CPython 3.8

grpcio-1.36.0rc1-cp38-cp38-manylinux2010_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

grpcio-1.36.0rc1-cp38-cp38-manylinux2010_i686.whl (4.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

grpcio-1.36.0rc1-cp38-cp38-macosx_10_10_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.8 macOS 10.10+ x86-64

grpcio-1.36.0rc1-cp37-cp37m-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.7m Windows x86-64

grpcio-1.36.0rc1-cp37-cp37m-win32.whl (2.5 MB view details)

Uploaded CPython 3.7m Windows x86

grpcio-1.36.0rc1-cp37-cp37m-manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.7m

grpcio-1.36.0rc1-cp37-cp37m-manylinux2014_i686.whl (4.2 MB view details)

Uploaded CPython 3.7m

grpcio-1.36.0rc1-cp37-cp37m-manylinux2010_x86_64.whl (4.0 MB view details)

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

grpcio-1.36.0rc1-cp37-cp37m-manylinux2010_i686.whl (4.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

grpcio-1.36.0rc1-cp37-cp37m-macosx_10_10_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.7m macOS 10.10+ x86-64

grpcio-1.36.0rc1-cp36-cp36m-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.6m Windows x86-64

grpcio-1.36.0rc1-cp36-cp36m-win32.whl (2.5 MB view details)

Uploaded CPython 3.6m Windows x86

grpcio-1.36.0rc1-cp36-cp36m-manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.6m

grpcio-1.36.0rc1-cp36-cp36m-manylinux2014_i686.whl (4.2 MB view details)

Uploaded CPython 3.6m

grpcio-1.36.0rc1-cp36-cp36m-manylinux2010_x86_64.whl (4.0 MB view details)

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

grpcio-1.36.0rc1-cp36-cp36m-manylinux2010_i686.whl (4.0 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

grpcio-1.36.0rc1-cp36-cp36m-macosx_10_10_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.6m macOS 10.10+ x86-64

grpcio-1.36.0rc1-cp35-cp35m-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.5m Windows x86-64

grpcio-1.36.0rc1-cp35-cp35m-win32.whl (2.4 MB view details)

Uploaded CPython 3.5m Windows x86

grpcio-1.36.0rc1-cp35-cp35m-manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.5m

grpcio-1.36.0rc1-cp35-cp35m-manylinux2014_i686.whl (4.1 MB view details)

Uploaded CPython 3.5m

grpcio-1.36.0rc1-cp35-cp35m-manylinux2010_x86_64.whl (3.9 MB view details)

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

grpcio-1.36.0rc1-cp35-cp35m-manylinux2010_i686.whl (4.0 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

grpcio-1.36.0rc1-cp35-cp35m-macosx_10_10_intel.whl (6.7 MB view details)

Uploaded CPython 3.5m macOS 10.10+ intel

grpcio-1.36.0rc1-cp27-cp27mu-manylinux2010_x86_64.whl (3.9 MB view details)

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

grpcio-1.36.0rc1-cp27-cp27mu-manylinux2010_i686.whl (4.0 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

grpcio-1.36.0rc1-cp27-cp27m-win_amd64.whl (3.0 MB view details)

Uploaded CPython 2.7m Windows x86-64

grpcio-1.36.0rc1-cp27-cp27m-win32.whl (3.1 MB view details)

Uploaded CPython 2.7m Windows x86

grpcio-1.36.0rc1-cp27-cp27m-manylinux2010_x86_64.whl (3.9 MB view details)

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

grpcio-1.36.0rc1-cp27-cp27m-manylinux2010_i686.whl (4.0 MB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

grpcio-1.36.0rc1-cp27-cp27m-macosx_10_10_x86_64.whl (3.7 MB view details)

Uploaded CPython 2.7m macOS 10.10+ x86-64

File details

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

File metadata

  • Download URL: grpcio-1.36.0rc1.tar.gz
  • Upload date:
  • Size: 21.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0rc1.tar.gz
Algorithm Hash digest
SHA256 ca565fed6ce1ad9197b4191896e517213a2474045a0ab0e0128828652cc893c2
MD5 2e18a281df0085402acd8917cd0e156a
BLAKE2b-256 d7acb2e84e8bbdfa84e57e516318695c612da8d3391f1996136ca038f420f66c

See more details on using hashes here.

File details

Details for the file grpcio-1.36.0rc1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: grpcio-1.36.0rc1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5fd93b441f42ab6d73fba09ae17947c0216434ca7b2d80eb5a46e439ab61c04c
MD5 a3651f622590c3b430bbdf93166a5458
BLAKE2b-256 4738de4e2b815006c2347c8f41a98929addc24e24779b7b3e23b92ce77c0311d

See more details on using hashes here.

File details

Details for the file grpcio-1.36.0rc1-cp39-cp39-win32.whl.

File metadata

  • Download URL: grpcio-1.36.0rc1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0rc1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 9834365c3f5fe67391448ab3eff2797c3945ee668d40d9dfb74e5c58472e6106
MD5 7178736100fd46173d94a64de8106e5b
BLAKE2b-256 d9eb19ce1f169b485d8f0a35db4b119e09a8c742f2f7962ae644900125fb0ecd

See more details on using hashes here.

File details

Details for the file grpcio-1.36.0rc1-cp39-cp39-manylinux2014_x86_64.whl.

File metadata

  • Download URL: grpcio-1.36.0rc1-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0rc1-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4867ab8c058ba9f51d653b39a4a6f9efd81a41ebbee39d282af018387a7062bd
MD5 0f7785a186fbf4ac8ef74328a22ed021
BLAKE2b-256 d6ebd71ac9004eefbdc5a79a7b06ff713e9d7335f097ee38f8061d968e834a0d

See more details on using hashes here.

File details

Details for the file grpcio-1.36.0rc1-cp39-cp39-manylinux2014_i686.whl.

File metadata

  • Download URL: grpcio-1.36.0rc1-cp39-cp39-manylinux2014_i686.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0rc1-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c3dcbb6a9cb8a6b833fdfa3d56808ab6ceac2c6026fb0e05aed4a5a1a77374ad
MD5 5256575f42f3761a4fbba802f9651f99
BLAKE2b-256 e2ff9a608dc2bb93cc68f6e85aa68b19da8c78c70cfa9a8a6ede5fdea457be28

See more details on using hashes here.

File details

Details for the file grpcio-1.36.0rc1-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio-1.36.0rc1-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0rc1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 df1475f1d48982977819771e9dea2587454e14794bc2ed6c44c5ab886bd5bf6f
MD5 ab41dff3df3d224b9e0759a6a13388ad
BLAKE2b-256 9e5bce4b18f7cb7e2dcbd6986c80e8f35572f45c7ad087871a90a0b8caade854

See more details on using hashes here.

File details

Details for the file grpcio-1.36.0rc1-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio-1.36.0rc1-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0rc1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c703f28ba7cc36905921be6a73226d0219dcd1c35224de24c7fd5d17a403d8c6
MD5 50ac40afff12e46b27fb39961d105c9f
BLAKE2b-256 02f6fa424b65897b708f63435f236e3a875261d31e97e47464bf9d6b9272e5dd

See more details on using hashes here.

File details

Details for the file grpcio-1.36.0rc1-cp39-cp39-macosx_10_10_x86_64.whl.

File metadata

  • Download URL: grpcio-1.36.0rc1-cp39-cp39-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.9, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0rc1-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 99cb1cb39153a967147da251616a83292bdbcd046a873e4360714fb542e7bc66
MD5 262482d3e6c761413db443f927c4d8c5
BLAKE2b-256 390a273a8d122f1dd955d5fcd1c98aad986268bd63ddd5ec67fca42984d9ca7c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.0rc1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 04b51829ffdc83e2c12041f70198b31b27b01679e3f39b74ca0e33acd8abe2a8
MD5 90790fcf065b9ab4bc2a3983f97aafda
BLAKE2b-256 94934f8f802b0c5d54027e754639ba4e4737bf238d4abc60d80d1f3003abeac2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.0rc1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0rc1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2c3e83bb08b7cc75ac707e708fae8fc2866ae9a99ca259d780a51bf0da757229
MD5 6b63fcf6dc13fb6256463f71cc5ba563
BLAKE2b-256 bc347f03766624f9a7c01e7e04789fee9b625d2703a66b394085e8ffc81678aa

See more details on using hashes here.

File details

Details for the file grpcio-1.36.0rc1-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

  • Download URL: grpcio-1.36.0rc1-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0rc1-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9ea9740a7cf2887e839885e95c87e449058f9635d0b8db22e59998ebda9c6698
MD5 e35e3eb95f924dfeb15aa18212418448
BLAKE2b-256 00c8a8ffce521d68ff8e706969f3dde0780de36561c86c113f7e252b176fb899

See more details on using hashes here.

File details

Details for the file grpcio-1.36.0rc1-cp38-cp38-manylinux2014_i686.whl.

File metadata

  • Download URL: grpcio-1.36.0rc1-cp38-cp38-manylinux2014_i686.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0rc1-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4c1a28f15c16e94635a16369f9c6eb2901c3c1a3b5cea1a264d1ba64a5cbb959
MD5 8aa371b485503508d798c6713c7f83c4
BLAKE2b-256 3f28460fa3c932d83782e616a15cdb85553a63de66c48d70e399f97484b5bcd3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.0rc1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0rc1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 98ad00b13ba55f800d20db4d05f3cca5d5de0d83fd0982402c8dbabbaf84bcdb
MD5 9e3e9277de29bb57c480d763c4a352f4
BLAKE2b-256 1b82441c546d59765c23f7aa16c616cd45174cc1799c84fb7aae4b54f9c83b87

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.0rc1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0rc1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 cc991da62aff233561a8811f8673a6a58c1d139aaf8a2dffdcc6c746de9f59e2
MD5 0e9e58980a3df4ab99e2cff53c3f95e8
BLAKE2b-256 0e0621a0bf86a8fa0185fa2f12cb6b3b6e1f2e719389ef2711c063546ca34fb6

See more details on using hashes here.

File details

Details for the file grpcio-1.36.0rc1-cp38-cp38-macosx_10_10_x86_64.whl.

File metadata

  • Download URL: grpcio-1.36.0rc1-cp38-cp38-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.8, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0rc1-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 166bd1624cb4da3c61d299931e932bf0052f3bb6b1757c593577661f187a66b2
MD5 482450d672a85b32963a2a4c26f359d8
BLAKE2b-256 dea4b625b45501c79fa823dc222244fc08ef50b9deef1bf11f917d73918021ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.0rc1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 041c4f711f40a6fc2ae421092986914ac506bcfa959d80b40eba2ce24bce7b64
MD5 db29af682400060e35a9ec3fe44de2aa
BLAKE2b-256 67c9dcf193fa28f5b036568c2b4614b0c0733a9cfc7ce446749b4a2f98ec2c1d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.0rc1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0rc1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 cf2c25d1666b700ffd40501f6a9b3125a93fe740c345989cfc31374569add331
MD5 94df969fdd32b1a581aab373429b0cbf
BLAKE2b-256 054d1c1fa9249110f7bf86556c84349d0e31766f31075a1223d186595b7f1582

See more details on using hashes here.

File details

Details for the file grpcio-1.36.0rc1-cp37-cp37m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: grpcio-1.36.0rc1-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0rc1-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de135a7b6a1e29efe84a7476ee65878185c0eff4d13604a489e6515e26e546ca
MD5 0dd7a2eaf6b9f34ed26cd652d1c99e74
BLAKE2b-256 3e7b7745ee3f58f2378d8960bca25620fb4085cecf6c6d581bc982805db9ba4b

See more details on using hashes here.

File details

Details for the file grpcio-1.36.0rc1-cp37-cp37m-manylinux2014_i686.whl.

File metadata

  • Download URL: grpcio-1.36.0rc1-cp37-cp37m-manylinux2014_i686.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0rc1-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cebd4347c333c7bc1feeb7a5bf16f460ccb4076cd267ae411439e832d71cf301
MD5 2b57e94dd44a9cf58ddb8ce51fa39477
BLAKE2b-256 756aa9734dea5c759af2cfd07d540c4053e1262dfd40a0e0d3c790857fd4c12c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.0rc1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0rc1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 300cb8c8f66426f97b7ef0efe8939df3f5f260f07d232897b191447e40858cbb
MD5 10027080b9cead872823305c5fbf8011
BLAKE2b-256 c4a2179dd75d727f16aedfb821f4061cab328e9725385c4a731f846f54a5c443

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.0rc1-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0rc1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 dc1b5ce59132028f358cf70c1ba8e83d46358ca4b570ad87668feaf3f258abd5
MD5 02f41b6f6f9839a646d4891fddefda0e
BLAKE2b-256 3add6a788e03aef5547f27550d4da36b1a864d41c4174bf78aa96d9ab9abfbfe

See more details on using hashes here.

File details

Details for the file grpcio-1.36.0rc1-cp37-cp37m-macosx_10_10_x86_64.whl.

File metadata

  • Download URL: grpcio-1.36.0rc1-cp37-cp37m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.7m, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0rc1-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 41bc3f6afe68086890a9109eee709e998658d22fbca2b15cc34a65c65c386f6b
MD5 8517bbf79b5ce200fe39aee8f739f24b
BLAKE2b-256 1116930158817703a5bad8d5de58d8d57548798c69fc456e81b42ab6db27af94

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.0rc1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0rc1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 0e67ff9dc7059e9def43314c6d39bc4c440234909ef3332747ba1bc74561cac1
MD5 94a8e41a884b75fa3c56a0a58faedf0d
BLAKE2b-256 b17c2cebbf8f02dcb311318878dc8522220ed5b553a0fd5a5d507b764aaa0870

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.0rc1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0rc1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 59ca887491df5949d8d1bbc7d85372a15a9b7786565a39b8c400ed4bc8cb1f99
MD5 81e6c3f1c1104b3ac95b81db7044f53d
BLAKE2b-256 0186c0d066abddb41dc50c9c520339863329e585358652c0c643477550c38102

See more details on using hashes here.

File details

Details for the file grpcio-1.36.0rc1-cp36-cp36m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: grpcio-1.36.0rc1-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0rc1-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 95ab39ff3975bf699f5861c280d11db4c3a0b66a0b75f4b566c4a016d8182774
MD5 3a3741d63e53f81828fda78b60359f11
BLAKE2b-256 bc2ae39f0ba33b469cda087376c4d407fa9076909ef47d088f9c7665ccbac11a

See more details on using hashes here.

File details

Details for the file grpcio-1.36.0rc1-cp36-cp36m-manylinux2014_i686.whl.

File metadata

  • Download URL: grpcio-1.36.0rc1-cp36-cp36m-manylinux2014_i686.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0rc1-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9954cd15cab230276becbbc703e0faa0a5d80434144f30ed978baa5dac16b583
MD5 34d34610818bd26c029df03d7c96e891
BLAKE2b-256 3c7341a2a1e0424611844b720dbcff4729e462d632d4ad8c27d4430138ff9f20

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.0rc1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0rc1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fb11de50037c61bad1294a7a79682deec069d7c377ec4ed717f5d7884fc48cee
MD5 0a7b4f208f6d535e27e9bacaa54e1fda
BLAKE2b-256 6b86f3bc86ed938ef66f3134d5db72dc924a7fbae8af603afe48a60ee58eb77e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.0rc1-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0rc1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d588ad54f00291d255c6aa72b7c11f0bd2c119046683bb73763ee62d085332f9
MD5 7e9e72193b596ccde7fbde1cd0ac93e2
BLAKE2b-256 740633229733ee62ac52de078d081c3539ef599feeff510eda91dad93316c43e

See more details on using hashes here.

File details

Details for the file grpcio-1.36.0rc1-cp36-cp36m-macosx_10_10_x86_64.whl.

File metadata

  • Download URL: grpcio-1.36.0rc1-cp36-cp36m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.6m, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0rc1-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 a1ce0eaf30c14ac45166322bc9c5c6dab5bb7dd5d05aa49bc7714338886b70b1
MD5 38aebb37578528f5821793dcc53261e8
BLAKE2b-256 65753769caae23a4dd84a05e6c179bbde84f9e8512f83182f29af19d5ab6e70f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.0rc1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0rc1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 eed9d97cc5400d1fb7b5c64bcb565365d07d8278550e8bf3a9dc3fdb934a10bc
MD5 32cd9bdf04596b0c0f0f7148d87177ec
BLAKE2b-256 2c5e4bf0626d4f3baf109dab34de7e2f9fe812594f63e84db788c61a985b21ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.0rc1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0rc1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 759a663f757f849d089bf0c253b0cfaa0a466f6b9e6097bb698d819f23367103
MD5 c5975d6473d2fc691575c121f0313658
BLAKE2b-256 6b66cbb1538d3c85b582292110160d325faab1e268e88b95d73a667ad67c9399

See more details on using hashes here.

File details

Details for the file grpcio-1.36.0rc1-cp35-cp35m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: grpcio-1.36.0rc1-cp35-cp35m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0rc1-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 594a8cff6e64a56476b191452c41e673c0cb685fbc357c9bcb8173ae790c6865
MD5 728bdd705e680f94e594af600ca84e37
BLAKE2b-256 5ff0494e05ba982612fc5438b7e50d47d6e02f43094eb2d68dbcacb43a966d5e

See more details on using hashes here.

File details

Details for the file grpcio-1.36.0rc1-cp35-cp35m-manylinux2014_i686.whl.

File metadata

  • Download URL: grpcio-1.36.0rc1-cp35-cp35m-manylinux2014_i686.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0rc1-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 afdbc23e3c6a7b60e83d23a39eecbc33f6e1ee3ada6d2cb6a01441e30b6842bf
MD5 c4dedc05c57dc238bbded636417b02ba
BLAKE2b-256 c4acd3afb1a7a9d223d1fcd53008681fe03ff0090121991d275b5f6c54af872e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.0rc1-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0rc1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8ba872c7d43640e8a5aa3bf78e503600b277f70c5431bd22d9a03daa186aab43
MD5 edf215f34e326c9766d2d8ad8dad7f09
BLAKE2b-256 f2adced9a1d4d0474e881ec629a7743817915ce2072a99d046b2ea657f125ab8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.0rc1-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0rc1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f0ab07d7cad90eff52d90abb9dbbe6671bfab1794820aebbd66268505b218722
MD5 29774591ed94ebf2c76a8d4aa8d07ed3
BLAKE2b-256 67838df626aa9b8763cca51976aa6b3a8a2c036c39012fc06530460736789f84

See more details on using hashes here.

File details

Details for the file grpcio-1.36.0rc1-cp35-cp35m-macosx_10_10_intel.whl.

File metadata

  • Download URL: grpcio-1.36.0rc1-cp35-cp35m-macosx_10_10_intel.whl
  • Upload date:
  • Size: 6.7 MB
  • Tags: CPython 3.5m, macOS 10.10+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0rc1-cp35-cp35m-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 3ee4501afa2539ea08260e4452721762c4b53633062ddd2506813cda8d8041d0
MD5 7d1b90872280af78a74a087228a9ab2d
BLAKE2b-256 e02051725a2e1a3914a76ddf0876d86650b69f43323fc14c40631f28465df4f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.0rc1-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0rc1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 99f0ada4af3fa38ca6fcac8477df27a08aeb29681fbb51da1842ded1345212b0
MD5 647c16062176873b3481b25fd58ba69d
BLAKE2b-256 7b7076169566a552df21cb0fec06db2cba170e05df3333c6ef99c646560bbba1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.0rc1-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0rc1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 14990cbd82c98dbd54950b3f618bdb6088ba5363bcc8e5a78997a3e496ed159a
MD5 5148715f49e974aa4781689252c6b39e
BLAKE2b-256 13c2799b6d1dde83710c7cdc272528579861d74f6d36bf9bbb7602b6c5c79d75

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.0rc1-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0rc1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 db63ae4f3d36627b3e89569706365076b41d689645e59f09c0fde0feda476f50
MD5 293cbefad027949f5ac9bac2cfa2d356
BLAKE2b-256 c7d6605aed44fd509c5d2d3939fff9af4d3f44efe4bb70539fedfd770a4c446d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.0rc1-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0rc1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 e9c0e9ca60f5dc86fe005736c6a1544d1a9b69037180790ae7bf45639693f9d5
MD5 7e440d283e4b10fce9d129f39ddb8f2a
BLAKE2b-256 f567e9f6ffd56d83d104551e7f9aafb011e69b0b6584876784122c310e1fea8f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.0rc1-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0rc1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7894012da8dc8d6c9830e3e8250ae75c2dbfe1fcbd6141d8703f713057faa5c8
MD5 0b8905a3a0584f1bf82e8df4d839e1e2
BLAKE2b-256 288e8418bdb420a6018b263069d831d2bf4d8120bc98a40735ebc1cc8503a674

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.0rc1-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0rc1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2ae1a51b462ba19a9503b588f849cab27f8c1914840894bc0db2dde908f6dff3
MD5 e60e6152cf10f2a6c17b45c22987d5b3
BLAKE2b-256 5e992c8948ed74a5ebea873b2c1cc310db1539d0ce05e54ecf6d32fe84fa9b11

See more details on using hashes here.

File details

Details for the file grpcio-1.36.0rc1-cp27-cp27m-macosx_10_10_x86_64.whl.

File metadata

  • Download URL: grpcio-1.36.0rc1-cp27-cp27m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 2.7m, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0rc1-cp27-cp27m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 e8ce3f39e62ebb782e3507cc5a8f30cb5b79b7aabb106ae920ed8ea3c6337982
MD5 2830c82fad1f85a0113deeae5bb7a6e3
BLAKE2b-256 d5b087aba67aed995a595c8037abac60826e0cd58cec6f6c6dd9ec8db86b0849

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