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

Uploaded Source

Built Distributions

grpcio-1.37.1-cp39-cp39-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

grpcio-1.37.1-cp39-cp39-manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.9

grpcio-1.37.1-cp39-cp39-manylinux2014_i686.whl (4.3 MB view details)

Uploaded CPython 3.9

grpcio-1.37.1-cp39-cp39-manylinux2014_aarch64.whl (37.1 MB view details)

Uploaded CPython 3.9

grpcio-1.37.1-cp39-cp39-manylinux2010_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

grpcio-1.37.1-cp39-cp39-manylinux2010_i686.whl (4.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

grpcio-1.37.1-cp39-cp39-macosx_10_10_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.9 macOS 10.10+ x86-64

grpcio-1.37.1-cp39-cp39-linux_armv7l.whl (36.2 MB view details)

Uploaded CPython 3.9

grpcio-1.37.1-cp38-cp38-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

grpcio-1.37.1-cp38-cp38-manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.8

grpcio-1.37.1-cp38-cp38-manylinux2014_i686.whl (4.3 MB view details)

Uploaded CPython 3.8

grpcio-1.37.1-cp38-cp38-manylinux2014_aarch64.whl (37.4 MB view details)

Uploaded CPython 3.8

grpcio-1.37.1-cp38-cp38-manylinux2010_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

grpcio-1.37.1-cp38-cp38-manylinux2010_i686.whl (4.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

grpcio-1.37.1-cp38-cp38-macosx_10_10_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.8 macOS 10.10+ x86-64

grpcio-1.37.1-cp38-cp38-linux_armv7l.whl (36.5 MB view details)

Uploaded CPython 3.8

grpcio-1.37.1-cp37-cp37m-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.7m Windows x86-64

grpcio-1.37.1-cp37-cp37m-win32.whl (2.6 MB view details)

Uploaded CPython 3.7m Windows x86

grpcio-1.37.1-cp37-cp37m-manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.7m

grpcio-1.37.1-cp37-cp37m-manylinux2014_i686.whl (4.3 MB view details)

Uploaded CPython 3.7m

grpcio-1.37.1-cp37-cp37m-manylinux2014_aarch64.whl (37.1 MB view details)

Uploaded CPython 3.7m

grpcio-1.37.1-cp37-cp37m-manylinux2010_x86_64.whl (4.1 MB view details)

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

grpcio-1.37.1-cp37-cp37m-manylinux2010_i686.whl (4.1 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

grpcio-1.37.1-cp37-cp37m-macosx_10_10_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.7m macOS 10.10+ x86-64

grpcio-1.37.1-cp37-cp37m-linux_armv7l.whl (36.3 MB view details)

Uploaded CPython 3.7m

grpcio-1.37.1-cp36-cp36m-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.6m Windows x86-64

grpcio-1.37.1-cp36-cp36m-win32.whl (2.6 MB view details)

Uploaded CPython 3.6m Windows x86

grpcio-1.37.1-cp36-cp36m-manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.6m

grpcio-1.37.1-cp36-cp36m-manylinux2014_i686.whl (4.3 MB view details)

Uploaded CPython 3.6m

grpcio-1.37.1-cp36-cp36m-manylinux2014_aarch64.whl (37.2 MB view details)

Uploaded CPython 3.6m

grpcio-1.37.1-cp36-cp36m-manylinux2010_x86_64.whl (4.1 MB view details)

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

grpcio-1.37.1-cp36-cp36m-manylinux2010_i686.whl (4.1 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m macOS 10.10+ x86-64

grpcio-1.37.1-cp36-cp36m-linux_armv7l.whl (36.4 MB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

grpcio-1.37.1-cp35-cp35m-win32.whl (2.5 MB view details)

Uploaded CPython 3.5m Windows x86

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

Uploaded CPython 3.5m

grpcio-1.37.1-cp35-cp35m-manylinux2014_i686.whl (4.2 MB view details)

Uploaded CPython 3.5m

grpcio-1.37.1-cp35-cp35m-manylinux2010_x86_64.whl (4.0 MB view details)

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

grpcio-1.37.1-cp35-cp35m-manylinux2010_i686.whl (4.1 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

grpcio-1.37.1-cp35-cp35m-macosx_10_10_intel.whl (6.9 MB view details)

Uploaded CPython 3.5m macOS 10.10+ intel

grpcio-1.37.1-cp27-cp27mu-manylinux2010_x86_64.whl (4.0 MB view details)

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

grpcio-1.37.1-cp27-cp27mu-manylinux2010_i686.whl (4.1 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

grpcio-1.37.1-cp27-cp27m-win_amd64.whl (3.1 MB view details)

Uploaded CPython 2.7m Windows x86-64

grpcio-1.37.1-cp27-cp27m-win32.whl (3.2 MB view details)

Uploaded CPython 2.7m Windows x86

grpcio-1.37.1-cp27-cp27m-manylinux2010_x86_64.whl (4.0 MB view details)

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

grpcio-1.37.1-cp27-cp27m-manylinux2010_i686.whl (4.1 MB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

grpcio-1.37.1-cp27-cp27m-macosx_10_10_x86_64.whl (3.8 MB view details)

Uploaded CPython 2.7m macOS 10.10+ x86-64

File details

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

File metadata

  • Download URL: grpcio-1.37.1.tar.gz
  • Upload date:
  • Size: 21.7 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.37.1.tar.gz
Algorithm Hash digest
SHA256 df8305806311d3fe913d4f7eb3ef28e2072159ea12f95baab5d447f1380a71e3
MD5 942bfe89f8f0a6ef6de3984c3fea3f33
BLAKE2b-256 a0d6d04c6550debe23e2eaef0d9c4adccbb6e20d8cce6da40ae989fe8836e287

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.37.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 3.1 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.37.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7b2a2cf3621f94b123a9d7a68e4a8d948b29520136f096927f7c9653f24c8fca
MD5 2cabf57142dffecdc8e86947887bfa5d
BLAKE2b-256 458c82a4af509cd51bfdb8f614275545d0e6261d5e19203ac4b88418c10e12c3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.37.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 2.6 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.37.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6ad11c1ea337720a42fc31959bd44a38b8837e3ae25bdab681e2e1a28096b02a
MD5 9a858080b65830d5d10c4fd0a114a10f
BLAKE2b-256 00e5cf923b5b0ae632d95b42a1c01be243ca7ae07928d243067c67268aa70f55

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.37.1-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.2 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.37.1-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b7cc965538da06c9e9cf0e01bae91f274c75baf224ca6a734717c0f003ddf1f2
MD5 3a0211ef9cd12d21d681083754862ba1
BLAKE2b-256 791eff20d5d86af3fbc5c0bc05592fe68fcfc1d803b29b03ac2e498930e4ecde

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.37.1-cp39-cp39-manylinux2014_i686.whl
  • Upload date:
  • Size: 4.3 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.37.1-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7533d2c9698dd3038fcf3dd0df243b76a9e0db8008f8575c305e20a3593189eb
MD5 b408bb6c499b18911ce47eb16d55867f
BLAKE2b-256 f012a1ab3dfc62ffdd4f742c8a9233ccbd515b392e1a35fd9cf49cf6802286dc

See more details on using hashes here.

File details

Details for the file grpcio-1.37.1-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

  • Download URL: grpcio-1.37.1-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 37.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.37.1-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ee1bef5f5e4208998cdef44933db3c30c52a7ebde424cfc4186404ffded1d35
MD5 cd7a52a4e08b76f07f41acd63ed4e7ab
BLAKE2b-256 67a5c612c4db5b0a8485167f80b0e34d12fd3b24112effd43c3252929625a56e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.37.1-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.1 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.37.1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 74aad86c7c1b9163d01c3d9e75861e9b09c65e0947592ca315c30353a0f6c4d1
MD5 9bf5c1c118a61c62140fe65c8647e7d2
BLAKE2b-256 872973ba63dd27b74e5620cc954d6c6770355d5f77ef5409120de007a3bb451d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.37.1-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.1 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.37.1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1aab01ee3e4b88ed6419f0b25ff21c83deb6c823c6fb77e655def0796526e3a3
MD5 2f9208ad921207484d4afccbb74b71da
BLAKE2b-256 9eb9ae3b4d43b7c6f44b4f7951805991f27dd726d3037a70a0c4dff61095e9da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.37.1-cp39-cp39-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 3.9 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.37.1-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 9364f35949c3cff5470b583a03ccfd927b71cbe1ab7583a6529d5d67ed76e91e
MD5 0aa4dc01890f2b02075eaa54dcdbccee
BLAKE2b-256 9f12652692394980eac5726aea2437c2f44221556ed12ed40c56490b11552364

See more details on using hashes here.

File details

Details for the file grpcio-1.37.1-cp39-cp39-linux_armv7l.whl.

File metadata

  • Download URL: grpcio-1.37.1-cp39-cp39-linux_armv7l.whl
  • Upload date:
  • Size: 36.2 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.37.1-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 8d3cdca5cfd6761a8824bc8acc8ac7bc37ad5ef75899308ca0458cf7952ce12d
MD5 6c7f3f95d9f48c0c4666f079536c341b
BLAKE2b-256 107cf3bef9ffcef0d8a4d2aeda9a0603e577afbda19aac069f7b092dda81adcf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.37.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio-1.37.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b948a00764fee55cf111e0bf3d987167557152abf879f2c13bd2f278a6247ded
MD5 ec9810287cda666ddd55818bb800bbbb
BLAKE2b-256 cd93e66fa97aa230e274ef7253e2e76749bcaa2e38902b471970c58485df5496

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.37.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d7ae05ded17c4697ef80784dc89cad3025db0d90c5a8a0ada47a8d0749617d58
MD5 4bfdc9113f1ed1cf921fd9107a816193
BLAKE2b-256 3a657bf3eadde478ba8b809c32ae5f74877e1f72a9836bf89b6ceecfd95144eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.37.1-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.2 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.37.1-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a1cd40eac72d3c914eea73f8f7730ddbd86061098a8ce712d1ce108e9d87d449
MD5 fdcde1eb23cd894fcfa4cbac88622ec3
BLAKE2b-256 ded1782f9cbd861b07d04d9f400a521ba762e7c7cbbe128c140b0bee70eecb5a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.37.1-cp38-cp38-manylinux2014_i686.whl
  • Upload date:
  • Size: 4.3 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.37.1-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0b8817acef140cb9a3543208c13282d3bf4bb0103e930ddbb779677604085ada
MD5 ace06b9a14fd0be78ae42dea634f98dd
BLAKE2b-256 22545ade220fa7fb4661cbd5c29aa6e8202ea990d22f38f09b58ce02ac6228e1

See more details on using hashes here.

File details

Details for the file grpcio-1.37.1-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

  • Download URL: grpcio-1.37.1-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 37.4 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.37.1-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 025fa7dffb0cf724070cfcbe2ff600a18b0cf84642ede5c92f2717162e2a8c95
MD5 59c91743c1ec7d9837085c53bd19eef4
BLAKE2b-256 f2412ad7a64c4f8e0b1e5ba04cf65c637b4588045fa21a97758b6a9dfc3e657e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.37.1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.1 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.37.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 609297d3d5d32f47e04bf7dc61c7756df50bc37dec4dfd63e996388eba42fb3b
MD5 a1e064fd102accfef51237eaf64a16ff
BLAKE2b-256 bf471d73fcd0457e1582bb7d33d298a0b12c5f5e773851a42307d5f11c9eaf35

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.37.1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.1 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.37.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c87599137f6022ed5079b0df47da83134b9810d4b00999b87edfc901347f26a9
MD5 489e215d94c39b82f8fc7962c61d324b
BLAKE2b-256 7f574c9e620764dcec80f230afe78a161c5dcf37a9cda720da864b04d87abb67

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.37.1-cp38-cp38-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 3.9 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.37.1-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 d232802ba15b465000263bc17171f9863173b7669bdd72dbdffdfcc0f6e637dc
MD5 cbae8c035dc8f8b5220a0bdebe7d0dbf
BLAKE2b-256 d114465bebe8c2202ecd9856cd69b0b1776ebf9b65c165b0a18db202346d7628

See more details on using hashes here.

File details

Details for the file grpcio-1.37.1-cp38-cp38-linux_armv7l.whl.

File metadata

  • Download URL: grpcio-1.37.1-cp38-cp38-linux_armv7l.whl
  • Upload date:
  • Size: 36.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.18

File hashes

Hashes for grpcio-1.37.1-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 ac4174b1cf4daea0653fcfee7676bb04a8a43644e9ddf1913834d1542a9c697b
MD5 3334684db95258dabb12aca81e3bffba
BLAKE2b-256 8b137fbe204103b1d30d7572fcbac1bc49acd66a8a490fae356e3a12007d5920

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.37.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 3.1 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.37.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 4c0503b5ef6fcabc52c296d750a095ef29fd707d0f85322e95e5c261b3a684f9
MD5 0fb4815cee3f3db8238c251e78e426a3
BLAKE2b-256 634f878f2a49cfb2941c0250a9611b47e2bec7e6d2c6ffabd799e0f36a1ae63c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.37.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio-1.37.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 34d6f626062e7ef47ab30ff8976825c58fa8846ccd8c645b57291ccc74b9d413
MD5 7b3e662c925187649736d5955807e547
BLAKE2b-256 abb63fb8715737df0980ff0c04d7514e6a88ca3212a415446ced6e06976f2892

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.37.1-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.2 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.37.1-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4493365334baaa3d775f5e4a91d9a844ac676560232223405a0964dfddb31924
MD5 ff8082f3c27b4f89a8e12e7e8daa74c4
BLAKE2b-256 31d81bfe90cc49c166dd2ec1be46fa4830c254ce702004a110830c74ec1df0c0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.37.1-cp37-cp37m-manylinux2014_i686.whl
  • Upload date:
  • Size: 4.3 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.37.1-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4850c96d3a22d941b0d6af4dccbc739caec7f367b783aad049c843b28b458ff0
MD5 2ed557d812bd14286479a04b0f360a51
BLAKE2b-256 20771786c303778f100fcbc193c1f2ac4a45bd02d52aa1de5f0366c0c1412455

See more details on using hashes here.

File details

Details for the file grpcio-1.37.1-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: grpcio-1.37.1-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 37.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.37.1-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e72d8df53624098d8b1fe01c961888d61f90d7c0aa8116d76db80a535da9b445
MD5 a1bad8b818ba4678dad46f0758efd5ed
BLAKE2b-256 954f71c408efd7319f767e54ec0e49abe8aec43a1b5a71382c7cb84d5e7db16f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.37.1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.1 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.37.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8f5a16f8b650efddd5ff3f750cca5b45c045923be13e79cdd1b886332307f46a
MD5 e57363b7d7ffd1dcd0d8124b8a1b5f84
BLAKE2b-256 13734d5d3dd3c3e31161283e4e94a098983e84de61af6bed25a2b71ab4d280b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.37.1-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.1 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.37.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 23666be3ed366f647f09c9caf89c48ca0daa12be8fe4786e5a368a6cd69de1f6
MD5 3cc643a4cecb6eb7264540f5bd71eb42
BLAKE2b-256 26836ed22e1bd16b0fa65a175019add5828e3cfa0ef0fa25a8c315f4c765b316

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.37.1-cp37-cp37m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 3.9 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.37.1-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 30807f3979ebb3872588fa166876a2a24febe17e0db5950d5bedd67320d11b8c
MD5 ef3b7c5087eef75e3832760666678c0b
BLAKE2b-256 b16c21c8592fafbc509d655b66ab740f89b0ce9c3fc758b263df36c81b181374

See more details on using hashes here.

File details

Details for the file grpcio-1.37.1-cp37-cp37m-linux_armv7l.whl.

File metadata

  • Download URL: grpcio-1.37.1-cp37-cp37m-linux_armv7l.whl
  • Upload date:
  • Size: 36.3 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.37.1-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 f1287ae8a3bef97fd702dac95967aaf52031a6dceb2bd30da165f16e3b617293
MD5 39e3804f24b9ef07015abc518d85667f
BLAKE2b-256 03322d191faadf47539dd5f97ef0c35592f13bd8e0c8316e0ad8e50154fd4f34

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.37.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 3.1 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.37.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 640f49187105fb6c2b1b7acea06df3b0ccf5fe33a075c73b8a741013bc5cc802
MD5 2e62e41d3d1dd668058856388ebf8b00
BLAKE2b-256 b5beca238c51bcdd34d1b6b2d1d46ba27ffc384325a07b19e64e3cc574d7bb5d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.37.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 e3e0fb7d32f163699cef5132b060e3f613dc914408164eb3e3ac69095861ea04
MD5 e6f2012eef57857abfd90e5b402b8c2e
BLAKE2b-256 f86b4bedc1f3401db524e3b7f498c8fda8459f14af65fb9b2da212a78b37715e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.37.1-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio-1.37.1-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 264f6d9a922f5124f79f50b1880349fd16c657a9b4fdf0f29fca939d40584f7f
MD5 2ca70f5f7e0f4eb1bd07c606a38923a0
BLAKE2b-256 000826eb3d641da72cc7d928da95993148c5c65fb3c8f0e0af80edc6872d9b63

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.37.1-cp36-cp36m-manylinux2014_i686.whl
  • Upload date:
  • Size: 4.3 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.37.1-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 494cce1709f7cd63c2610c25b41f886048f1d993511ddb23f766b77ac142ba78
MD5 bf7e558c99ff89c538eb28a2ac59037c
BLAKE2b-256 245d5dd42e60ad04f4448798be9afc9abc14dc79e8a874b6f80e40bece015edf

See more details on using hashes here.

File details

Details for the file grpcio-1.37.1-cp36-cp36m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: grpcio-1.37.1-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 37.2 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio-1.37.1-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 67b482c810d05d9317e29b82900864ab888b9f842701906ba54c3eb176cd8eab
MD5 8204113e3e0396b05424c2a0fa943486
BLAKE2b-256 b294e66e8922e1728c7d352659fb0e88d86a5258f7a8c9361eb4be3c917bdd06

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.37.1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.1 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.37.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f933dd10948a5e5ed4258a1581e45aec1bb84069e62368084eb2dcf4cce51e78
MD5 e9e804936080cbaa04c748bbf49cf760
BLAKE2b-256 8399b4ec4fe7e8057e613b5cb3bfa52b20d9150146f6f3882785de8e42d2ab37

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.37.1-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.1 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.37.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5dabaac759a98bcfd979d22874dcd7ccf8779678a2fe841d355dd93fee143974
MD5 13f90a58e46bded81a0a8ecdff7fdadc
BLAKE2b-256 04f74942e64958cb12dbcbc1fc3a536f8c7448904f16d15f9dfc9dd5dc5b084b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.37.1-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.37.1-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 728292f5ccb849f30774c0805ef5c39452b3a5f4d193ac499ae5b78d268ff64b
MD5 08d93f8b42408e4b11bc8ebbc104e8e8
BLAKE2b-256 845454b122cd04864250bd017d428ae0db82f2995e3253f858e57fc39026cbab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.37.1-cp36-cp36m-linux_armv7l.whl
  • Upload date:
  • Size: 36.4 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.37.1-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 ad03ff6b15f3481f3c999d5d22b5c56295dffc49b8e2cbdbc04c7bf358d3034e
MD5 c8f453b2ee7048c759f70d35c16317a5
BLAKE2b-256 13fcffd4f17085cb17b5545213bd4e3fc96cebc0937553075ce8e5bc1f2470ec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.37.1-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/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.37.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 30ba9712547c9497a438bfeb2c7f393fa983df1609e1c81243d4b0d1b1bfefbf
MD5 accd72144bc198369fb728f2e3f976b2
BLAKE2b-256 9cc634daa3964581e697f3a2254653109e2b11aa466556cf62b98bd62ccd6c5a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.37.1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 2.5 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.37.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 e236d0580f7e69a35c420ce60f960b294e9dc973b8c31499fa476eb4d4ba4088
MD5 a1fe3d9e2ff3b8414d210d816008a44e
BLAKE2b-256 a72a44e84b5e5659a33f58bc78df4fb18ef739ad8b80e58250c3e3f6f821b3b9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.37.1-cp35-cp35m-manylinux2014_x86_64.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.37.1-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 80c3c9d24ecd236571d3c86657243431a8bafef022dcce83f9f2aeb6eecb96b9
MD5 60e8e629a52ba72caec02c03cc6ff973
BLAKE2b-256 790b84c6feb52e33a8157bd972a869b79c7884b280044b4054881d40bb0fe1bf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.37.1-cp35-cp35m-manylinux2014_i686.whl
  • Upload date:
  • Size: 4.2 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.37.1-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9674fffd1f599aec7389a61d48c1a8c8aaba69591609895911c6d8386d86dd45
MD5 22668a15234c9ee3bfb258e29109b29b
BLAKE2b-256 6edf8c9238daac958e8f70424e24c8620d0e3fb810a0c1f1ff9265c12d48f73b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.37.1-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.0 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.37.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fa279b99878bae9b804c09e023f2b47de79d0b5e813ab85ddf28673784d610f0
MD5 e2235997f99f2ab98b7c75b98b3deba8
BLAKE2b-256 8ba48071e606a02b9b2db945646a795b544840c100684408157329982075b78f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.37.1-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.1 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.37.1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f6a73167fce4a41e5c0b34ceaad1048a14e9eeb4fc324da49da0537c199efab7
MD5 4a8b03208108753bc85e014002b93fff
BLAKE2b-256 15339858ec1e4055d7d53fcd7f16c8e80fb4457fd14f12fc17441276ab50f911

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.37.1-cp35-cp35m-macosx_10_10_intel.whl
  • Upload date:
  • Size: 6.9 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.37.1-cp35-cp35m-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 22b0cc3531d3c405fae9a8519004a0e62ecbd1f005b55b3622098a4881d36b96
MD5 fa8740311ce640e8db0dd2e1cc3f46e1
BLAKE2b-256 5c9bf1feb6fef299c007f1a2753ed4d465e5f8fcf019ecfc3c3e2f27c74e5dd3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.37.1-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.0 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.37.1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e7da0319003d150611b30cd864e0474a283324b3db9107107aa3ef9a71c53130
MD5 cb74ba5b618c2998a760eba48b3772cd
BLAKE2b-256 2609184ca9162e6283d347e76bc24ab96a4c0e0d08a53453ab5443a4fc3f9eb3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.37.1-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.1 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.37.1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 99a627471275f93d400399b55e4c1d798602ff79d693e7def0a0b276912bff7e
MD5 ce11ba11a6da153ac3b33de5587c3100
BLAKE2b-256 d96912475e36b85a5004263fc194ddb079454ff4361e90172619dc80f2d82032

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.37.1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 1de472a3c2a3d89d4d400d8179f2777ec99f7da0e87c0c1f196226141816d621
MD5 1ea77adafea019f2b5f52062d6f834bf
BLAKE2b-256 e84c670df3a78daf31abd436d896176eabfd8a2cb675f0c5167c7f1109d1239d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.37.1-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 3.2 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.37.1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 ee0537fe2423307b885ba44e6789249e6d7624247cb38a20b9f38f4b40f5ab03
MD5 67ec57968bcd70791876888c9772bb3e
BLAKE2b-256 97f3eae4ce1a64993ebe3d3acd508c97aa137db3d320705be493f49d16471dc8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.37.1-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.0 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.37.1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 37e265b72e69ef8e33efca8d1123bdc349ae3eabb92563e76adfce209c9df51a
MD5 d9db8918530030715cd863970b4989aa
BLAKE2b-256 d639e752e05f4a9f76d34fc2d1c4cb6d0b490616c225a2bd300c2a4b7d6f00ae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.37.1-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.1 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.37.1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6f44b8244bafcbea63daff222ae1b27d048b9d8fd47eb3d11e61ee092078e766
MD5 dbb89e2c919c4a673530d8764adb3d39
BLAKE2b-256 cb902c58037a3a094bcbed548bf3da47bce7a5599326960a991f7c7b85f770c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.37.1-cp27-cp27m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 3.8 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.37.1-cp27-cp27m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 0d64b5995e17eb9f086e82e6a4edadd1295827b593be71b516e7a442067784b5
MD5 5c3fe5740e1df032eef8419ed52b9b7e
BLAKE2b-256 565c3a7dce5774c83df914b799d9286ec505bbea54af131e29c18db11f0b48f7

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