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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

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

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

grpcio-1.36.1-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.1-cp36-cp36m-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

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

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

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

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

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

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m macOS 10.10+ intel

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

Uploaded CPython 3.5m

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

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

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

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

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

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

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

grpcio-1.36.1-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.1.tar.gz.

File metadata

  • Download URL: grpcio-1.36.1.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.1.tar.gz
Algorithm Hash digest
SHA256 a66ea59b20f3669df0f0c6a3bd57b985e5b2d1dcf3e4c29819bb8dc232d0fd38
MD5 58a6cb2b65a6b74fcc24f4f1f7fdf9dc
BLAKE2b-256 4649aa254d395a594245cfa6c5c09eb5cf278edb9847babdb88efebba1ca86e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.1-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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f22c11772eff25ba1ca536e760b8c34ba56f2a9d66b6842cb11770a8f61f879d
MD5 f41f3584ea5f501b8a9bd87025c552b0
BLAKE2b-256 2a8790a9f2b2c7f67b285962e20bbae9c19043ffb16d25a3edc0ff84f38733f9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.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/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.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f3f70505207ee1cee65f60a799fd8e06e07861409aa0d55d834825a79b40c297
MD5 f1566f949cc4a5e126646c912e4c357c
BLAKE2b-256 13afc2199fdd8a67fc4cceb1f2df950f61b3e7aede73c77e1b2b9243fe0aa685

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.1-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.1-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 09af8ceb91860086216edc6e5ea15f9beb2cf81687faa43b7c03216f5b73e244
MD5 fbe1081ba9f0f9e26fdc03376ded052a
BLAKE2b-256 e8018d15453fb67bb0efd771d22ac243b1e6936bedc81e8f03ca40ff4fc336cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.1-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.1-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bab743cdac1d6d8326c65d1d091d0740b39966dfab06519f74a03b3d128b8454
MD5 e49fd29697927da22b710dc188ca7e43
BLAKE2b-256 f0dbfa53ee01eaccc6c6a0bf7d58fa780c60424267ef0e01230abf74545f8764

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.1-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.1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 45ea10dd133a43b10c0b4326834107ebccfee25dab59b312b78e018c2d72a1f0
MD5 c3375bb94dc688741b2b35194f9c5453
BLAKE2b-256 11c1c8f29efa3a7629b8e1f8db25599f5f90bea3b1ed2e75442cb83d5634c0db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.1-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.1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0648a6d5d7ddcd9c8462d7d961660ee024dad6b88152ee3a521819e611830edf
MD5 c89a7127b1cba410ad81e3c0404c7a4d
BLAKE2b-256 b2b04909b215be53d0a96e2a52c46b1f905882e08dee31a75efa8de7aacdc58e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.1-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.1-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 ec753c022b39656f88409fbf9f2d3b28497e3f17aa678f884d78776b41ebe6bd
MD5 96ed59b66a9b41321bba389a9221b7b8
BLAKE2b-256 a598036a6adfcc8e685c3f11db0ca4c365721dc5face177ec597cde3e020b977

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.1-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.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f214076eb13da9e65c1aa9877b51fca03f51a82bd8691358e1a1edd9ff341330
MD5 e8d1cf1aa5a26393c5fb5494b4bc7548
BLAKE2b-256 0bfb4ef4b95ca1d86aa75a831048e11a8e24b523f8ed0b998acee0512ec6abf1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.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/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.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 7863c2a140e829b1f4c6d67bf0bf15e5321ac4766d0a295e2682970d9dd4b091
MD5 ca6383523f78934acadce3702c6c6a9f
BLAKE2b-256 a2a4baf23b0c112c93e950ded07d762a3534b4a33b9bb6fb96809746500687b0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.1-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.1-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 216fbd2a488e74c3b96e240e4054c85c4c99102a439bc9f556936991643f43bc
MD5 a543c3e72ba5760ddc00191a2b5f1ba2
BLAKE2b-256 54a04bc4bbac96a6d1ae4099e2a57d13d8a749b695165365e5cc63e2df76e281

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.1-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.1-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 20b7c4c5513e1135a2261e56830c0e710f205fee92019b92fe132d7f16a5cfd8
MD5 3127df52139119e64e2ed9b521f43e51
BLAKE2b-256 03994255bb664743b7d88b1b733d9e3142b921a6020d7eb46f213ab1a5eab3f9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.1-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.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f7740d9d9451f3663df11b241ac05cafc0efaa052d2fdca6640c4d3748eaf6e2
MD5 cc73c42e0dc163832902db762c67a493
BLAKE2b-256 01eea267a5e294c88c806a2277c71f2ab02569d4fb4e9119c31014b76502a06b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.1-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.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5e4920a8fb5d17b2c5ba980db0ac1c925bbee3e5d70e96da3ec4fb1c8600d68f
MD5 af21dc57ae281c0fa6c9f40c76be35e0
BLAKE2b-256 22d76158612482fce1d192b3bd56ad1c3d09ba14f2370a79105b8f5d038a4537

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.1-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.1-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 6b30682180053eebc87802c2f249d2f59b430e1a18e8808575dde0d22a968b2c
MD5 76ff7a51460e9f1876fc76d882714f28
BLAKE2b-256 f63a9e41a8b50809fcf536eb349059777ab709b5651afcd6d5c6ec3f35f34ce6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.1-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.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 85a6035ae75ce964f78f19cf913938596ccf068b149fcd79f4371268bcb9aa7c
MD5 4ab8517b963d2b76b82e4d2405c8dabd
BLAKE2b-256 1600f8e3da3b9ab58756ad46521a7dbde218a42e3e6efdeeedc2a044ac5ee1c0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.1-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.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ed16bfeda02268e75e038c58599d52afc7097d749916c079b26bc27a66900f7d
MD5 a211d8a3f592237c9876ff34a48d70cb
BLAKE2b-256 20abea6145d4b55dfeeb10db6d2d590ec17caed2ca2dc6a4c1d6d3692fd60c76

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.1-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.1-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dee9971aef20fc09ed897420446c4d0926cd1d7630f343333288523ca5b44bb2
MD5 f556ddaff1b93561f6fe51d9f1609a3d
BLAKE2b-256 816f6d292b7012abe5dd797259d10a788935bfc96bc6c835f2d529d95f1e388e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.1-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.1-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a602d6b30760bbbb2fe776caaa914a0d404636cafc3f2322718bf8002d7b1e55
MD5 32b9cdbf5103fdc5f2211b565c5d450c
BLAKE2b-256 d37e5441a6bf9547251336b13374c532b28648db878beafc99e1f126e1da6464

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.1-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.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e1b9e906aa6f7577016e86ed7f3a69cae7dab4e41356584dc7980f76ea65035f
MD5 33893ca04a761066bb46eee0a2d43d15
BLAKE2b-256 7210dfe2bc37369850da7b631cbb40ea2175f02e109ae6810af2ff29b0faf1d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.1-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.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4c05ed54b2a00df01e633bebec819b512bf0c60f8f5b3b36dd344dc673b02fea
MD5 c853f9fc9c41bbffbc4d504d7eca12f5
BLAKE2b-256 91e179ca28fecd3fabfff506135b72aace1e59845bf44275c94a8788779cdc5c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.1-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.1-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 6f6f8a8b57e40347d0bf32c2135037dae31d63d3b19007b4c426a11b76deaf65
MD5 41c8538de089631edc16baf74cc1dd5a
BLAKE2b-256 dcaa61ca2b2d701587b3ebde3a3dce160113696c3467864a4be3b807bfa714b9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.1-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.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 3a6295aa692806218e97bb687a71cd768450ed99e2acddc488f18d738edef463
MD5 a0b8ed44105f2373e1c4500fa9fab68c
BLAKE2b-256 1b041d1b0264ca6c565931eb314bd76d2805e0e8409202d045bb021c4e691978

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.1-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.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 5378189fb897567f4929f75ab67a3e0da4f8967806246cb9cfa1fa06bfbdb0d5
MD5 65d867ed4f030252c64b7908da5ee70a
BLAKE2b-256 0ca6514a92b4341fef2dc9365c598762d070dd23ecb8f6571aac3546720d26c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.1-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.1-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7e32bc01dfaa7a51c547379644ea619a2161d6969affdac3bbd173478d26673d
MD5 6ad0ded33847e6d9349cca48c49c2e37
BLAKE2b-256 3fa18fcc3d5bee884c6b5348c6b1e2a910474090d4bcd87131e73cb037d10349

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.1-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.1-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cbd82c479338fc1c0e5c3db09752b61fe47d40c6e38e4be8657153712fa76674
MD5 341897b7da349e1ae78016b715d0956f
BLAKE2b-256 cfe9385729d89eb1f6f50480db90edd53cfa37fd5d4d7331059734dc2a24b595

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.1-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.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f591597bb25eae0094ead5a965555e911453e5f35fdbdaa83be11ef107865697
MD5 32d46cf67ae6162aefdc30d60a52cd8e
BLAKE2b-256 bcf2f64ce4e0ae544698c7b4d7b057932181d291c6fa3cbc5c8072971674a778

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.1-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.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 76daa3c4d58fcf40f7969bdb4270335e96ee0382a050cadcd97d7332cd0251a3
MD5 c57e770a1f49d84c91ddc64e0099f4ce
BLAKE2b-256 3ade5a82381a5a7ce97360cd31a6cbfc415fe5e56642a3fe18ab4165a8ba2259

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.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/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.1-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 b003e24339030ed356f59505d1065b89e1f443ef41ce71ca9069be944c0d2e6b
MD5 18ba789190c898158cfa9c2d28ab2cfb
BLAKE2b-256 b1c96a338204bb67a96689f3be664bc053b9b4a901e7ccc62dca3e0b5dbdd8dd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.1-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.1-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 1030e74ddd0fa6e3bad7944f0c68cf1251b15bcd70641f0ad3858fdf2b8602a0
MD5 edf2909200c886e772bc41286c510ab1
BLAKE2b-256 9a3567e3a8df987e33f2d9a90543f498ad014b1a204cfffc409bba70cb954ee7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.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/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.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 eafafc7e040e36aa926edc731ab52c23465981888779ae64bfc8ad85888ed4f3
MD5 77665ba6c5c8c509aca5dc244e24bf50
BLAKE2b-256 6aadf22b931d305f07ba72ba83aa81aa2b0aff518b5f31e5c0497d03a36cbff3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.1-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.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 02030e1afd3247f2b159df9dff959ec79dd4047b1c4dd4eec9e3d1642efbd504
MD5 f65fa41cbbe5fcdcaf83c6f0a88eeb57
BLAKE2b-256 18b0df3e72f058a5571d8f3912eefbb10d2d9d6aa3651bc1c33e54c5720d9666

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.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/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.1-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2abaa9f0d83bd0b26f6d0d1fc4b97d73bde3ceac36ab857f70d3cabcf31c5c79
MD5 8ff205ac908a413d91d4d30d82514786
BLAKE2b-256 eb99d1f6ec17569287cb06c67f1c0206f2ed6b9b2d3d6219e02056b2e582849e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.1-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.1-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7cbeac9bbe6a4a7fce4a89c892c249135dd9f5f5219ede157174c34a456188f0
MD5 89aae1772db0e85684951ffcda8138cc
BLAKE2b-256 7b598b9d39293da1dce16cb05f12d51bfa845200ab0266a3ecfa1805d4da1d5a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.1-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.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 52ec563da45d06319224ebbda53501d25594de64ee1b2786e119ba4a2f1ce40c
MD5 9af096be373a3d9afc15962cc54a73f6
BLAKE2b-256 60b039d8e9669b5bca9860c0d59a9c6a30d3f9e67c714784b9f4959dd659b7da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.1-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.1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1056b558acfd575d774644826df449e1402a03e456a3192fafb6b06d1069bf80
MD5 03a2b0923309647c3e4531c6a72b47f7
BLAKE2b-256 2eb2744275629ddb4b3b4471d95031a2a943329da547a2a981b13435cec52156

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.1-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.1-cp35-cp35m-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 f241116d4bf1a8037ff87f16914b606390824e50902bdbfa2262e855fbf07fe5
MD5 0496604654b5eeb9c6684d0ffd048123
BLAKE2b-256 e54226c9b1d6bd886cbc78abae1cabf0770531b19fc195f15e0c25b6c360d752

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.1-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.1-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 4dc7295dc9673f7af22c1e38c2a2c24ecbd6773a4c5ed5a46ed38ad4dcf2bf6c
MD5 3fce42c932d0a52a0229e21491abb17c
BLAKE2b-256 0877c9f5a5b2fa8ebc544bf7f088bf03787e61b49ea2fe3c44344e69adb26089

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.1-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.1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 24d4c2c5e540e666c52225953d6813afc8ccf9bf46db6a72edd4e8d606656248
MD5 4427ce8e63589c7379225f00d5593f53
BLAKE2b-256 464327d993a138989c7c7e758836780a92dab37dc71ecd1de57fc0ae2cc97727

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.1-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.1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3c5204e05e18268dd6a1099ca6c106fd9d00bcae1e37d5a5186094c55044c941
MD5 37f08b45245678af40db9725cad036b1
BLAKE2b-256 22e58b2b27b44dff3ba919242e3390878e5638df20dfdd5b797a757a472ff505

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.1-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.1-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 3e75643d21db7d68acd541d3fec66faaa8061d12b511e101b529ff12a276bb9b
MD5 e7fd5d486e6ebcb3d26825a0259cf621
BLAKE2b-256 41940dbf3081f4047bb03d4f3b6c668a86be434739e5e1c75c96a3af1b3198a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.1-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.1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 8a89190de1985a54ef311650cf9687ffb81de038973fd32e452636ddae36b29f
MD5 4063bf675a314e5f0bba402f90b1a53f
BLAKE2b-256 ebbdd0afe0f50ac104353d3da830ab0c27d473f73d4eaf894f2b4dfebca9d975

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.1-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.1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 9a18299827a70be0507f98a65393b1c7f6c004fe2ca995fe23ffac534dd187a7
MD5 4d52441f144fa4c1a2fc31b5f7068ebc
BLAKE2b-256 4812e0eecf9dc054caf9839a75e1888cf02a425a3f65000d5aa83b3b819a6580

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.1-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.1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f6efa62ca1fe02cd34ec35f53446f04a15fe2c886a4e825f5679936a573d2cbf
MD5 c9e30b3afed30ff8c2bad518833f0b4e
BLAKE2b-256 4f05dafc369e365872f8e4f52d4e0f80092bdb20c55d0bfb2c4b183c7890383e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.1-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.1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c18739fecb90760b183bfcb4da1cf2c6bf57e38f7baa2c131d5f67d9a4c8365d
MD5 75214145aee64be802edc95ce6054e0d
BLAKE2b-256 7d13e3460c8036565adefc2f9b660109f6038360a3ccdc73bc3c61d1ad9a7418

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.36.1-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.1-cp27-cp27m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 e3a83c5db16f95daac1d96cf3c9018d765579b5a29bb336758d793028e729921
MD5 eea7dc2868104856225f1d7c751dc454
BLAKE2b-256 d27e97e5de80b7a1ac0224811d0979efbeb87d6cbad3e06eb5c34a6ebb889d11

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