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

Uploaded Source

Built Distributions

grpcio-1.33.2-cp39-cp39-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.9 Windows x86-64

grpcio-1.33.2-cp39-cp39-win32.whl (2.4 MB view details)

Uploaded CPython 3.9 Windows x86

grpcio-1.33.2-cp39-cp39-manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.9

grpcio-1.33.2-cp39-cp39-manylinux2014_i686.whl (3.9 MB view details)

Uploaded CPython 3.9

grpcio-1.33.2-cp39-cp39-manylinux2010_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

grpcio-1.33.2-cp39-cp39-manylinux2010_i686.whl (3.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

grpcio-1.33.2-cp39-cp39-macosx_10_9_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

grpcio-1.33.2-cp38-cp38-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.8 Windows x86-64

grpcio-1.33.2-cp38-cp38-win32.whl (2.2 MB view details)

Uploaded CPython 3.8 Windows x86

grpcio-1.33.2-cp38-cp38-manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.8

grpcio-1.33.2-cp38-cp38-manylinux2014_i686.whl (3.9 MB view details)

Uploaded CPython 3.8

grpcio-1.33.2-cp38-cp38-manylinux2010_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

grpcio-1.33.2-cp38-cp38-manylinux2010_i686.whl (3.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

grpcio-1.33.2-cp38-cp38-macosx_10_9_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

grpcio-1.33.2-cp37-cp37m-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.7m Windows x86-64

grpcio-1.33.2-cp37-cp37m-win32.whl (2.1 MB view details)

Uploaded CPython 3.7m Windows x86

grpcio-1.33.2-cp37-cp37m-manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.7m

grpcio-1.33.2-cp37-cp37m-manylinux2014_i686.whl (3.9 MB view details)

Uploaded CPython 3.7m

grpcio-1.33.2-cp37-cp37m-manylinux2010_x86_64.whl (3.7 MB view details)

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

grpcio-1.33.2-cp37-cp37m-manylinux2010_i686.whl (3.7 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

grpcio-1.33.2-cp37-cp37m-macosx_10_9_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

grpcio-1.33.2-cp36-cp36m-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.6m Windows x86-64

grpcio-1.33.2-cp36-cp36m-win32.whl (2.2 MB view details)

Uploaded CPython 3.6m Windows x86

grpcio-1.33.2-cp36-cp36m-manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.6m

grpcio-1.33.2-cp36-cp36m-manylinux2014_i686.whl (3.9 MB view details)

Uploaded CPython 3.6m

grpcio-1.33.2-cp36-cp36m-manylinux2010_x86_64.whl (3.7 MB view details)

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

grpcio-1.33.2-cp36-cp36m-manylinux2010_i686.whl (3.7 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

grpcio-1.33.2-cp36-cp36m-macosx_10_9_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

grpcio-1.33.2-cp36-cp36m-linux_armv7l.whl (28.9 MB view details)

Uploaded CPython 3.6m

grpcio-1.33.2-cp35-cp35m-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.5m Windows x86-64

grpcio-1.33.2-cp35-cp35m-win32.whl (2.2 MB view details)

Uploaded CPython 3.5m Windows x86

grpcio-1.33.2-cp35-cp35m-manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.5m

grpcio-1.33.2-cp35-cp35m-manylinux2014_i686.whl (3.8 MB view details)

Uploaded CPython 3.5m

grpcio-1.33.2-cp35-cp35m-manylinux2010_x86_64.whl (3.7 MB view details)

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

grpcio-1.33.2-cp35-cp35m-manylinux2010_i686.whl (3.7 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

grpcio-1.33.2-cp35-cp35m-macosx_10_7_intel.whl (6.1 MB view details)

Uploaded CPython 3.5m macOS 10.7+ intel

grpcio-1.33.2-cp35-cp35m-linux_armv7l.whl (28.8 MB view details)

Uploaded CPython 3.5m

grpcio-1.33.2-cp27-cp27mu-manylinux2010_x86_64.whl (3.7 MB view details)

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

grpcio-1.33.2-cp27-cp27mu-manylinux2010_i686.whl (3.7 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

grpcio-1.33.2-cp27-cp27mu-linux_armv7l.whl (28.5 MB view details)

Uploaded CPython 2.7mu

grpcio-1.33.2-cp27-cp27m-win_amd64.whl (2.8 MB view details)

Uploaded CPython 2.7m Windows x86-64

grpcio-1.33.2-cp27-cp27m-win32.whl (2.9 MB view details)

Uploaded CPython 2.7m Windows x86

grpcio-1.33.2-cp27-cp27m-manylinux2010_x86_64.whl (3.7 MB view details)

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

grpcio-1.33.2-cp27-cp27m-manylinux2010_i686.whl (3.7 MB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

grpcio-1.33.2-cp27-cp27m-macosx_10_9_x86_64.whl (3.3 MB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: grpcio-1.33.2.tar.gz
  • Upload date:
  • Size: 20.9 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.33.2.tar.gz
Algorithm Hash digest
SHA256 21265511880056d19ce4f809ce3fbe2a3fa98ec1fc7167dbdf30a80d3276202e
MD5 46e703c47175361c824b30eb00afc829
BLAKE2b-256 cc1e5d65ae830536fdb67f10f4bcedca6eb59190ad60d20d796ef3ccdfda4797

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.33.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18

File hashes

Hashes for grpcio-1.33.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 89add4f4cda9546f61cb8a6988bc5b22101dd8ca4af610dff6f28105d1f78695
MD5 6445957b5dec670584cc96eab534cc9f
BLAKE2b-256 ba3188ba21e2324f1dbed49f472de20327253b2874f999d353d0dadad2dbfe62

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.33.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18

File hashes

Hashes for grpcio-1.33.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 dd47fac2878f6102efa211461eb6fa0a6dd7b4899cd1ade6cdcb9fa9748363eb
MD5 2f41d9ae4c79e344fdb70d00bb46b243
BLAKE2b-256 a026eeb79305d6aef09a604a473ee8676813b2bd6b8438cee1e8960afd5e7301

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.33.2-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 3.8 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.33.2-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eff55d318a114742ed2a06972f5daacfe3d5ad0c0c0d9146bcaf10acb427e6be
MD5 f48ac75662e20de3f1a84736972ae31e
BLAKE2b-256 542cbc42bda7c699f598581a006c0381d0f2c25dc90c9fc10c09c5602470ed96

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.33.2-cp39-cp39-manylinux2014_i686.whl
  • Upload date:
  • Size: 3.9 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.33.2-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2d5124284f9d29e4f06f674a12ebeb23fc16ce0f96f78a80a6036930642ae5ab
MD5 c2e6eca1f034a3c5aee907b1bf8c6a0c
BLAKE2b-256 7abe6812b3125ab91c7be289e1f3630f348dbf73e02bb8c06d8706d51a9b4a56

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.33.2-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.7 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.33.2-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7f727b8b6d9f92fcab19dbc62ec956d8352c6767b97b8ab18754b2dfa84d784f
MD5 e99f8164119a23c26326a98a28af83cd
BLAKE2b-256 76c672edf8eeb2efcaf9fd01efbc5e6383e15fada8fa41388559069cde4b4f96

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.33.2-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.7 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.33.2-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 62ce7e86f11e8c4ff772e63c282fb5a7904274258be0034adf37aa679cf96ba0
MD5 9ca9793a5c7633e7ff699c225557991c
BLAKE2b-256 05c8ac8a917719f7a1e25841f6dd9bcee4b10a42ac86d7c2e8d4137be7b77f75

See more details on using hashes here.

File details

Details for the file grpcio-1.33.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio-1.33.2-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio-1.33.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 56e2a985efdba8e2282e856470b684e83a3cadd920f04fcd360b4b826ced0dd3
MD5 f1de1f4c1a4eec65fada128823e98e3a
BLAKE2b-256 807ed57e0aa28787856632a117bd3e2a691f0bfa0a47d08a4c68fca802e613e8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.33.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 2.7 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.33.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 08b6a58c8a83e71af5650f8f879fe14b7b84dce0c4969f3817b42c72989dacf0
MD5 4ab9edbb1cc3c947fc16f08bf916a9f8
BLAKE2b-256 f38d4c90a6b749b76f21241e4b169147b32b8cc10e5ec3dc0500e6d756c71cf8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.33.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 2.2 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.33.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 143b4fe72c01000fc0667bf62ace402a6518939b3511b3c2bec04d44b1d7591c
MD5 4becc0271026c7d2f4f8d0818c27d4d7
BLAKE2b-256 d2fcc854c43f1ee35d0d1ee9abd1d391e9d9e463dc69d17277bc26f29123c8ad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.33.2-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 3.8 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.33.2-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa78bd55ec652d4a88ba254c8dae623c9992e2ce647bd17ba1a37ca2b7b42222
MD5 426cc64af6505afea8ca1662ef05eb7c
BLAKE2b-256 88909729e1b0642c33b5fb8a60d09035b486a53cf06b3e412d2e8c1c19aeadbb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.33.2-cp38-cp38-manylinux2014_i686.whl
  • Upload date:
  • Size: 3.9 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.33.2-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8cf67b8493bff50fa12b4bc30ab40ce1f1f216eb54145962b525852959b0ab3d
MD5 e4793c7a574f8e5c0fe44cbe5fb69de6
BLAKE2b-256 d9eb7be06cbd519df1500bfa79bc84bd7cfb5f95152f3caee19c4664a1f89f72

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.33.2-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.7 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.33.2-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 52143467237bfa77331ed1979dc3e203a1c12511ee37b3ddd9ff41b05804fb10
MD5 4dc3173c54d0c206a32a5851f7dfd783
BLAKE2b-256 a451dc13257f9915923879b2e6c510d83bba1a893d99e72db66774d933843a1b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.33.2-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio-1.33.2-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0cebba3907441d5c620f7b491a780ed155140fbd590da0886ecfb1df6ad947b9
MD5 9a05e5415763e4a0cd4f764623f9b24a
BLAKE2b-256 f3c144d2c3e6d75a56c73f9d4279bf4cba12399733c2d42717aa54238156c453

See more details on using hashes here.

File details

Details for the file grpcio-1.33.2-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

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

File hashes

Hashes for grpcio-1.33.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 85e56ab125b35b1373205b3802f58119e70ffedfe0d7e2821999126058f7c44f
MD5 3dd51ddcfa27d2d563483c2e2f6508ec
BLAKE2b-256 fb4d4b6146ed211a3211231b1253cfeb58818875b5b57a4622602d1b87e16f73

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.33.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 2.5 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.33.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 7c1ea6ea6daa82031af6eb5b7d1ab56b1193840389ea7cf46d80e98636f8aff5
MD5 e26deb993aa1baa764de9529d7c225a1
BLAKE2b-256 edf436f90a2091ff9807fc5c85763ffdc717e81deb771acf30173f774711d5db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.33.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 2.1 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.33.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 bf7de9e847d2d14a0efcd48b290ee181fdbffb2ae54dfa2ec2a935a093730bac
MD5 4e3c3366212f0666100b0c3320bcee0f
BLAKE2b-256 55f8a6a1a118494a546f40041725e0c9fac4c40324f13636d9d019ef7e5423f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.33.2-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 3.8 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.33.2-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d386630af995fd4de225d550b6806507ca09f5a650f227fddb29299335cda55e
MD5 0d5ab8b1748d76ea1983f24507bd77c4
BLAKE2b-256 7a46d08d8a5d0e0449f541fe9e7a226854019a41a4fa41fd14332e55b0e4394f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.33.2-cp37-cp37m-manylinux2014_i686.whl
  • Upload date:
  • Size: 3.9 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.33.2-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7fda62846ef8d86caf06bd1ecfddcae2c7e59479a4ee28808120e170064d36cc
MD5 c68d54f70095b837a6e1d83f39f4bc0f
BLAKE2b-256 14a441caf4cc2673e79b96d697908e1178a5a074d5cff6fd2b400fef162fb205

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.33.2-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.7 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.33.2-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c89510381cbf8c8317e14e747a8b53988ad226f0ed240824064a9297b65f921d
MD5 42d3b82526de53f249dd93af15bded18
BLAKE2b-256 f2f6659da081a7c7c8f0b78c18c389327582f1c93d58c2f6ecf83e60afb4e340

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.33.2-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.7 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.33.2-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 592656b10528aa327058d2007f7ab175dc9eb3754b289e24cac36e09129a2f6b
MD5 a61bc2e8833a5b50687c88d1a8759481
BLAKE2b-256 9014fc498a118799eac7a462ed151831070ebf56fc6f0d220fd320870b17a813

See more details on using hashes here.

File details

Details for the file grpcio-1.33.2-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio-1.33.2-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio-1.33.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 02a4a637a774382d6ac8e65c0a7af4f7f4b9704c980a0a9f4f7bbc1e97c5b733
MD5 acc21e4c956e64d0b956ea3adfc1ee4c
BLAKE2b-256 c829e6aea115d1baaf9a11b820c0a1a49086bf9e7e94e6632c20361b7a4bc7c2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.33.2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 2.7 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.33.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 b581ddb8df619402c377c81f186ad7f5e2726ad9f8d57047144b352f83f37522
MD5 175b2701d0b8b300acb5b30f2e88fb99
BLAKE2b-256 1fa7ac7e1236b0a845ea7e9009c2ea404a602bfac2a04d9d8f403d4d83c6a25f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.33.2-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 2.2 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.33.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 4bb771c4c2411196b778871b519c7e12e87f3fa72b0517b22f952c64ead07958
MD5 8a5757aab949bec23cd6570bda08d98d
BLAKE2b-256 8afdabcaba3f6c63eb900cd6c175e3350545f07b9c7969469cddc2d841912e14

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.33.2-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 3.8 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.33.2-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a8c84db387907e8d800c383e4c92f39996343adedf635ae5206a684f94df8311
MD5 064ff51b675a5daf3270605b6aa1f931
BLAKE2b-256 06b14992fae78dd6f32c8a2275ea1a2cbc4bfd882fb62076bde0af33124055e5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.33.2-cp36-cp36m-manylinux2014_i686.whl
  • Upload date:
  • Size: 3.9 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.33.2-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 289671cfe441069f617bf23c41b1fa07053a31ff64de918d1016ac73adda2f73
MD5 1a8200acad668fda8f7fe6e9376f2ad8
BLAKE2b-256 9686b56797f12f940ac4d4a1e4448d603346c07b8033e3bb615d81b5e8d7724a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.33.2-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.7 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.33.2-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6a1b5b7e47600edcaeaa42983b1c19e7a5892c6b98bcde32ae2aa509a99e0436
MD5 6715bd6563838a3d802880b2c694d649
BLAKE2b-256 08e662f02a980be9f33ea5effc38e14eba1cec2eb2d6cbcdb42aaf43cd2e9d79

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.33.2-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.7 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.33.2-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7744468ee48be3265db798f27e66e118c324d7831a34fd39d5775bcd5a70a2c4
MD5 f598dc80e6f463c8baabf9f721b8e0e2
BLAKE2b-256 dd57fa4b35c0fd9cda631cc57572dfce2688488e143af045c725179650426f4d

See more details on using hashes here.

File details

Details for the file grpcio-1.33.2-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio-1.33.2-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio-1.33.2-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ffec0b854d2ed6ee98776c7168c778cdd18503642a68d36c00ba0f96d4ccff7c
MD5 f11b5180b78a905c8805aa6d0b401467
BLAKE2b-256 ad1f1401263923afa9c3b89f2997364b60e23b18899716b72be70808526495e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.33.2-cp36-cp36m-linux_armv7l.whl
  • Upload date:
  • Size: 28.9 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.33.2-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 affbb739fde390710190e3540acc9f3e65df25bd192cc0aa554f368288ee0ea2
MD5 f4fe91ac8dab6872b9e6cef06cc164d2
BLAKE2b-256 cfe7ffd8db6727e790ad5dee390b7b6de76f82c67266dfd0ea453b833182d423

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.33.2-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 2.6 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.33.2-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 88f2a102cbc67e91f42b4323cec13348bf6255b25f80426088079872bd4f3c5c
MD5 1357d98d738c00a7da46cbf79c8daa55
BLAKE2b-256 85ebb7ddeac505dd0fa7dadf32cddef3716a30e0aa47f1ead81afbfe663871db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.33.2-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 2.2 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.33.2-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 0aeed3558a0eec0b31700af6072f1c90e8fd5701427849e76bc469554a14b4f5
MD5 07052e7e0c6df779dd62d3b170d9a350
BLAKE2b-256 4e86acd096f25d285c967331965e2e2c5147b9e61fa3f5e28ac954adbafd2cb3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.33.2-cp35-cp35m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 3.8 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.33.2-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7d292dabf7ded9c062357f8207e20e94095a397d487ffd25aa213a2c3dff0ab4
MD5 b4d1fdcec27bf014467180531df6e8e8
BLAKE2b-256 a2b5cddb33969884d4878f6e2b8189fbbdf007b98928b17daac5eaab429eddef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.33.2-cp35-cp35m-manylinux2014_i686.whl
  • Upload date:
  • Size: 3.8 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.33.2-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3ac453387add933b6cfbc67cc8635f91ff9895299130fc612c3c4b904e91d82a
MD5 5fd3536e6e2e0e50a609a6042bca7266
BLAKE2b-256 12a2e93a1d84bd92893c189d88c2e5424be14f40a8a5f354951e767677d8b518

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.33.2-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.7 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.33.2-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4cef3eb2df338abd9b6164427ede961d351c6bf39b4a01448a65f9e795f56575
MD5 7cd8c2860074e909df018a055411b496
BLAKE2b-256 dcdd756df2d7def318227c6320d576c3a8913e6eb278a2753199b850bfed9ddd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.33.2-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.7 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.33.2-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 514b4a6790d6597fc95608f49f2f13fe38329b2058538095f0502b734b98ffd2
MD5 6b932abf3b9ed24d71b3e41ea601435a
BLAKE2b-256 8f9acd50f0586efc5bd2a07931cdd54cd45a121a43282ad25ef1de7ddc02f10b

See more details on using hashes here.

File details

Details for the file grpcio-1.33.2-cp35-cp35m-macosx_10_7_intel.whl.

File metadata

  • Download URL: grpcio-1.33.2-cp35-cp35m-macosx_10_7_intel.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.5m, macOS 10.7+ 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.33.2-cp35-cp35m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 65b06fa2db2edd1b779f9b256e270f7a58d60e40121660d8b5fd6e8b88f122ed
MD5 95751a03e7a540badb19fa9ff00423e8
BLAKE2b-256 b8b8107dd67abde8b832a86513976aa2d185a80458beec460691aea147674815

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.33.2-cp35-cp35m-linux_armv7l.whl
  • Upload date:
  • Size: 28.8 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.33.2-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 f2673c51e8535401c68806d331faba614bcff3ee16373481158a2e74f510b7f6
MD5 100fef672d569f288efcf2a2bcb49e31
BLAKE2b-256 dfac93516e66c48d91e7dbe3295e6cf497138e39299e0fc506a67d4c4f160a1b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.33.2-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.7 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.33.2-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 abaf30d18874310d4439a23a0afb6e4b5709c4266966401de7c4ae345cc810ee
MD5 6533c209bdbfcc2d1ba5a1144cf053b8
BLAKE2b-256 6e55063620f7f782f065b16c242439a9844e03def156c8e842e78bb260b353d5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.33.2-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.7 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.33.2-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 407b4d869ce5c6a20af5b96bb885e3ecaf383e3fb008375919eb26cf8f10d9cd
MD5 899d16b2abaff6bd60d9b1ebd9773573
BLAKE2b-256 f96541d54ff0bff779b6fad35e3e4d3bde11e7d3697870b28f920db849ddeb69

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.33.2-cp27-cp27mu-linux_armv7l.whl
  • Upload date:
  • Size: 28.5 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio-1.33.2-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 d51ddfb3d481a6a3439db09d4b08447fb9f6b60d862ab301238f37bea8f60a6d
MD5 6ff54d06f7249ea3f44746ce6496c71e
BLAKE2b-256 17b55144120c82a5cdf0cdcfa37df11f38642d39b742396f7402ad6c47800e28

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.33.2-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 2.8 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.33.2-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 2f2eabfd514af8945ee415083a0f849eea6cb3af444999453bb6666fadc10f54
MD5 7a9371c0e09b70423b5847c3e73b617c
BLAKE2b-256 72f48b0b0e237f6c05ad774d12c0bff5bac4c9a52bb951e4cb2edd8b34d0b6cb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.33.2-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 2.9 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.33.2-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 703da25278ee7318acb766be1c6d3b67d392920d002b2d0304e7f3431b74f6c1
MD5 f45492f89ffb13aa57a1369e93639422
BLAKE2b-256 78bfbe7f91003785c3506366d0e1b0aaf924b8fe4311666080b8ccb5af633f22

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.33.2-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.7 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.33.2-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b412f43c99ca72769306293ba83811b241d41b62ca8f358e47e0fdaf7b6fbbd7
MD5 e1856ad456ffe94244da2917bb2de5f6
BLAKE2b-256 f44165acdb4e19fd43810db5dccca7e3b44f38726d253d056b9e07d35950e426

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.33.2-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.7 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.33.2-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5b21d3de520a699cb631cfd3a773a57debeb36b131be366bf832153405cc5404
MD5 3315cfa6bfd12a91a913c12d018ce782
BLAKE2b-256 521cf6d5475deab69b88d79231978e1ea720803a351c525f3251f1221946c6f2

See more details on using hashes here.

File details

Details for the file grpcio-1.33.2-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio-1.33.2-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio-1.33.2-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c5030be8a60fb18de1fc8d93d130d57e4296c02f229200df814f6578da00429e
MD5 0c27e8645fbcfc698734292bef4b5948
BLAKE2b-256 b1fb67ccf08cc28ec2dc7e4d60c66ff720e0435e0a24c735b89a2ca0ced7a35f

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