Skip to main content

HTTP/2-based RPC framework

Project description

compat_check_pypi

Package for gRPC Python.

Supported Python Versions

Python >= 3.5

Installation

gRPC Python is available for Linux, macOS, and Windows.

Installing From PyPI

If you are installing locally…

$ pip install grpcio

Else system wide (on Ubuntu)…

$ sudo pip install grpcio

If you’re on Windows make sure that you installed the pip.exe component when you installed Python (if not go back and install it!) then invoke:

$ pip.exe install grpcio

Windows users may need to invoke pip.exe from a command line ran as administrator.

n.b. On Windows and on Mac OS X one must have a recent release of pip to retrieve the proper wheel from PyPI. Be sure to upgrade to the latest version!

Installing From Source

Building from source requires that you have the Python headers (usually a package named python-dev).

$ export REPO_ROOT=grpc  # REPO_ROOT can be any directory of your choice
$ git clone -b RELEASE_TAG_HERE https://github.com/grpc/grpc $REPO_ROOT
$ cd $REPO_ROOT
$ git submodule update --init

# For the next two commands do `sudo pip install` if you get permission-denied errors
$ pip install -rrequirements.txt
$ GRPC_PYTHON_BUILD_WITH_CYTHON=1 pip install .

You cannot currently install Python from source on Windows. Things might work out for you in MSYS2 (follow the Linux instructions), but it isn’t officially supported at the moment.

Troubleshooting

Help, I …

  • … see a pkg_resources.VersionConflict when I try to install grpc

    This is likely because pip doesn’t own the offending dependency, which in turn is likely because your operating system’s package manager owns it. You’ll need to force the installation of the dependency:

    pip install --ignore-installed $OFFENDING_DEPENDENCY

    For example, if you get an error like the following:

    Traceback (most recent call last):
    File "<string>", line 17, in <module>
     ...
    File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 509, in find
      raise VersionConflict(dist, req)
    pkg_resources.VersionConflict: (six 1.8.0 (/usr/lib/python2.7/dist-packages), Requirement.parse('six>=1.10'))

    You can fix it by doing:

    sudo pip install --ignore-installed six
  • … see the following error on some platforms

    /tmp/pip-build-U8pSsr/cython/Cython/Plex/Scanners.c:4:20: fatal error: Python.h: No such file or directory
    #include "Python.h"
                    ^
    compilation terminated.

    You can fix it by installing python-dev package. i.e

    sudo apt-get install python-dev

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

grpcio-1.36.0.tar.gz (21.5 MB view details)

Uploaded Source

Built Distributions

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

grpcio-1.36.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.36.0-cp38-cp38-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

grpcio-1.36.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.36.0-cp37-cp37m-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

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

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m macOS 10.10+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

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

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

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

