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

Uploaded Source

Built Distributions

grpcio-1.38.0-cp39-cp39-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.9 Windows x86-64

grpcio-1.38.0-cp39-cp39-win32.whl (2.7 MB view details)

Uploaded CPython 3.9 Windows x86

grpcio-1.38.0-cp39-cp39-manylinux2014_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.9

grpcio-1.38.0-cp39-cp39-manylinux2014_i686.whl (4.4 MB view details)

Uploaded CPython 3.9

grpcio-1.38.0-cp39-cp39-manylinux2014_aarch64.whl (39.0 MB view details)

Uploaded CPython 3.9

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

grpcio-1.38.0-cp39-cp39-manylinux2010_i686.whl (4.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.9 macOS 10.10+ x86-64

grpcio-1.38.0-cp39-cp39-linux_armv7l.whl (38.2 MB view details)

Uploaded CPython 3.9

grpcio-1.38.0-cp38-cp38-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.8 Windows x86-64

grpcio-1.38.0-cp38-cp38-win32.whl (2.7 MB view details)

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8

grpcio-1.38.0-cp38-cp38-manylinux2014_i686.whl (4.4 MB view details)

Uploaded CPython 3.8

grpcio-1.38.0-cp38-cp38-manylinux2014_aarch64.whl (39.3 MB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

grpcio-1.38.0-cp38-cp38-manylinux2010_i686.whl (4.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8 macOS 10.10+ x86-64

grpcio-1.38.0-cp38-cp38-linux_armv7l.whl (38.5 MB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

grpcio-1.38.0-cp37-cp37m-manylinux2014_aarch64.whl (39.1 MB view details)

Uploaded CPython 3.7m

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

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

grpcio-1.38.0-cp37-cp37m-manylinux2010_i686.whl (4.2 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m macOS 10.10+ x86-64

grpcio-1.38.0-cp37-cp37m-linux_armv7l.whl (38.3 MB view details)

Uploaded CPython 3.7m

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

grpcio-1.38.0-cp36-cp36m-manylinux2014_aarch64.whl (39.1 MB view details)

Uploaded CPython 3.6m

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

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

grpcio-1.38.0-cp36-cp36m-manylinux2010_i686.whl (4.2 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

grpcio-1.38.0-cp36-cp36m-macosx_10_10_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.6m macOS 10.10+ x86-64

grpcio-1.38.0-cp36-cp36m-linux_armv7l.whl (38.3 MB view details)

Uploaded CPython 3.6m

grpcio-1.38.0-cp35-cp35m-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

grpcio-1.38.0-cp35-cp35m-manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.5m

grpcio-1.38.0-cp35-cp35m-manylinux2014_i686.whl (4.3 MB view details)

Uploaded CPython 3.5m

grpcio-1.38.0-cp35-cp35m-manylinux2010_x86_64.whl (4.1 MB view details)

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

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

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m macOS 10.10+ intel

grpcio-1.38.0-cp27-cp27mu-manylinux2010_x86_64.whl (4.1 MB view details)

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

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

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

grpcio-1.38.0-cp27-cp27m-win_amd64.whl (3.2 MB view details)

Uploaded CPython 2.7m Windows x86-64

grpcio-1.38.0-cp27-cp27m-win32.whl (3.3 MB view details)

Uploaded CPython 2.7m Windows x86

grpcio-1.38.0-cp27-cp27m-manylinux2010_x86_64.whl (4.1 MB view details)

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

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

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m macOS 10.10+ x86-64

File details

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

File metadata

  • Download URL: grpcio-1.38.0.tar.gz
  • Upload date:
  • Size: 21.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0.tar.gz
Algorithm Hash digest
SHA256 abbf9c8c3df4d5233d5888c6cfa85c1bb68a6923749bd4dd1abc6e1e93986f17
MD5 4e0b633626d3d6c62b8b49135826de9c
BLAKE2b-256 8c347dafc9052bd9b2b41c5a8912aeeca01e179d16de17e9c275633d4b807330

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6824567e2372dde1bd70214427d23b709d09f1a02a552133d1e0f504b616c84e
MD5 4c42e3ab2e08316436388bd62e30c08d
BLAKE2b-256 e4eaca6d4043b1ae558dffdadbceb41969ac0e3c40a608b04ab1d783693f94d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 752593a275e26ef250dc4d93a6f7917dd9986396b41eabcc114b0e0315ec1bf6
MD5 567f94fafac1d1e463d09c34b7f6021c
BLAKE2b-256 1315358ddcfe605339c081d7d272a7e9fc97e9cb67aa99df8de2ed0b81c144c0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b86a1b0654804b5f2248d9262c77a9d5f19882481fc21df53eb2823d0875b86d
MD5 7ae3af64328b0415b58e3f3bc4d99892
BLAKE2b-256 7e2a6fdcab8087bb46fa2e9c2cc814c00ad1715d0f402e4dd997770ea70cddeb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp39-cp39-manylinux2014_i686.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 25028420d004fe33d64015f5d4d97207c53530acdb493310e217fac76dcd2513
MD5 a243422f57d3f6da8d0923dd16fe1964
BLAKE2b-256 88bcc02d2db300487175083423562d14b8fc4f12fbe5487a34b479e1fe956831

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 39.0 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cd220606259f8aa2403bc0f4a4483bae5e36be879364ca3e256f0304ac44f575
MD5 32fda03f9bf5e49a8ec3e93809ecc97a
BLAKE2b-256 34be497c73af88a5fdbf8421c9f9770cbfd1dcb8e3c912d95a38889dbb29929a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6461d69a8ae20e7abce4c6d9cc2603e9f16f4d6b64865eddd0e664127349c04d
MD5 05c1496aab769ccd197e92c97ad81c92
BLAKE2b-256 f842c0a97553d87a199c06765b550c5470a1e6767f5dc74a622b6b247cb4d681

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1e88a8d5d961df958362f61b1b79ad3981a8b051f99224717b09308546298902
MD5 1cf348f0d7e74e7bf816122edc3c6a4c
BLAKE2b-256 e69840f9becdb84220f90c312ce7789e3bbf1e2d4e3d1e5031e9e173efca1fc3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp39-cp39-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.9, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 f9b3678920017842a1b576de3524ecf8f6a2bf4b39f86fb25b870693141e0584
MD5 a1fbf0b32450ef16fa7e2075d3ba2f1b
BLAKE2b-256 01b4fa4cad84cb564d03f27138319fa0a256aed58d5ec36d204fc3e1638a0cb1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp39-cp39-linux_armv7l.whl
  • Upload date:
  • Size: 38.2 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 8c4f39ad529fb4a33cd6e58d1d860c3b583902208547614b4b5b75fc306f13f6
MD5 996dad7366a77aa0a358c8cc0dd01a16
BLAKE2b-256 d5eeff3952bbfb615bb2e87e5555a70ba963ed2d7c821eebadc74793080c9034

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1d212af1008bdbfd4b8a287e17a8e63e14d72ac450475307452f20c1bbb6bae4
MD5 fae8dae1aa0c32d7c0bdb9eda1d0cee3
BLAKE2b-256 347e5d3f122f0adc1ab1ab2140174adcbbe09b3df2f61ff9eafa0572c8ac7b75

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 1c11041ecb69d962d49e8a38a35736cdc6fc74230867b5f0ac6138770387a950
MD5 c932f943855a737d0312298d590a2c59
BLAKE2b-256 c8d0edaef413c38042ec6052bf213cfb08798c518a69bd6954a71e9aaf5fbbc4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a8f9fcf5623282e4804595166a4ee1401cf4ccfc16fe84bb69e1eb23ffd836ac
MD5 0466adf5f6275d5777d29c7f0dea3484
BLAKE2b-256 2ca0f217e3e9b9491582f19c091895eb2ffc4733f6e3593bed85c98d7b60157a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp38-cp38-manylinux2014_i686.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cbd2754da81bf5f18454c7808b4afe5b57c6736955a742fb599b32b6353fe99f
MD5 cde7d0ac52a1a21daddb45daf772a61d
BLAKE2b-256 d515f1c9bf863880bfbefe2a671c2114dc7d9d2e0243d267998219501666ec96

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 39.3 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2736b109ec5bd9fcf580bf871b5fd4f136c6ae9728407f344a3c64ad87bb6519
MD5 7811c689c1748231af4a860700d6cc25
BLAKE2b-256 96160674bad06ef89498a3a2cc035385bba1d9cdd8f1398384882bfe858d8fdf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a0d7c88b4cf9748147cd6c16e14569a124b683a3eb5d7787f43eb9d48cf86755
MD5 b9dc68632f626f3267e631273247756e
BLAKE2b-256 e4d73ee86847721bb6c08fae7a4ec4b48d9d9a47a26a718397252467f9be5103

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 277faad1d8d462bd1b986f43a47a2c2fe795b2e0de72c9318e11826d921e665a
MD5 b54ebf5d2a76089d32dab465556abfba
BLAKE2b-256 2c21f658c7a2579ba08b05743a83f3b80a9cfbe03782096927cc25f69cf8100f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp38-cp38-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.8, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 f8dd51b05e7fde843d7a3140b058f02801fbec5784a036d5f6abb374450d4608
MD5 c02643000c15fd6341188f1126dd0a10
BLAKE2b-256 3f5939a27ed6c4d0fd234266c6c8b9ad34c005f5ddf961971d0956e5f2df3b3d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp38-cp38-linux_armv7l.whl
  • Upload date:
  • Size: 38.5 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 897bcd54890e6ec6359063affb35e19a61a58ba37bc61c9e8ac6b464b854233e
MD5 af0706994cd765474541d30760fde142
BLAKE2b-256 cf240cd73565784bc36256a606a44024f937fbbc090ebef08f047a47caa72786

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 be83ca2d24321c8bf6516b9cd1064da15ac3ff3978c6c502643be114e2a54af2
MD5 3c1b5f94375e4db1e9cf3313539ad60f
BLAKE2b-256 6af43004f577c80b8b084662b7860bcd8536d51726a6b0df5ae07c2e1622d4c0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 10a6c62e0cddd456db91f9f04b53a8cccf67d86d7ca814d989423939099c2723
MD5 3b96107af730b95989e0bda3b6876402
BLAKE2b-256 a2b68258324976f1e4e8c19e604a3d05f6f2e5bb2696be22faeefc47ae42abbc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ab78d4c16d7f3924718711689f5e301aec52cfcf38eb4143bed0f74b7c4fd10
MD5 e5090dc107093a5dd5aa30138f5b6b59
BLAKE2b-256 21afecae3a21bed5a92c9d866480553efea18a39f103546108cd60f5ea6a2494

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp37-cp37m-manylinux2014_i686.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 291dcde4139bc25629de6a743cfcc0ca861e289e3547421ecd2273b51d95b8e1
MD5 b224edbc9a2209e7604304d4c9ee97e2
BLAKE2b-256 3e05bbfc9d72f540d104591f5d89f96d14ada35b30c06f5ddc40b05031065e8e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 39.1 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7b74c48b2e41dd506f889a4a9974d40b3eead965b0fd2e0b1d55a9b3c0e3bc6e
MD5 aff00b7720b3876d930eddb086db1827
BLAKE2b-256 b98da8f3406476425ff06a65e92c84f98654447173020228c60575f85aa49fe6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e3072b9ebb573fe1f6757a55b610e4975979d2d58247cbe18ff4385f5aaa81a5
MD5 3570d4b0fe51421cc83fafa18708fcac
BLAKE2b-256 b310cd8bc0d9099ba888b7d7f31454c2be416415cbb0bdc8636f4bfde963ac19

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a4789014f9d9e9ff29551314a004266b1ac90225c8a009dc87947aaf823fd83c
MD5 9a4f76348ceca701ea1758678a77a746
BLAKE2b-256 87a0f90f3d7bffd30bf9d2c1fc3dfed2208eba566d755bd911467996c38f9dc0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp37-cp37m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.7m, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 ac05434a7a7f444b2ddd109d72f87f4704364be159aea42a04bd6ea2ba6e10e4
MD5 3b266c4d572ec0b1974bdca0dea7cd1b
BLAKE2b-256 eae114c2beb40134a7572ca0af730a15120432730acd8680e6369bdeb9df001f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp37-cp37m-linux_armv7l.whl
  • Upload date:
  • Size: 38.3 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 9f1747b81d44daed0649ff10395b58c4f29b03139a628afeb058f3e942ba6893
MD5 b1d115632879909fd84a8597c9a64a29
BLAKE2b-256 aac640a91039e7e4ae921ca093bbf57ecca6ec14d0d5cb23cda329e3e2f373f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 9a2216df1be9fdbc3c1ebd3c5184d1ef4afb387c29224fce00346b9ddec7c7e3
MD5 32e142f0d5fd146a3d1255e341f30e12
BLAKE2b-256 0fbe02c060eb3440eb7eecff098ebbbed36e9c3e70af9f2bb8945460ec058b1a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 f2c4ff0e8c98418c5d55c28ba4ff954e3a5d3c723af5008e8d3ddeae8f0ecb41
MD5 0edea10256ca7cad38649b17a3dacf28
BLAKE2b-256 6ba7fcc4f28c9414e620ac699b3a7d05436cdb001b8893e7cad184d747edb872

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d3566acd87a65a0bc93875125a7064293ab2b6ffb9327333030939681d269f4f
MD5 3dd117492ce94aba361cfb20dbf47245
BLAKE2b-256 0e4bc4e1839cdb3248e1006837e1d427e1843f80f2e6ba69f3af77f00bb51ac4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp36-cp36m-manylinux2014_i686.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b4cd8fb4e3725e8852b1da734904edb3579c76660ae26a72283ac580779e5bf0
MD5 90b67eab91f95d480cc644d3e39a0caf
BLAKE2b-256 caf4e845918c0855bb8be1fb73796f88e22df620a06464d734024d00858de359

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 39.1 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a836f21a1d08d28c8344e149b28729649ff4732c318a59a3628451bbd6c3c9ac
MD5 85dbc899856fa1ca8b667e4a66fee632
BLAKE2b-256 294522cd569956f29f47baa9c2365649840b544627868454b75f6dd3b01a515e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e83ab148911e6c8ae4ec5e1334e6d800c6b84c432b92eb0ebf0808087117cb39
MD5 0c4e860abf76c7b55c13a22eec8994be
BLAKE2b-256 d8e21466a47cc4b931bbb308faaf1bbdbf6c369e9f307bee9f7e9b361144538e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3cacfee78310b5a89769b2fac20b8cd723470130f5b1ba0c960da8db39e74a97
MD5 30f4628fdd99fe2aa7654138910d508f
BLAKE2b-256 639dbd75a748b356bb5bef07d781ab8d639744514eb33a0066bd51b502d0ce7e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp36-cp36m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.6m, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 1d157a2ac6632d31a3ff21f56bbe73420e1d7a21e4fe89d8c7ac792b79c1a589
MD5 3f73e6c92088ccb4cf0b6f4fb6b85f05
BLAKE2b-256 302d2aa969947281c47de10d7160b199c2253abb7b29a193d251381c348982cb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp36-cp36m-linux_armv7l.whl
  • Upload date:
  • Size: 38.3 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 34fb08d46a70750bef6566c9556a16b98e08af6345a3bad6574477eb0b08c3dd
MD5 2fddd2ef189cbdc557264b90a3795a12
BLAKE2b-256 277fec93657ce5a0f34f4f067990e9772cbd5aea0b80550fd47244bef8db4263

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 e72dd202c982a5922c3b846976cae3b699e3fa8d2355d9d5bad119d066cf23ee
MD5 cb85845b9e34295c5bfbb4902b2b9860
BLAKE2b-256 2db66301fc2f542467859d428dd2ff43705c2b6308bed89f0dd4568070fc122a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 2c26cb7566e8942542ff1aee71f10ed35e2f9ee95c2f27179b198af0727fbebb
MD5 78d205ecabbcb1e8ac5cd3b744446b8a
BLAKE2b-256 aef00cee6d4ad2d27c3920149e13c6d2e0d868ee305a4cdd73a3a08c5dc48754

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp35-cp35m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 07abf6b36c138bf247cef7ac0bad9f8ab1c8242f7c1302af23bb8e6877d08163
MD5 fa74ce2a95f380b1573aa23b6dc4a58c
BLAKE2b-256 d3d8bb5c5277bfec11bc8567f699b32f9d62bc6a9bb669c88d7d1494526d1350

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp35-cp35m-manylinux2014_i686.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0247b045feb7b138754c91efcca9ea7f7d2cc9f0bd2cc73f6588c523f38873c3
MD5 7d095ca58b0f5f7c86c4b80558d65a35
BLAKE2b-256 6007b384e83d0ef7fde50b509cc63ad77ba957e01839cd8e5d3b3c73ed102d47

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 32067791bd56a13614399f1994454afea9e2475019fcabc4abd3112f09892005
MD5 9c91c3ee173bcc1e36349c457433349e
BLAKE2b-256 f9b0d8aac6953b7ad3b8f7202ff8c7dcc70d024fcb1401f0864e6d607bbe57b1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4a1dd16ccf76ddc18c1cde900049c04ed996e6c02e0588d88d06396c398e6023
MD5 6d1e6558440a9b80cae549bba660222a
BLAKE2b-256 e6740af2831b0c99479e92a453cc28adb5cc2ce5a7136340cb2bdcb403cc02b6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp35-cp35m-macosx_10_10_intel.whl
  • Upload date:
  • Size: 6.9 MB
  • Tags: CPython 3.5m, macOS 10.10+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp35-cp35m-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 d631304e66c908d5d2d1a3cc9c02d372d2f8bed8c3632902d6f3f77d7ca34ac2
MD5 24cb646c1b7b3e1ab2365db7a0028583
BLAKE2b-256 7f4b0cc9afe48e6568c05a340a90e0424bbe1f2066222fe7b953984268c17e9a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c47e85eae34af5d17d1c2007a1f0b13a0293d4b7a6d8c8ae23761d718293803e
MD5 620c4245edf8c4c6162ea418ee4a00be
BLAKE2b-256 5787a50940327af3bfcd7ffeec70430317e61f5c1720e14903d268f3600901a9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f19bd4b5bcf88ee059f478c4ab46a1607f09835587750294038fbd0120f1a9dc
MD5 d262edd8da06b13a6e47d47b1620048d
BLAKE2b-256 2ad6c7a838d2af207d4a32333246897ca3abc23c7ae863a0279b46878f6c640e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 924552099365ea1dd32237dc161849452cd567d931efc57e8427260d8f0eacdb
MD5 82887dfde4dfc9620a85251184bc57e2
BLAKE2b-256 8d6101bc3df92fa3a9de3f26005669de66954074da23b3c8a7f8b5aa508e89ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 604da72df5bece8844a15990ce0b3f2f8c5243a1333d3dcc02371048bf6f9269
MD5 c05b779ebdd3cf458ef1ab944fa86b04
BLAKE2b-256 c4639ccc9c234e8684da849389201ed408f1c63e26881f02d826af64f616ae2a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7466eef3b57b5ac8c7585251b26b917b093ab015750bf98aab4e0836c39e2a2b
MD5 68afd003f1bb963a82e94632a5e0914a
BLAKE2b-256 b87cd427c404dfe6922770d43a2a6457a8c0be9859a207cf115eda0633b74ebb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f6f6d51c9efbfe56af9eb9eeb4881cad1b869e4c0e2a32c1d345897fd0979ee3
MD5 5ec4f1df48257a73f40456c5d68c37c8
BLAKE2b-256 69780e05ed47c4bab41ea3416f2120061bea605a259ced120d2e712fc3c2c2b5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.38.0-cp27-cp27m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 2.7m, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-1.38.0-cp27-cp27m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 db01eaea57e7a1898c69271e35a84341cf8150cfdec5f0411eddcfb65b5f590e
MD5 e871fe2425fffc3ac6672dd60ff76386
BLAKE2b-256 10c55982a33fbe61ea9e352c2a6fed9b2c12f87943fcb02b0ba3b75f24f2f81b

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