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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.9 Windows x86-64

grpcio-1.35.0-cp39-cp39-win32.whl (2.5 MB view details)

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9

grpcio-1.35.0-cp39-cp39-manylinux2014_i686.whl (4.1 MB view details)

Uploaded CPython 3.9

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.9 macOS 10.10+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

grpcio-1.35.0-cp38-cp38-win32.whl (2.5 MB view details)

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8

grpcio-1.35.0-cp38-cp38-manylinux2014_i686.whl (4.1 MB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8 macOS 10.10+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

grpcio-1.35.0-cp37-cp37m-manylinux2014_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.7m

grpcio-1.35.0-cp37-cp37m-manylinux2014_i686.whl (4.1 MB view details)

Uploaded CPython 3.7m

grpcio-1.35.0-cp37-cp37m-manylinux2010_x86_64.whl (3.9 MB view details)

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

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

grpcio-1.35.0-cp37-cp37m-macosx_10_10_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.7m macOS 10.10+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m

grpcio-1.35.0-cp36-cp36m-manylinux2014_i686.whl (4.1 MB view details)

Uploaded CPython 3.6m

grpcio-1.35.0-cp36-cp36m-manylinux2010_x86_64.whl (3.9 MB view details)

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

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m macOS 10.10+ x86-64

grpcio-1.35.0-cp36-cp36m-linux_armv7l.whl (32.1 MB view details)

Uploaded CPython 3.6m

grpcio-1.35.0-cp35-cp35m-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.5m Windows x86-64

grpcio-1.35.0-cp35-cp35m-win32.whl (2.3 MB view details)

Uploaded CPython 3.5m Windows x86

grpcio-1.35.0-cp35-cp35m-manylinux2014_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

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

grpcio-1.35.0-cp35-cp35m-manylinux2010_i686.whl (3.9 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m macOS 10.10+ intel

grpcio-1.35.0-cp35-cp35m-linux_armv7l.whl (32.0 MB view details)

Uploaded CPython 3.5m

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

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

grpcio-1.35.0-cp27-cp27mu-manylinux2010_i686.whl (3.9 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

grpcio-1.35.0-cp27-cp27mu-linux_armv7l.whl (31.7 MB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

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

grpcio-1.35.0-cp27-cp27m-manylinux2010_i686.whl (3.9 MB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

grpcio-1.35.0-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.35.0.tar.gz.

File metadata

  • Download URL: grpcio-1.35.0.tar.gz
  • Upload date:
  • Size: 21.2 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.18

File hashes

Hashes for grpcio-1.35.0.tar.gz
Algorithm Hash digest
SHA256 7bd0ebbb14dde78bf66a1162efd29d3393e4e943952e2f339757aa48a184645c
MD5 c37394e948d233cf0750b3cf968ed6d5
BLAKE2b-256 204b0b810309628e354f53b3c90af063f268d74e49902a41196db27f1fb52f06

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.35.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: grpcio-1.35.0-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/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.18

File hashes

Hashes for grpcio-1.35.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 399ee377b312ac652b07ef4365bbbba009da361fa7708c4d3d4ce383a1534ea7
MD5 2534ba5f7800fcd3f64776dd87047804
BLAKE2b-256 b035bc8b4945c2ead7fa5063d3a61c6805f2a1c0ae0d24b34893491d9a56ce10

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.35.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: grpcio-1.35.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.9, 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.18

File hashes

Hashes for grpcio-1.35.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 94c3b81089a86d3c5877d22b07ebc66b5ed1d84771e24b001844e29a5b6178dd
MD5 f33eafe7e6c42306598b861a046c4052
BLAKE2b-256 11d219ec451542989eba77fbaf5b81f04e1efd4099c23a1b49fcb7466ceeb7d1

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.35.0-cp39-cp39-manylinux2014_x86_64.whl.

File metadata

  • Download URL: grpcio-1.35.0-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.9
  • 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.18

File hashes

Hashes for grpcio-1.35.0-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7ee7d54da9d176d3c9a0f47c04d7ff6fdc6ee1c17643caff8c33d6c8a70678a4
MD5 97bf60b1127f52d4acc2c785c1608675
BLAKE2b-256 1d43fdc5dadcd2b5b013a5d22fcbc494fe4aab53c738502aae53886d8ee2d6f5

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.35.0-cp39-cp39-manylinux2014_i686.whl.

File metadata

  • Download URL: grpcio-1.35.0-cp39-cp39-manylinux2014_i686.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.9
  • 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.18

File hashes

Hashes for grpcio-1.35.0-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0f714e261e1d63615476cda4ee808a79cca62f8f09e2943c136c2f87ec5347b1
MD5 c8b3652e25ad5f75052ae4f15df60814
BLAKE2b-256 e3147a6fa92332a74e243da4f4ea98f3e127b2b2d7750aa52951e2c364eba904

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.35.0-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio-1.35.0-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/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.18

File hashes

Hashes for grpcio-1.35.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7ae408780b79c9b9b91a2592abd1d7abecd05675d988ea75038580f420966b59
MD5 8414d312543f679942bb82f3f0f09723
BLAKE2b-256 f6df58950e2d3a76e433bfd53f2921de5b5da698196335eac154db9aa8604c2d

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.35.0-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio-1.35.0-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/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.18

File hashes

Hashes for grpcio-1.35.0-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9f0da13b215068e7434b161a35d0b4e92140ffcfa33ddda9c458199ea1d7ce45
MD5 9590edc1eef2a7793b9fc13f98593842
BLAKE2b-256 da06e3ec3f7a464fb0dca7ef02e76e296175acf8cc6c79ca2823a5de6e9cd824

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.35.0-cp39-cp39-macosx_10_10_x86_64.whl.

File metadata

  • Download URL: grpcio-1.35.0-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/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.18

File hashes

Hashes for grpcio-1.35.0-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 2f8e8d35d4799aa1627a212dbe8546594abf4064056415c31bd1b3b8f2a62027
MD5 98caee1387508834bb04da6b1921646f
BLAKE2b-256 922de316d543e29fd7987390563f65861d438cd236094cc373e279abdc6cd53e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.35.0-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/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.18

File hashes

Hashes for grpcio-1.35.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 aea3d592a7ece84739b92d212cd16037c51d84a259414f64b51c14e946611f3d
MD5 2bfde17211ecd305daf404a8dde31648
BLAKE2b-256 cb6a044ccc6133a90cbbde171be73cb5d867cbebe29d0446bd08157450a22967

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.35.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 2.5 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.18

File hashes

Hashes for grpcio-1.35.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 8a29a26b9f39701ce15aa1d5aa5e96e0b5f7028efe94f95341a4ed8dbe4bed78
MD5 99a97c0229898d89531943df19f1949b
BLAKE2b-256 355de23fdec9edb462c7e405f90c58f7a5a507cd6e3f724137d14322d19f6a61

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.35.0-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

  • Download URL: grpcio-1.35.0-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.1 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.18

File hashes

Hashes for grpcio-1.35.0-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 efd896e8ca7adb2654cf014479a5e1f74e4f776b6b2c0fbf95a6c92787a6631a
MD5 8d707449615f227bd82dc667309f11a4
BLAKE2b-256 f1c9837d12c71d8ad12d480242801bab7e85c49b50ed5e758c44ca086c4b50df

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.35.0-cp38-cp38-manylinux2014_i686.whl.

File metadata

  • Download URL: grpcio-1.35.0-cp38-cp38-manylinux2014_i686.whl
  • Upload date:
  • Size: 4.1 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.18

File hashes

Hashes for grpcio-1.35.0-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 048c01d1eb5c2ae7cba2254b98938d2fc81f6dc10d172d9261d65266adb0fdb3
MD5 8855d74178b797762f11ea6eff56c5ac
BLAKE2b-256 86e0e65f636d9e741f622391f0da274a3c93fefbe6104566e351cbdbaa4ddd39

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.35.0-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/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.18

File hashes

Hashes for grpcio-1.35.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6ba3d7acf70acde9ce27e22921db921b84a71be578b32739536c32377b65041a
MD5 19198f95aa94beb44db887525fa492f6
BLAKE2b-256 73b172532735067c82137996e8fd1f0e293e9db60e76fb157c78ce38ab9b9106

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.35.0-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/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.18

File hashes

Hashes for grpcio-1.35.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9e503eaf853199804a954dc628c5207e67d6c7848dcba42a997fbe718618a2b1
MD5 e041b89edc041c4885e0ce82fffe071f
BLAKE2b-256 58019643df4a6623d1f9c52e3c999da465684a625d4e43eedad6a31f85ff9b66

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.35.0-cp38-cp38-macosx_10_10_x86_64.whl.

File metadata

  • Download URL: grpcio-1.35.0-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/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.18

File hashes

Hashes for grpcio-1.35.0-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 da44bf613eed5d9e8df0785463e502a416de1be6e4ac31edbe99c9111abaed5f
MD5 50ce16c34bad675606c871d3a6060f3b
BLAKE2b-256 ed52843e12f12cecb17e791f0ba544aaa21dee013ff423dae4c3cec00d8ad153

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.35.0-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/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.18

File hashes

Hashes for grpcio-1.35.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e87e55fba98ebd7b4c614dcef9940dc2a7e057ad8bba5f91554934d47319a35b
MD5 32052af8e9577a426349e1bb1e32740d
BLAKE2b-256 a6758a46621fb810e22a70b753cf14ca02d2fed35222132dc2f1dc353dc87d87

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.35.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 2.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.18

File hashes

Hashes for grpcio-1.35.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 dfecb2acd3acb8bb50e9aa31472c6e57171d97c1098ee67cd283a6fe7d56a926
MD5 eb258b2791d80db96bd479d6c1bb01dd
BLAKE2b-256 62f264639203987696d749f2aec2e6247dab7c339e4f00ad75b67d0f17e133c1

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.35.0-cp37-cp37m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: grpcio-1.35.0-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.0 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.18

File hashes

Hashes for grpcio-1.35.0-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a36151c335280b09afd5123f3b25085027ae2b10682087a4342fb6f635b928fb
MD5 975e8e9484070652350249e299b93d78
BLAKE2b-256 7fe1a5ad38a96894a457d2909b9226453c7526d0518ebee0d46a7f5a2811697b

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.35.0-cp37-cp37m-manylinux2014_i686.whl.

File metadata

  • Download URL: grpcio-1.35.0-cp37-cp37m-manylinux2014_i686.whl
  • Upload date:
  • Size: 4.1 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.18

File hashes

Hashes for grpcio-1.35.0-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3e7d4428ed752fdfe2dddf2a404c93d3a2f62bf4b9109c0c10a850c698948891
MD5 986cf82bd1ef7f78252f3043888512b5
BLAKE2b-256 875106d9482fd0283298a7da91c63fe1d017073877784bdbebf6a57e36aba326

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.35.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.9 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.18

File hashes

Hashes for grpcio-1.35.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 859a0ceb23d7189362cc06fe7e906e9ed5c7a8f3ac960cc04ce13fe5847d0b62
MD5 1602cea8cd89a8dcedfaacef9ec40868
BLAKE2b-256 d008b9a0d5ae1c205f43cb3ce01ea8dda7a74339aa55f6e43ac37ad71e4de169

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.35.0-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/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.18

File hashes

Hashes for grpcio-1.35.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 18ad7644e23757420ea839ac476ef861e4f4841c8566269b7c91c100ca1943b3
MD5 2168b42592b0106af0835b6552b429c4
BLAKE2b-256 022c3ca39cae8e743e5cd5dfd3cdd1ec91ba71409d41873dac3b10aa9aa99356

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.35.0-cp37-cp37m-macosx_10_10_x86_64.whl.

File metadata

  • Download URL: grpcio-1.35.0-cp37-cp37m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.7m, macOS 10.10+ 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.18

File hashes

Hashes for grpcio-1.35.0-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 44aaa6148d18a8e836f99dadcdec17b27bc7ec0995b2cc12c94e61826040ec90
MD5 d6bbfe9dd842c76d9e042a480b1b9c25
BLAKE2b-256 29b080a657d6b43aa71728abc35bcbc4c4c691328633e98b38154ba600d29061

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.35.0-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/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.18

File hashes

Hashes for grpcio-1.35.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 efb3d67405eb8030db6f27920b4be023fabfb5d4e09c34deab094a7c473a5472
MD5 06800b22588e493b6ff9835afde01dc0
BLAKE2b-256 0514d90d1aace8663835164e9f88bc9bdd623e0d6f35b856cb2c3dc71e4ffa52

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.35.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 2.5 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.18

File hashes

Hashes for grpcio-1.35.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 1aa53f82362c7f2791fe0cdd9a3b3aec325c11d8f0dfde600f91907dfaa8546b
MD5 93c370f92b1b6f38db3b698eedd32190
BLAKE2b-256 5d79fa836e2289369df96e7bd8922bc077de1cdef806009ad5208abd33c1a57f

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.35.0-cp36-cp36m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: grpcio-1.35.0-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.1 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.18

File hashes

Hashes for grpcio-1.35.0-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 088c8bea0f6b596937fefacf2c8df97712e7a3dd49496975049cc95dbf02af1a
MD5 d285e66a6cdaf510d366db965a845417
BLAKE2b-256 8855357022b111b856cadaf63d718d79861fc6215b848eff38b2fbfb9d5c47bd

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.35.0-cp36-cp36m-manylinux2014_i686.whl.

File metadata

  • Download URL: grpcio-1.35.0-cp36-cp36m-manylinux2014_i686.whl
  • Upload date:
  • Size: 4.1 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.18

File hashes

Hashes for grpcio-1.35.0-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 764b50ba1a15a2074cdd1a841238f2dead0a06529c495a46821fae84cb9c7342
MD5 2bb849f648345c982de3e73900cb14e1
BLAKE2b-256 7f028bc2022efa7fda925c1739d0706900901f3a43cb474a7b8e536473482e0e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.35.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.9 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.18

File hashes

Hashes for grpcio-1.35.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e163c27d2062cd3eb07057f23f8d1330925beaba16802312b51b4bad33d74098
MD5 79f987a5f8032b4caf5a7946d1939fd4
BLAKE2b-256 e059b55ae5288ae66e417fcbac0a5dd7f31b1330389344c74b04a770ce10633b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.35.0-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/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.18

File hashes

Hashes for grpcio-1.35.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b180a3ec4a5d6f96d3840c83e5f8ab49afac9fa942921e361b451d7a024efb00
MD5 c98bf84c91e08795f69efa95b94a99aa
BLAKE2b-256 4d933c8467449dc3b1b370c1d9c6a5fd18a8ecb6c161c924203eb9e8fef10c77

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.35.0-cp36-cp36m-macosx_10_10_x86_64.whl.

File metadata

  • Download URL: grpcio-1.35.0-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/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.18

File hashes

Hashes for grpcio-1.35.0-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 75ea903edc42a8c6ec61dbc5f453febd79d8bdec0e1bad6df7088c34282e8c42
MD5 33efe008eac52d0a2c5fa793936633ac
BLAKE2b-256 819ab2ab28e936a6fc53f088ba798721ee37adc19870ac426bdfc02c2ffd7cf7

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.35.0-cp36-cp36m-linux_armv7l.whl
  • Upload date:
  • Size: 32.1 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.18

File hashes

Hashes for grpcio-1.35.0-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 17940a7dc461066f28816df48be44f24d3b9f150db344308ee2aeae033e1af0b
MD5 539405638e20a0cb50d54216083552fc
BLAKE2b-256 e72e11866936ea1af836ef0800a3251b1e6f6c0e5509a4fc491922ce959dbe90

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.35.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 2.8 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.18

File hashes

Hashes for grpcio-1.35.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 35b72884e09cbc46c564091f4545a39fa66d132c5676d1a6e827517fff47f2c1
MD5 cdd7d29ea0dec290b30c4c09daac81ca
BLAKE2b-256 dcfceda7448254ecee9b314781b1c71b65a702d3e83fb07b03e74f5835485f0a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.35.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 2.3 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.18

File hashes

Hashes for grpcio-1.35.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 1757e81c09132851e85495b802fe4d4fbef3547e77fa422a62fb4f7d51785be0
MD5 d50adaa62d3fd5e93c102ccd8f31cf97
BLAKE2b-256 a2afdbb28a1b63cb8e5089841c104919690de2977b8f027fe4adc91046b8da1e

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.35.0-cp35-cp35m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: grpcio-1.35.0-cp35-cp35m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.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.18

File hashes

Hashes for grpcio-1.35.0-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 16fd33030944672e49e0530dec2c60cd4089659ccdf327e99569b3b29246a0b6
MD5 7fc0f2eea8ab46c9ba1f2632f91ec2a0
BLAKE2b-256 f3a64fb4afb1e8ff1f6f58c1193f61c0dac4f8d82ee08f43a1add431756a0a34

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.35.0-cp35-cp35m-manylinux2014_i686.whl.

File metadata

  • Download URL: grpcio-1.35.0-cp35-cp35m-manylinux2014_i686.whl
  • Upload date:
  • Size: 4.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.18

File hashes

Hashes for grpcio-1.35.0-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 acb489b7aafdcf960f1a0000a1f22b45e5b6ccdf8dba48f97617d627f4133195
MD5 99e2a85754ca41da271a6edc1fee034c
BLAKE2b-256 f546f29e52a5f4b79786e01861566b1616213fa8556c9e078f743166d8d3435b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.35.0-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/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.18

File hashes

Hashes for grpcio-1.35.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b2985f73611b637271b00d9c4f177e65cc3193269bc9760f16262b1a12757265
MD5 9cd7e546acc875d0fea1ef776ecccb75
BLAKE2b-256 9f768f31802f02e00f7d8adad0e56811705b7e135ff53aa20accac37bf5186f9

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.35.0-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.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.18

File hashes

Hashes for grpcio-1.35.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f0c27fd16582a303e5baf6cffd9345c9ac5f855d69a51232664a0b888a77ba80
MD5 87a743639aa13d423afc7b2ebf4fbc30
BLAKE2b-256 cbc625ac8cf058b785c56d146e8650aba0b3c148427a7797e2ac652828409581

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.35.0-cp35-cp35m-macosx_10_10_intel.whl.

File metadata

  • Download URL: grpcio-1.35.0-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/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.18

File hashes

Hashes for grpcio-1.35.0-cp35-cp35m-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 dc2589370ef84eb1cc53530070d658a7011d2ee65f18806581809c11cd016136
MD5 01127acc8ec0a36796f82a0fa23a37d4
BLAKE2b-256 5b335a3d5484ddddee414e18105816bb02889ba54572b452264545d1a57aa2a5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.35.0-cp35-cp35m-linux_armv7l.whl
  • Upload date:
  • Size: 32.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.18

File hashes

Hashes for grpcio-1.35.0-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 f3654a52f72ba28953dbe2e93208099f4903f4b3c07dc7ff4db671c92968111d
MD5 16a237b4b2e612f9359fb431b3a3dff5
BLAKE2b-256 9357561afac034d5bdf072f7c989da2c7c1f47466ecc81d6afaf3cbefc9a8c61

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.35.0-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/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.18

File hashes

Hashes for grpcio-1.35.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 22edfc278070d54f3ab7f741904e09155a272fe934e842babbf84476868a50de
MD5 00f262581586c9b7a5f5212e1b32c005
BLAKE2b-256 5718b093b4f51df5c16a5f37b34a067bdc8e966d107b41a01d6a0ac34d0658d4

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.35.0-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.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.18

File hashes

Hashes for grpcio-1.35.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 87147b1b306c88fe7dca7e3dff8aefd1e63d6aed86e224f9374ddf283f17d7f1
MD5 17f2b47e4bdeeb14b9ef86cc206b272f
BLAKE2b-256 f1ca3f76a1d1d05745dec5803d0382c054ac10597486442a23bea93e88589f2c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.35.0-cp27-cp27mu-linux_armv7l.whl
  • Upload date:
  • Size: 31.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.18

File hashes

Hashes for grpcio-1.35.0-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 aca45d2ccb693c9227fbf21144891422a42dc4b76b52af8dd1d4e43afebe321d
MD5 b36edd3b462666ffa4ab1a8e0c2c648a
BLAKE2b-256 8ba19122f54db98773084920ee78bc8fdf0c3490e8c062c61b05ebd307e52da1

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.35.0-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/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.18

File hashes

Hashes for grpcio-1.35.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 0072ec4563ab4268c4c32e936955085c2d41ea175b662363496daedd2273372c
MD5 53db4daee3e28abf1bddce31d08f81ee
BLAKE2b-256 0d7ca5ca6eb70964ecc41799d34de8c9d5f714c6f27ef3a3648fa24f77d83ea8

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.35.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 3.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.18

File hashes

Hashes for grpcio-1.35.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 8d08f90d72a8e8d9af087476337da76d26749617b0a092caff4e684ce267af21
MD5 3e01d00ab9c46cf8ad0d96face02d02f
BLAKE2b-256 bee2d34994ebc9585217988cb156f414e0871738dc472e49e5868018b7165871

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.35.0-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/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.18

File hashes

Hashes for grpcio-1.35.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c8d0a6a58a42275c6cb616e7cb9f9fcf5eba1e809996546e561cd818b8f7cff7
MD5 dc57449b2364f185e9bf9bba909051d6
BLAKE2b-256 380c8eacad67857efadf3f08ca0b85c765627cdad668c3383e941697653d3c0a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.35.0-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.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.18

File hashes

Hashes for grpcio-1.35.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d186a0ce291f4386e28a7042ec31c85250b0c2e25d2794b87fa3c15ff473c46c
MD5 7bf306e4d66b4c66d78d5667cd65a57f
BLAKE2b-256 8948a8dd3050ccf88acef8cf9d8fd97a2487d827da2936fcdcc054f38592ae65

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.35.0-cp27-cp27m-macosx_10_10_x86_64.whl.

File metadata

  • Download URL: grpcio-1.35.0-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/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.18

File hashes

Hashes for grpcio-1.35.0-cp27-cp27m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 95cc4d2067deced18dc807442cf8062a93389a86abf8d40741120054389d3f29
MD5 cfbdce03a9b9fd7c455729b34cdb1081
BLAKE2b-256 6bbaf5df0ffb9b80bd47b8eb11c77ec5b1be69140d65d95926357e329233f48e

See more details on using hashes here.

Provenance

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