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.26.0rc1.tar.gz (15.4 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.26.0rc1-cp38-cp38-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.8Windows x86-64

grpcio-1.26.0rc1-cp38-cp38-win32.whl (1.6 MB view details)

Uploaded CPython 3.8Windows x86

grpcio-1.26.0rc1-cp38-cp38-manylinux2010_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

grpcio-1.26.0rc1-cp38-cp38-manylinux2010_i686.whl (2.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

grpcio-1.26.0rc1-cp38-cp38-manylinux1_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.8

grpcio-1.26.0rc1-cp38-cp38-manylinux1_i686.whl (2.5 MB view details)

Uploaded CPython 3.8

grpcio-1.26.0rc1-cp38-cp38-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

grpcio-1.26.0rc1-cp37-cp37m-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.7mWindows x86-64

grpcio-1.26.0rc1-cp37-cp37m-win32.whl (1.5 MB view details)

Uploaded CPython 3.7mWindows x86

grpcio-1.26.0rc1-cp37-cp37m-manylinux2010_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

grpcio-1.26.0rc1-cp37-cp37m-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

grpcio-1.26.0rc1-cp37-cp37m-manylinux1_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.7m

grpcio-1.26.0rc1-cp37-cp37m-manylinux1_i686.whl (2.5 MB view details)

Uploaded CPython 3.7m

grpcio-1.26.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

grpcio-1.26.0rc1-cp36-cp36m-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.6mWindows x86-64

grpcio-1.26.0rc1-cp36-cp36m-win32.whl (1.6 MB view details)

Uploaded CPython 3.6mWindows x86

grpcio-1.26.0rc1-cp36-cp36m-manylinux2010_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

grpcio-1.26.0rc1-cp36-cp36m-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

grpcio-1.26.0rc1-cp36-cp36m-manylinux1_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.6m

grpcio-1.26.0rc1-cp36-cp36m-manylinux1_i686.whl (2.5 MB view details)

Uploaded CPython 3.6m

grpcio-1.26.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

grpcio-1.26.0rc1-cp36-cp36m-linux_armv7l.whl (15.0 MB view details)

Uploaded CPython 3.6m

grpcio-1.26.0rc1-cp35-cp35m-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.5mWindows x86-64

grpcio-1.26.0rc1-cp35-cp35m-win32.whl (1.6 MB view details)

Uploaded CPython 3.5mWindows x86

grpcio-1.26.0rc1-cp35-cp35m-manylinux2010_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

grpcio-1.26.0rc1-cp35-cp35m-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

grpcio-1.26.0rc1-cp35-cp35m-manylinux1_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.5m

grpcio-1.26.0rc1-cp35-cp35m-manylinux1_i686.whl (2.5 MB view details)

Uploaded CPython 3.5m

grpcio-1.26.0rc1-cp35-cp35m-macosx_10_7_intel.whl (4.3 MB view details)

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

grpcio-1.26.0rc1-cp35-cp35m-linux_armv7l.whl (15.0 MB view details)

Uploaded CPython 3.5m

grpcio-1.26.0rc1-cp27-cp27mu-manylinux2010_x86_64.whl (2.4 MB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

grpcio-1.26.0rc1-cp27-cp27mu-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

grpcio-1.26.0rc1-cp27-cp27mu-manylinux1_x86_64.whl (2.5 MB view details)

Uploaded CPython 2.7mu

grpcio-1.26.0rc1-cp27-cp27mu-manylinux1_i686.whl (2.4 MB view details)

Uploaded CPython 2.7mu

grpcio-1.26.0rc1-cp27-cp27mu-linux_armv7l.whl (14.8 MB view details)

Uploaded CPython 2.7mu

grpcio-1.26.0rc1-cp27-cp27m-win_amd64.whl (2.1 MB view details)

Uploaded CPython 2.7mWindows x86-64

grpcio-1.26.0rc1-cp27-cp27m-win32.whl (2.1 MB view details)

Uploaded CPython 2.7mWindows x86

grpcio-1.26.0rc1-cp27-cp27m-manylinux2010_x86_64.whl (2.4 MB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

grpcio-1.26.0rc1-cp27-cp27m-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

grpcio-1.26.0rc1-cp27-cp27m-manylinux1_x86_64.whl (2.5 MB view details)

Uploaded CPython 2.7m

grpcio-1.26.0rc1-cp27-cp27m-manylinux1_i686.whl (2.4 MB view details)

Uploaded CPython 2.7m

grpcio-1.26.0rc1-cp27-cp27m-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: grpcio-1.26.0rc1.tar.gz
  • Upload date:
  • Size: 15.4 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.26.0rc1.tar.gz
Algorithm Hash digest
SHA256 97d4c91c2541e00af78a01efd06c79ce787b4702e95da287af1ab1a96a41e758
MD5 b485282caa6c56d5280642aeecc936c6
BLAKE2b-256 1234e18f1b4fa6a9822007d31a2297327cc1825a2f76ab2bdfcf03c311ab5493

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.26.0rc1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.9 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.26.0rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 adfb2fe5194ebfbfc54cb2dafa8361d5d8f70fd70c1ecbf44ca67a65efed924d
MD5 125471eefc5231b6d8a11dba937ea875
BLAKE2b-256 6921384983868a1cdfa18bcc6e64853b7277e819bbef6d1170ad09618284f738

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.26.0rc1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.6 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.26.0rc1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ccccd37c75a9f5728687d32acb9aca488d8e4e5a1d02bacfde9205e45829b11b
MD5 ede26a92ab8dd41f82d0fc5e4e7401ce
BLAKE2b-256 6f27121c00e7430bae59d875f0ca988aaf74a8713931c85cd9aa7e527a8c24e5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.26.0rc1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 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.26.0rc1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e2e3ad31b471a654c39e62e6cb0b89079f4b72084b563d52fbcaf3a93d57bf33
MD5 3a1b1ba1c03290768b2cc0c0dfc1dc5e
BLAKE2b-256 b92137d97a70670d0d6e55d21696274fe5ad4a5029d14549dc66545e87835af6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.26.0rc1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.7 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.26.0rc1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 88211566670bb3a15c47bdae7a4677ea59d393a6dfed8b0dcfb86241bbf60b5f
MD5 d466803b0918babf96395a72dbc1dc25
BLAKE2b-256 2bc54bf49acba368c66c2fc4943b1dd980314868bf393b323490116842027948

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.26.0rc1-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.5 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.26.0rc1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bab1853c72e3215279d455b0e14aa250e7bac3ff344dc9c2640131951fa5d959
MD5 ba16ac0a2a71c59f5cff1036afde3000
BLAKE2b-256 73f81101770a351002d2f617f4bdfbab01217455c5f1f558f289b6a9a6f5e797

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.26.0rc1-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 2.5 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.26.0rc1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 4cabf813b2bd9df0e8b27845ecb50c213f802755e390ec29093951e3435d5f9d
MD5 a11f08cd80c49968f56380829fd3ee9c
BLAKE2b-256 b3451f8caa16ae3dc2b7bcc1c98576726ccbc31d22b02c786657463efc2f2e66

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.26.0rc1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.3 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.26.0rc1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0e770d837751826bef9199420dd87637c6163142e5babbcfec3165125047ebc5
MD5 bae971fc37f1f148e52e1d12fa1438dd
BLAKE2b-256 6f8e00268b77755410307d011374d56cd6ccfd09ad5cb2704beffbb69c493265

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.26.0rc1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.8 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.26.0rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 8c96843e815844b04aca55e8ee1beef7c027ce2b334395e69a1a71d3667df548
MD5 67f248672cb55fb7d5958f910ccc7a28
BLAKE2b-256 fa725cd9f0c2bb244951720dd6570747acb5cf0947ee84a3d330d45c5a2faec1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.26.0rc1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.5 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.26.0rc1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 6d78ec15ce5e18ee4818e5616a6ee5b5c0c1e649622ae6a1ea17f818ecfe901b
MD5 00a5084796f1be0cfb028c02f4d8afe5
BLAKE2b-256 4c8244df4c75c9a52de8857bb57b7a4e76368992081c5767cb99d6e56f4204d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.26.0rc1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.4 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.26.0rc1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 910c2b0b7c3f1ce4e9ae4da323c3d546100a3dd1a8022672c49e13d2918b8326
MD5 f9978f43aa8888907c083352b43cabdd
BLAKE2b-256 fe10234874dac01958c11a5d4a5d8b6f61666d667e33ff14ef0408b4af44c138

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.26.0rc1-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.6 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.26.0rc1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 053977d5eb3e62fb7c7d0a710cc81185ab7878bf02a6e4dfffab328033653617
MD5 da75fafb1fd30503e8d717f39b1b59ab
BLAKE2b-256 ff7851dec7524a186696ca72d034b2a683a703474b4a4a437ae7a7033e5a6818

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.26.0rc1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.5 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.26.0rc1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 df413f10c40eb1bb4c0204d7b1f2baa18e33002f65789c8e026d729edd40d723
MD5 a9bdef90416f4524396e8a6b3b5ed6a0
BLAKE2b-256 073e4f403ad3e399ea3cfc33780854840bbd9a52764e2997f0668261b22ce5e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.26.0rc1-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.5 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.26.0rc1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a912bc1d51a6b8475ab26aa041c5e6d3103cbbd1cd66fba3294f4c3ba5accaba
MD5 4019aec7accd98cbb59d8e808c3f5553
BLAKE2b-256 5c8bfba9fc02a58093014edb50b35718582331ca6574a8a4cab06cb74791f521

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.26.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.3 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.26.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3e5ce29633eebd88a5b0b3cc3e4871535f0a324bd28eefa3e12f596794a3ffa3
MD5 edbbf2db76d2e74b9808c49d6e9a83bc
BLAKE2b-256 3acaa5a14091ae1676aecbafcf49f8c9eeb496d92ede8770c8eebb4028c88090

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.26.0rc1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 1.9 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.26.0rc1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 5dcd16993146c98519aee490ef69aebc42d479d20e01742c6333f057a7a879d2
MD5 d5633bb085ce47261fbcdb8b1d17b6f1
BLAKE2b-256 430f625c3431ecb0a8cfc6c75e8935a40af206e6cc8a89b9182bfad6aab35d9a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.26.0rc1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.6 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.26.0rc1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 1df9dcbdbe39729594c39f94fd6e848a5f5eec59358145e0f7fed744745afe79
MD5 011a2f9e7c65784126464a3b1f061ee0
BLAKE2b-256 58a93208700e400417f43776e2fbbaa104629b29167a638700f3080eaeac9a81

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.26.0rc1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.4 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.26.0rc1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b94384b52d437163d9b8152743980402b7f00d95cf2be89f25d9ec0a0dfaa013
MD5 1fa632b0909e765dc65bc20738b52480
BLAKE2b-256 03e35d1eeea5701bbf2b9109193347ae5a80d5f920725ebd484834113cf66fa9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.26.0rc1-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.6 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.26.0rc1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c6cdba2853aafd3f1ab4cfd6d34a5808444a7f0554960e06a2acaeecffa5bfec
MD5 96d4a24f28dbebac1b1a129b35dccb44
BLAKE2b-256 93cd113febf1de4ab5a3675ad1254dbb1cb409387f5a2c208279878943e23d47

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.26.0rc1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.5 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.26.0rc1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c4b3f7623a9c0ed5fa782b4241fc0baef782145326cf0797fcc47a0f05bc78e6
MD5 78d941921c38a14791dd1298efcd2ef4
BLAKE2b-256 4317edaae8c99865456d24a417a946a0d050a64c1376a0d69deedb08770f2ee6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.26.0rc1-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.5 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.26.0rc1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8cf0b916cfad2c33a2afeab8111b13d78c17ef8e3b59367f2ce8a59302a1f87d
MD5 0f8fa5fc880f758d4a06175a3b931a54
BLAKE2b-256 ad18dcd8066e6e166c0cf435bc8a4ac518bbdd5c150741a2a4592c8fa0f88fd9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.26.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.3 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.26.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6a0cf0f32d1560b90d75adfb5e5f2efad675d1c77a70f0ffa238993546f8a3b8
MD5 c32c7f62db6295f37c1370c13cc45c82
BLAKE2b-256 2ff06abb9e22332455b4eacb4cccdb61614c287c1338d47ebc20604c03ebd9cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.26.0rc1-cp36-cp36m-linux_armv7l.whl
  • Upload date:
  • Size: 15.0 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.26.0rc1-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 64b346c35eedb465a52866faa78918b4625d13faa733ffbebe3d0fd99d92ba63
MD5 0006bc8a59420471926d92ded6d2406e
BLAKE2b-256 b96ac7ff546f0e31556b81bda6f1242b06ea29948474b11cec823f2e90ff2be6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.26.0rc1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 1.9 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.26.0rc1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 0d2df8066c122a67b81693b92e9cc81c8dd0be74503c76cedb38774b23d9b3a7
MD5 3910c1e8851bce8abcbbd7892e4de28c
BLAKE2b-256 6afa25b158a2dd9d5da599710b04130b11a707ba94ae20e615282859db12c82d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.26.0rc1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 1.6 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.26.0rc1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 c8e66f5c936d554e2e0deeebdfebec1e449c5010b8ccae3d0521a78aa092a2b3
MD5 4c3c3175f4d0e645ac61ed7bc60d5dc8
BLAKE2b-256 4f1f34b7d6c4bb0be55bc77ce183f726607eb3657d9bd7cafff33f8c1f5474fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.26.0rc1-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.4 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.26.0rc1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1d4ab4032926c541521b278012901f0f92204601765d8341eee497180211038d
MD5 aa05fa64e127956493e832d85c7140e3
BLAKE2b-256 018992f4b472262a815daa77c917c0ec8b589da45378d74adac6b7883fec0b78

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.26.0rc1-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.6 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.26.0rc1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ef0717a3e7c07edfa38a444355b8f0a40c05de9abcce1f4da4541689a94500ea
MD5 5587fe0c213a782f3246511aba2955a5
BLAKE2b-256 cf93e214ca8b20015b30000f60d51a8483ef64675acc8d1d9dd4f436aa872487

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.26.0rc1-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.5 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.26.0rc1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5771e7bf4199f42b446a2411f1991ffc2cfac8be27a822234fbb7b32d6de5eba
MD5 f74961613309cf52befc0b2111bc450e
BLAKE2b-256 c0952fc7e685049bd42c8bef5cef64bfa07a71f843985439e68a473b582a0d6d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.26.0rc1-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.5 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.26.0rc1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ee768fddf1684ad69fb5040c871ca3dd55b71253e7560bbf4f790b6c889668ca
MD5 15186bd91cc8ac8ac7aa997cd17e07a9
BLAKE2b-256 504d58101069961267d17c8a8dbcd5e6e4b9b37eb9d21f457ade1b5491d40098

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.26.0rc1-cp35-cp35m-macosx_10_7_intel.whl
  • Upload date:
  • Size: 4.3 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.26.0rc1-cp35-cp35m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 5d1031fff4f6506aee2ec66c55c2bd54f81f9ba6074aa2d4e6f6b8ce67478be3
MD5 5f49751687a7097e28eaa4e09130f3db
BLAKE2b-256 67d7eefa49e80a1ca9de403762ed86282dcf6fd5026f7a5e82bcec97c7865489

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.26.0rc1-cp35-cp35m-linux_armv7l.whl
  • Upload date:
  • Size: 15.0 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.26.0rc1-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 2a6f5f14322354ef5cb7592d02f375d0f22c87648cea8772c28b686f566f5657
MD5 e9dd12c861ca1491e7b4bd9b46dc166d
BLAKE2b-256 f5dc4cd6f72e1fa428828c48df310523832e49565c995860f7871d3fd869dcce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.26.0rc1-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.4 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.26.0rc1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5d0339a22e1eb4c0f6937adf048de6843cef7cf90f79d4c138dbbec86b3babc7
MD5 1d56359f39b9e223b286fa27d2b6b5fc
BLAKE2b-256 2b2b61b017dd96974df2383dc7fd696236deb4eb4347be9504034a1ca6d0cbd9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.26.0rc1-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.6 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.26.0rc1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 83030f27df3a5b32ed93d3ee5534b66c39029a1b88b50468f6b2967d4c5cdba9
MD5 d80679c3e904a0ddf1fadd7d0028717b
BLAKE2b-256 c2d1ceb458f693b6ef898ca4c14b0d8d028e5a935f6d74ae1a9f2ef12100f9eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.26.0rc1-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.5 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.26.0rc1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e2623b70cefb45c5216c3ee0839df1d36afe57db04d2dafea4811695d0019159
MD5 34ff1a192aec3232b414ea4b110aac3b
BLAKE2b-256 3c0f8d302f4c60d54d388c9d26f6596b012833567be6eda34b8bb51974185314

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.26.0rc1-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 2.4 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.26.0rc1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5b7a659872d6ba7788bc99d5f370fd635fc10326a4090cdbc2425ad584004f00
MD5 256d35dd288528b2d3887e2e0932db94
BLAKE2b-256 ebbc8a411c809187c1ff8768ad8ab73a5f52aa90d54480695d4d1100a7733416

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.26.0rc1-cp27-cp27mu-linux_armv7l.whl
  • Upload date:
  • Size: 14.8 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.26.0rc1-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 f0683c453ff157c8c487b84b4745d10b649842ea2d557baa10de8c6c78004620
MD5 43dc12d11c0826691dad5a970e3e0158
BLAKE2b-256 be60ce8b1f1415e78f4570a770d40ce3ce9b263a3c6ddcba116e014c49db322c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.26.0rc1-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 2.1 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.26.0rc1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 0fd6363bec8b0ddf1cdc732e7378f47477c4b95c8f10885069f5ea8c46984faa
MD5 ed0c4cf083ee677c64f258908e1a23d0
BLAKE2b-256 5f36f8e872819c38455e7990a2427e3a418044ff4f3e2dd433ed54398eb4e305

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.26.0rc1-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 2.1 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.26.0rc1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 989e83bb44478d0e4a7d30ec4f31359d55517ee801ced7ac8d4179a156ee26d2
MD5 f7c22da9c36388429bca7eefe8028dc6
BLAKE2b-256 8d131ded2be8e99b95e639f4a473a8a10858734d210c1a3680e02757970f229d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.26.0rc1-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.4 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.26.0rc1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fcf79998553ec51ab1d14e4233947b9c6be045be18821cea4d0d09342eb08275
MD5 4d7bcede6d9919722e1999d62b02889f
BLAKE2b-256 7c081c93aa90ae16c2e6491605cfe1dfb8bdc4c6d76d0301eb82096a0593ddaa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.26.0rc1-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.6 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.26.0rc1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 774aace5a9b8f821a2396dd3be36c2c3b6741462c6125489ee3edb3f2d67dad1
MD5 5a3645cea3a4e7f64fba27a08c3948de
BLAKE2b-256 7651dd1a8de50520901779f86913c0028c3fb0de221f092dd11e71cf4839ec52

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.26.0rc1-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.5 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.26.0rc1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 aae62d51eff117e0a158cdca6b0e54e533e41d511140f7dc60e66967b16467a0
MD5 bf7e3e0a5a0f19bec953b16e347a4ed7
BLAKE2b-256 438ae618d40b3c5341a0eca7e42b45cd67bd3ec8f8e688aed0770ffc495b4c3e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.26.0rc1-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.4 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.26.0rc1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d0e2fa3d51db5f2b1670ac31759db3ec48c520c9809e534c28a1cfd9145bfc6b
MD5 de7c46ce9e2745c8f9814c309decc64d
BLAKE2b-256 237244b26eb06b3a777b3cf21e9e01a1dc3a89687119305feccc724176dcc54d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.26.0rc1-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.3 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.26.0rc1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ff4100ba4d18fe0093c943000935961f9ad896bd407b43fb8fd6713371e4aadf
MD5 1ac03ba713d4cee9c68286c35266737a
BLAKE2b-256 a5aeef1792c1c85ede0bb12f624da7dd122ae0773a806d9a23186b5f11e9aef2

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