grpcio-1.36.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.36.0-cp36-cp36m-linux_armv7l.whl (34.0 MB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

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

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

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m macOS 10.10+ intel

grpcio-1.36.0-cp35-cp35m-linux_armv7l.whl (33.9 MB view details)

Uploaded CPython 3.5m

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

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

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

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

grpcio-1.36.0-cp27-cp27mu-linux_armv7l.whl (33.6 MB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

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

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

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

grpcio-1.36.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.36.0.tar.gz.

File metadata

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

File hashes

Hashes for grpcio-1.36.0.tar.gz
Algorithm Hash digest
SHA256 70b11805bc9385fcd24e15bcdc5bd8bed463026cd2227d9fdd1ebda612ba0cd9
MD5 bcfaef60f073616677723bbe14c8e9cf
BLAKE2b-256 9d9e18e92a4042fdee8613f5613a37cf7162d32b5674f1b12d0f7b042e7e710b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.36.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/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b93f399a76c4fa1c8ce8a77845e52f1ce0553bca7e50120656a040774f7f5174
MD5 ac4f8ef17a7d485c39cea53e572513db
BLAKE2b-256 3c32c1b5b8270591af105a7afd47b74f8b6861036c144e7b4b5a07422ccc565d

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.36.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3df178bec684a8ccd61fe1f1e8bf0af14875c2d5a7c2fb23a9d4cff48aba512a
MD5 925497853be58d8c554f6157ccf10807
BLAKE2b-256 1e7857dce5e3f177d718635db065c4b6b5caee0a36c543fd024a40700f4e25dd

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.36.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/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 33ca9c0d2ea9d72554c1fb5160820c427b421bff0f185d7374fd929686af6070
MD5 bee32f3de8635fe72ce8c9f56363204c
BLAKE2b-256 225a2b47d45905e444e5255a7adfa769877079ad90b927bc2ca7c06158073038

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.36.0-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0017a0cb3fd2b6531479c6ce4aa922ff7a23f8cc0e570888943e30d241812b6c
MD5 c123c607952eea747353f5af58c97553
BLAKE2b-256 e65a58aadb3e3a1c1ac8887cd67f0d7f451565bf476470bfdbceba0508cbd31b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.36.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/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 687b0dd7804b180a293887d29e26bd6ac958131ee780c5316f99244841016325
MD5 b9a5842806bd5193e97098c3d867c488
BLAKE2b-256 d7aef9360869f5ee645ac9cc55523e79a0fd31b49c0a6223d7182f77def1b3c8

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.36.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/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a9eb5776631a4fef64cebee4448961d0bf913bc433c377a911513ff1c79c3aed
MD5 300a872e3786be8ed89a6ae97d9a2d27
BLAKE2b-256 70527ac9b946c4fb24df5530ddea790b9585cfa25cbf306adfd0faf43dc55e2f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.36.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/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 49c07ed6c475aa1852a5d8b40d440376d159262c3c7e97a989794da65f493f13
MD5 3ab9e2db9f34a8759ec137782676a099
BLAKE2b-256 c740c8783e312c644838326c21401659c11769e0c9eba62883e4550c40aefc69

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.36.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/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 bd6b3c503c945b6449e84dfd6afe63a38e5778c1fa745c3884100a3a1edc74e3
MD5 31cb99c001102ec6cc88e3e7c5072d0a
BLAKE2b-256 3705c09bc72dff2f5f83b1a4c238af57f9755c303a68b74b6d9a9ff9fa76170f

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.36.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 7b9be454eaf820255d2c16367b6af6069d7e77f2a200a82da8b0d079708b0d63
MD5 82479d88db4a7f1822d5dcfbed48a812
BLAKE2b-256 f0adc56f1931158d73b442664eddbdd75992e4b8615bb633d92299fcef4eb991

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.36.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/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8e267998e6197500be3d8afa293154eb9e69d18752f7450dfc452875b3890bd9
MD5 e5a645850e3a64e2bd2460a969476e3c
BLAKE2b-256 7211d2a26271c7d885c1011157780567a1f151780be78563a59509cf7742cd67

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.36.0-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4e82dde83fe1fcbe01d5a2a7576b2d4fcb8111234f7b34e3102b110e6009621f
MD5 dcf8248c5b22905da00679a40eb96ffd
BLAKE2b-256 a263aad3ad9e6e11b7ac66180639be63158b32410b7774c4cfe94d62c06404e8

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.36.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/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 660af7bd702719b8002da4042aab18cbe2a453d868eeb4f5cf5818399d640501
MD5 29b4194d8c05f0b3757b701b4745ebed
BLAKE2b-256 fe23245923584ee61dbdac2767b13e6de94dcf9f32f152a834915afa85670cb7

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.36.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/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7b3b185f993b1db2f1f336fcff541d1d502ce3528b968a36a89c334edce8477d
MD5 a8733c4564a579fd8676cacf8241c792
BLAKE2b-256 f69d655bb41963dd2fe2e285cf40ddf969a1bde982c40e66b36a893aa0936fed

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.36.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/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 9c3066c696255a3dcfc2a41a36c5abfe159fa6ee2d9082cb0b3ebe25b7748e6a
MD5 6125b8651601ad427d542b89a7fa3aba
BLAKE2b-256 4b00322340c7104c7fa6bb3956b0e04fff214ba682d98b500ebc405e1dc3317a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.36.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/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e7212fa579168ea6291c2fcfbf1557d61b982eb3f06d67114f9401bde948d569
MD5 d8196c311e04eb8f88b105c13ba3240d
BLAKE2b-256 824f6fa77ac2fb8db0ef2fc5b7b1c2e4fba394803580b45aa1cbf755f6d3a54a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.36.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/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 d26b21d845f8fa4a4ca07d78c9f52abf470126beff1f75be887a704e31bca5a8
MD5 2c3ed4c71641f37e06fe243bb4837850
BLAKE2b-256 bd6e486b8f7f0228726ed5c0de6b72a692d6ae23c8a82ae9028f184d9bcc791e

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.36.0-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 17993c726250d2a0efec5e8768afa20ed939bbc58966a94db2e5bf882a26e374
MD5 9aca3e279e324f0702550cd5a36c21ae
BLAKE2b-256 f6c0d03e5c3d9ca1db9ca4c90d7338f2168af2a370ca2a8e7bca6e2d7d75edb2

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.36.0-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a09ba40f9c88aaa851c0f21bb32a1b06c0fc19f502226edc52138089b8e05e15
MD5 20672b31615654d4d3063a5d680d9a8c
BLAKE2b-256 e94441c945fbd8d89d15b46887b86b652c531406baa5fdccde08ba8c2b4ded1f

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.36.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a093a1a4d81db3b34c5de0eed7a288aff475e49e40b50fb8007e10418d3ed7ed
MD5 52377fe9b56caa14ec27db462b86db7e
BLAKE2b-256 391f00b6138ad067697e088367feac282315e72d9a4469db71fb9857e624a452

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.36.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/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6af209ae44bbe3b8ba159773d0ca01d2cef07ebe30c4ab21b1820af4b0ed50c1
MD5 9361e88246b5fdc654997b39402627a0
BLAKE2b-256 2fe0a2f767db317c132c1bc3780a3e9e2c557d95a0c2f7999932f503c578a428

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.36.0-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 3e8067cf679b9e12e67f34cd8dc0ecfe1dd0258371746b5d7e8f2caa2a2fa734
MD5 7065811cd885e6f77d924ff6721c58bc
BLAKE2b-256 903c0494e4454ab1963fc920878c8e9fbe9469f0a8484d3c60e1e20f40a94f87

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.36.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/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 13dfa76d3ba98f00c4cbd8f03ce8f6f70d135d0e4523cd4accaaa11b021421f0
MD5 cdc3cbca7bf470daa27473b7e1ebda43
BLAKE2b-256 5a059a8b79639f8e0c79a1efac990df55994131d9d611ea55ca36a25be6ad36d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.36.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/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 894998db66d1f9197e8c5e10400826910d17ccfccd068aa0344143e230d7c956
MD5 f4d8acc95dad1442e7ccc73baa575dd1
BLAKE2b-256 36fd9df1461e012fd2e6ea327ebdac55539b6cd7ee01809ea31b6ab646a198d4

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.36.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/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 048a89e4ce602e2d6d45bc70343bd0c1f7b2df4bef5a6c3ce5599be62225ae9a
MD5 6b70a9a56d0c265156b15bc8ac6485bf
BLAKE2b-256 4c375399de2c56182721c647e0fa1da92a95e9d62cb46504d3109b67c2d04836

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.36.0-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 24c5e06586699fe7b825931db05819b0abfaa3ca3d2687af1b2f0ef010bd35d2
MD5 ab58e4e7570e8f1341495bf3560b8b01
BLAKE2b-256 ca16687d42382cb7251cee8931230c88edb464ba6338fdcdf738340f39881d5b

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.36.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 638f1049af1021543f26517d87ba2b816f58da7ab3bc6fee6bd42f6cf760d47e
MD5 49d0dfc46bad484ef41e6b17e156ccff
BLAKE2b-256 0e4096cd4c50ced16c7cf2d23ea752da4f97e22bb13e48d29458c5aa6aae05e4

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.36.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/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 fca09a2a3d39def4d3433d09927296d0da7a7d5f710b71cbbab5d229b2ba2f2e
MD5 b6c91f3be315269a469ce2c230a6fca9
BLAKE2b-256 92453bace25ddde11c80076f7333abaf2856c9116a4e5407d997e94f054439b5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.36.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/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 6f307582acaebac5182bb747b94db96e17d413e315d3c2276ace71fa5c417a34
MD5 851418d627c1401abb304c5e08704641
BLAKE2b-256 1fc636b72f905494f28f2966bc3e551f7c4810ef5c89c2a71b3f3eb80288c1ec

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.36.0-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 00b0e81de8beae1fc0bb9dc74c94b8c95dfbb73faa1fb6ab6f7b65a524150546
MD5 2474c4b6f0b66572a7262af5f0bc2790
BLAKE2b-256 1c145b32ea84825ac04dbfbd5ca0adfa891acc3fb95d47915b5543a582b9c71c

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.36.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 ac9dd3229802e0d4f15c736849252357a22892e9eb36077643a618fb77f10547
MD5 256c52794f94c9c91880786c17b9dcdf
BLAKE2b-256 1589114ea802d9da0a593508c62e4581985bdd97c3abb00cb14ed09777d7346e

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.36.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 9920d4076d5c775fad7cd11215d7f596c0e39f6dc06c00719fce581c2f10b07c
MD5 881ca6f5a9d5ae4a267bb7595d7790d9
BLAKE2b-256 6a3565aa18fca7d1d790a0cf421849f6bd3db12ac6661da4a6d1819fc26402a6

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.36.0-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7028239901d48bbc8bca95c5ff4229cbdd81898f0a4a9c7f428b33445bea7deb
MD5 8d312886c599f6821559314238975828
BLAKE2b-256 46035141b5653b1ee71dcebb8a5dc014a49aea132fb725fc77d4df19e21a4bfb

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.36.0-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8b01a6865a4ae810a4a6e4cc4a21c352f58fa5cb8b39e935095d70ec749466e7
MD5 ce074dbca621a8d50c24b3b009798563
BLAKE2b-256 a120ac5da4e990aa54a011b75668f5be4a82fe69335315546f0ab6f3cd01b67f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.36.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/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b3d791fe24e294e1eb53de602b2fe1ff6582f4fd710a6324a3422bed46883f25
MD5 3d031bf2dad02b5c44c80dee57027c14
BLAKE2b-256 2a3deea623c186a4ebe0bfee4242fa23ac6a8a6672213b08b385179dffb4baa7

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.36.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 12c98827a98ad49fd51141be67f213f51cc8d1f520ee87722854bbe59c681c71
MD5 1a0f2479492bd030fd1f8ebcca24cb28
BLAKE2b-256 e9773b5c82e5c56ba9cb0d9053fc3bc30f9e74415632dc93883b5ec39538b4ab

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.36.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/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0-cp35-cp35m-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 eec069361ded304518e73b39ad87cd96ed0131058af40118e338a5eaf84ca54b
MD5 95912ad25a73950c4d293ec8ea8a0365
BLAKE2b-256 ee7b27fc4cec7ddba1134b7f35e8bf55058a67a8841c0c5c009ce13d5ee09408

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.36.0-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 c6cbbdccfd335a58a44881ce1146a5169d1495770fb9f5bcd4972ff11394b6a9
MD5 255d238f9f0e633c4767e366641999bd
BLAKE2b-256 8ada5e514cef20c193db78e878c0d631e667dc0eb2cfa51b4835f699c5b38110

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.36.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/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 89e954c4164f50210ff33a0a57bfa6004abcaaff90fef23eaf4a6654105396e1
MD5 eee752a3e4ef17c7f9e8fef9b6102b61
BLAKE2b-256 b4c73811fcc5cf59177df2a8466578688e95f53495cb0bd33a205275ddeaa2cc

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.36.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c183162737d011712775391f2a7f7e6d78209cd11a086d4d2824b16b9ac4c731
MD5 5f7ae97d54ee96c71aaca3d6170b2572
BLAKE2b-256 f290125ff1584470bbe12d8e892882e452124b2988dcf173713bab4ef4d284e8

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.36.0-cp27-cp27mu-linux_armv7l.whl
  • Upload date:
  • Size: 33.6 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 798ee3ea27d77aed81fe61292ca80be57871eee7df5c7414125d7c1867678397
MD5 de8c8a380dd20d36d06916343757f122
BLAKE2b-256 6e1d2893167073a78890a75247343610e5bebf08706678e6ee8be08402a053da

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.36.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/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 4aa4119b0c854c84f57dcebc7b2e5eb7b6cadbdc3f8672abfcad9c37d1f32396
MD5 e413a28e07e6bf8fbcd9ac2c59c4b558
BLAKE2b-256 06be293d61a50dce2ea3e291e489b03242a9d265ba90287397f3b2624e53bff0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.36.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/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 976d6a7c42305ec3daa8864299acef074c07719e28edefb7d668bf0e02b63ede
MD5 97c5e21ff69c6ec22890481c56013e12
BLAKE2b-256 e0ae56d41a40b5252e8b20af0c67527497c947d64769bacff3ea72cb2b4cbd17

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.36.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/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 96815aa529b15e565ff8d8e99f3fb304db9336a08ff224970972538533fb0e3a
MD5 f75b8c04f48d1036f61613fc9e2f205e
BLAKE2b-256 c2e8f00291a36d4026848c22ceb55c18cb899118621bd1a6eb9bb18491e2f58c

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.36.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 01d832625fe818e4890bb39e5eb3fe1ab6d7bd49d42ca7e7889342c764e193c4
MD5 dd094bcb9431599564d0064a24788ada
BLAKE2b-256 77caac68e85d19b76d802aa74e580e2f31983250fc7304667d5e9053659ed73a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.36.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/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio-1.36.0-cp27-cp27m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 6a87d4acaa60873001622d552618616bedeb0f3370553cb7ffb6ade2b5a836d8
MD5 6e98e0652e44f9e48615e66cd3e439a6
BLAKE2b-256 21686996050b53ce94619ba348692ebb1c4bdbe41a2c95b5450fc85acdc71aa0

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