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.39.0rc1.tar.gz (21.3 MB view details)

Uploaded Source

Built Distributions

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

grpcio-1.39.0rc1-cp39-cp39-manylinux_2_24_aarch64.whl (38.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.24+ ARM64

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

Uploaded CPython 3.9

grpcio-1.39.0rc1-cp39-cp39-manylinux2010_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.9 macOS 10.10+ x86-64

grpcio-1.39.0rc1-cp39-cp39-linux_armv7l.whl (37.6 MB view details)

Uploaded CPython 3.9

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

grpcio-1.39.0rc1-cp38-cp38-manylinux_2_24_aarch64.whl (38.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.24+ ARM64

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

Uploaded CPython 3.8

grpcio-1.39.0rc1-cp38-cp38-manylinux2010_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8 macOS 10.10+ x86-64

grpcio-1.39.0rc1-cp38-cp38-linux_armv7l.whl (37.9 MB view details)

Uploaded CPython 3.8

grpcio-1.39.0rc1-cp37-cp37m-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.7m Windows x86-64

grpcio-1.39.0rc1-cp37-cp37m-win32.whl (2.7 MB view details)

Uploaded CPython 3.7m Windows x86

grpcio-1.39.0rc1-cp37-cp37m-manylinux_2_24_aarch64.whl (38.5 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.24+ ARM64

grpcio-1.39.0rc1-cp37-cp37m-manylinux2014_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.7m

grpcio-1.39.0rc1-cp37-cp37m-manylinux2014_i686.whl (4.4 MB view details)

Uploaded CPython 3.7m

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

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

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m macOS 10.10+ x86-64

grpcio-1.39.0rc1-cp37-cp37m-linux_armv7l.whl (37.8 MB view details)

Uploaded CPython 3.7m

grpcio-1.39.0rc1-cp36-cp36m-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.6m Windows x86-64

grpcio-1.39.0rc1-cp36-cp36m-win32.whl (2.7 MB view details)

Uploaded CPython 3.6m Windows x86

grpcio-1.39.0rc1-cp36-cp36m-manylinux_2_24_aarch64.whl (38.5 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.24+ ARM64

grpcio-1.39.0rc1-cp36-cp36m-manylinux2014_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.6m

grpcio-1.39.0rc1-cp36-cp36m-manylinux2014_i686.whl (4.4 MB view details)

Uploaded CPython 3.6m

grpcio-1.39.0rc1-cp36-cp36m-manylinux2010_x86_64.whl (4.2 MB view details)

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

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m macOS 10.10+ x86-64

grpcio-1.39.0rc1-cp36-cp36m-linux_armv7l.whl (37.8 MB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

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

grpcio-1.39.0rc1-cp35-cp35m-manylinux2010_i686.whl (4.2 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

grpcio-1.39.0rc1-cp35-cp35m-macosx_10_10_intel.whl (7.0 MB view details)

Uploaded CPython 3.5m macOS 10.10+ intel

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

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

grpcio-1.39.0rc1-cp27-cp27mu-manylinux2010_i686.whl (4.2 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

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

grpcio-1.39.0rc1-cp27-cp27m-manylinux2010_i686.whl (4.2 MB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

grpcio-1.39.0rc1-cp27-cp27m-macosx_10_10_x86_64.whl (3.9 MB view details)

Uploaded CPython 2.7m macOS 10.10+ x86-64

File details

Details for the file grpcio-1.39.0rc1.tar.gz.

File metadata

  • Download URL: grpcio-1.39.0rc1.tar.gz
  • Upload date:
  • Size: 21.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.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.39.0rc1.tar.gz
Algorithm Hash digest
SHA256 16a68ca0c563a37d22d334b1f6d6115c2d94d70c4488e96984d4067300546172
MD5 1a74ff5302526c960eccf90b3d6a26c0
BLAKE2b-256 2baf68b80d57c0461b5ad94290c2247267f9e41bf1446d280c2776a1756a11ff

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-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/3.10.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.39.0rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 51000b6399fd3771033138b3ef234b89bea30bf4cb8eca3e1234c2044bc78561
MD5 a6a9ec20e6de256d9a912ab1c86c56b8
BLAKE2b-256 e4041770f66a1e2379bb7848dd30e1af0786dbc31bd9f2cb2c4055ba480d5d68

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp39-cp39-win32.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-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/3.10.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.39.0rc1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ae71c463069fbda44750401f0f9a01b8cab88a446943c3c02be963f7620afabf
MD5 56cdc70ecb232062855ece8513782271
BLAKE2b-256 aab9edbb268e8afe89e80b94f2c785977b5c86150c0ef38d61120e7d07d77481

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp39-cp39-manylinux_2_24_aarch64.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-cp39-cp39-manylinux_2_24_aarch64.whl
  • Upload date:
  • Size: 38.4 MB
  • Tags: CPython 3.9, manylinux: glibc 2.24+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.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.39.0rc1-cp39-cp39-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 5fdd2a49e7aa4ed3220ed2793b4afd7fc39eca747d4ec107564b39492992c088
MD5 25d4366f9b9b2661e280b01162377cd5
BLAKE2b-256 abe92cee89112f81b82ab318310439af55548d938dc6fcc7e94997c49c6dbde3

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp39-cp39-manylinux2014_x86_64.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-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/3.10.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.39.0rc1-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a15e49ce3129f4dac24ce36deca753d6b793369e6078120368728d1b8b0d28eb
MD5 202bbefba633e8a33f1c391ad244bba0
BLAKE2b-256 7cc8e9be3f912071a9a7bbc2fbab20f576c766cff7a51c054d3aaef696f9a0ff

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp39-cp39-manylinux2014_i686.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-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/3.10.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.39.0rc1-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ffe1af4beddaf94481d883efd38610af37d0e876276795ee9c51bbb10485bf9a
MD5 27bc44672cbbcf00d0ee43ddd8181383
BLAKE2b-256 6532564a763bb66524a60cea43281d69cb5dcfa75641e861ac448b653ad9b218

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.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.39.0rc1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1528f53f54b13072b6fb1c1a3dfc7681f457377e5b6c5f7335644453a27ba580
MD5 ed7df09dcba0be5c16cf924e64287742
BLAKE2b-256 982e1cf3c974ca94651d61e006063afcf00791b38107df3ff8456b18aac1cee4

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-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/3.10.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.39.0rc1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c70310e72a1795afa961dc55b9cf8f0df5b51b1da41b9cc5f05b4c327f2c88ac
MD5 ee9d4a7ae43cec70c8a568469a294118
BLAKE2b-256 d7a5525b0b1c575536a0ffb6bf858056dd351ce7593893d3da58b0508f260f27

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp39-cp39-macosx_10_10_x86_64.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-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/3.10.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.39.0rc1-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 2a38f3bc0fae70d830e6398104ae7eb9ec224afbcf89bcd6139bb3a21971b688
MD5 9d38f1b145a839aa543403e2c20a00b5
BLAKE2b-256 870746f7d3eb3ce35a6fe32d57d93e65abb48dcd9fcf96f0160e7c44a4f53c98

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp39-cp39-linux_armv7l.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-cp39-cp39-linux_armv7l.whl
  • Upload date:
  • Size: 37.6 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.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.39.0rc1-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 e2809bae9aa4bc07d344fdd503dbd559cc7d0772c00308595e478cfe54630b16
MD5 e88a33fefafef150e5c214d05b57cba3
BLAKE2b-256 a45b8625902858e3228c6713ea340bc91cb74552c958ce856638bd495929a54f

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-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/3.10.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.39.0rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 115d6f79a2760c304c79c40e22e2c02bc86503108cfa61bda02162204e0505e9
MD5 90b9ede87bbc4442d0103077d9bccb77
BLAKE2b-256 30d6d172ac88edf27fc96bccb94e63d9efcc0076a97f102bf7dfdf177b4a19ff

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp38-cp38-win32.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-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/3.10.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.39.0rc1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ec0a3a8562d459b4317891cc0fd081d255677cb9735a4f2bbd03d7e276642215
MD5 66c6b592c865f66e9085e6bf0f759b0b
BLAKE2b-256 3959c0030ddc6d4b5ed6bfef740017a81e1f2c39c5bb6006e267daeefd8c4ce8

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp38-cp38-manylinux_2_24_aarch64.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-cp38-cp38-manylinux_2_24_aarch64.whl
  • Upload date:
  • Size: 38.7 MB
  • Tags: CPython 3.8, manylinux: glibc 2.24+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.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.39.0rc1-cp38-cp38-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 727a5ea987546fa645ac2f06f585b4bec167ebecb281416ddcc18d288263e66e
MD5 ce786354b47e4e5d3c2a5b9f0aeb63ad
BLAKE2b-256 19fd7e695eb0c11310b691ce97a66e9ed733dc4717c784a67fcab38563b8acae

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.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.39.0rc1-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 724c05ea398ff7f96344ef4c6302116d4ee92717785be3de1ac7233f76c7ca1c
MD5 d1caecb80926205cb546a3f6612de03f
BLAKE2b-256 1fcd845208f4b284e8f2e407003c52d70a9decd154c5c1e84183fdf3a78a8306

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp38-cp38-manylinux2014_i686.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-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/3.10.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.39.0rc1-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c8e3ce39266ef73219552dca619059bac4a5a1fe71f6ee74778b1be438bd8205
MD5 d85bd7da3bf30f4029cf137dbf7ba1f4
BLAKE2b-256 8087d2c7b2539f8524bf8f433c757fcc21eb455a21c7ddc79f8d158c6a074940

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.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.39.0rc1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ccca41285989f3ded6e9234ba2ada0ad6c32c66ecf4ddf53797167e8ab8a7ed7
MD5 fd5d041669e8dac6eb544550143ef83e
BLAKE2b-256 d1e8086bb647682939dd76423af2735a5b5f10606a298fe6681d4f9d617de49d

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-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/3.10.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.39.0rc1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ac4316630f3671cc27b91df4ce8875d19740862b287b0bb8af2d43a5d95b8549
MD5 15462c103eca2b4c5316038a99c00f3d
BLAKE2b-256 4685824586b0ab354a2fb40781681cba44142e39944e246d5d59af2e75d73775

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp38-cp38-macosx_10_10_x86_64.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-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/3.10.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.39.0rc1-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 7e5f498620c11b6b56134d9a8ca7f3df3d61b7d81d1b9fa3def98865289316dc
MD5 8b45dc5be34740d3ddc67d6eedc8155d
BLAKE2b-256 10a9670b23096146819d11783b212ab24020b80af8c181e4e99e701cca09ef96

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp38-cp38-linux_armv7l.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-cp38-cp38-linux_armv7l.whl
  • Upload date:
  • Size: 37.9 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.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.39.0rc1-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 2d242663a51e90a26a3029e5338744e0a4078c5172fe85c4246fa21836e43e7e
MD5 baa5dd777c1126510827a8638d967da1
BLAKE2b-256 34aa2b00bacf7af8d56f4f07d19c25965759b93b9244eca0ff36557b72b66f9f

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.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.39.0rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 78414bc746e27028a46d6439502fb9f12d47ec47fe262befa830b1a2f9f8c41c
MD5 09d9fe6cdb4b43ae72c79eeb3db29cd0
BLAKE2b-256 29f96c98d59eef5dc219a1f1507330e4a8f03aff124f16d375a4011b0eecf986

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.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.39.0rc1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 b2e1dc12da8bb1608e0b59795637ad958365e948efb02410929aa3bcc4ff6cd9
MD5 3896a4dd5320af8992646a6601f4f801
BLAKE2b-256 c29f36e5c092b0c4746e5884bc9391d69c1b6693ea592299598bfff323b8f509

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp37-cp37m-manylinux_2_24_aarch64.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-cp37-cp37m-manylinux_2_24_aarch64.whl
  • Upload date:
  • Size: 38.5 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.24+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.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.39.0rc1-cp37-cp37m-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 c3d8a90fd1bd10fb1e7d57693cd379c6627350b7cee7f5e8832c82ab871aa2bb
MD5 321646af97e2205fd3afc52a5d3d058a
BLAKE2b-256 37fdbfb7d02a9fefb995c65a0f8707cf1f87c931954d4782ee16c3f1623ef485

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp37-cp37m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.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.39.0rc1-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b18e96374963de878c3a3bb3cea8fb36ac23c5c6b4546fd631d6d2f39daec7b
MD5 8588f9421db5bca40df790a2c65dfde3
BLAKE2b-256 a9acd44b2e8db4d1387597a0beb1c7728c57383292868c2cfa9e08b1652add34

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp37-cp37m-manylinux2014_i686.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-cp37-cp37m-manylinux2014_i686.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.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.39.0rc1-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4a540003a2ca5696e55444123099b726e86af531cee3df51cc42ddd110df1ea0
MD5 e5434c842985e4871ce59af8464169b4
BLAKE2b-256 6e1936e0155a92c88e4e6725d38794817f57eb8d1899af8c6a43b254bc2689e9

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-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/3.10.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.39.0rc1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9c14811076f8d3af92b8d3767aff496abe3c1fc8abb8769796b5166acba92087
MD5 92a5b76274a02a6a07afa30315aa2fc5
BLAKE2b-256 7e6ce4792b97504236df28bc085ad09d203a87e2ae09c00d40127e5f3540765f

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-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/3.10.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.39.0rc1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ed9ffaa45475e1b3e7712ede92cdb0bc37be055b96abac61d52996225e879cbc
MD5 95bc527e8b8a31b3cd93aa88deda5dd3
BLAKE2b-256 81301768c2fe60f3cad106b2140f97e1de2aab40cb5dcdce9ed07689a6259d5c

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp37-cp37m-macosx_10_10_x86_64.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-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/3.10.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.39.0rc1-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 9c17e8a3f2171a52e0e2c6522d4b497b928dbe28129bc49c0977e56fc5d0e9f9
MD5 9124d575a4e21449d31f06953fca2420
BLAKE2b-256 7433934678d394698014bd1fd2caf4ab1da58220cc246b3a618ccef23a6d41a0

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp37-cp37m-linux_armv7l.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-cp37-cp37m-linux_armv7l.whl
  • Upload date:
  • Size: 37.8 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.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.39.0rc1-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 e414fbc28628f311c0bc62b917c191a900218d0bcf80fa64a0d68849c7f48925
MD5 2a3538a7d9174890dc6c3e1441b71bd7
BLAKE2b-256 01cc6ef55f7aadd38a2e53f0fd6fc18b1cd0e2e726c34e1905d7a18f3b4b59ff

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.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.39.0rc1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 b5e3e530e7841fc4ce92483caaa8f8f3a14e0c685143d4c92aba9bc0a2bca84d
MD5 4e159ef0f0b392413de9eff82267ddaa
BLAKE2b-256 0b9822b10a6ac6997bad96ef79c3638ca0c29acdd18eeaa7a951b709740937d7

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.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.39.0rc1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 292ece0b0cdcdd902dc22c89befc871237e4cae675f7ef857739aa0195b75937
MD5 8e6b36951c3d996052b63d39665aae41
BLAKE2b-256 c5e6cdcb574337a0bb24001d8108192651c70a07ed638b5edfb53fce31c3f434

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp36-cp36m-manylinux_2_24_aarch64.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-cp36-cp36m-manylinux_2_24_aarch64.whl
  • Upload date:
  • Size: 38.5 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.24+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.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.39.0rc1-cp36-cp36m-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 5698bfd7843254760e431919ea0615ec869be27bf54117482348811eb2453209
MD5 13390412121d642de3090e9fade047e6
BLAKE2b-256 6ddde2cdd6db83564eaced245132ef4a2b7244119b1fad8f7e5ca6902d975e32

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp36-cp36m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.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.39.0rc1-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ddc5345fad06fa6d721893099ceb94078503450cab9543123631ffa2cf82f267
MD5 36c0936835812824ec7b5d84e4eefb3e
BLAKE2b-256 79b695304079217af8042a2b20aad6f617a220c86db6867d5c0c4067be5df6c7

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp36-cp36m-manylinux2014_i686.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-cp36-cp36m-manylinux2014_i686.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.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.39.0rc1-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 38f0e3d6ab3aba04e6086c155e189718cea12b662b3af5cc9738713410a9aaaa
MD5 b6c3c8dd37afa15d4fc260847c67950a
BLAKE2b-256 381decc3cad991a4129c2dee216b3c336ba5e9cc152873d37c2c911fca8ca181

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.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.39.0rc1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 29c538d84b74cc31266431187802a9fd0f5619576af2cd78a43cad9821b7f6a9
MD5 4598437f4a253e6c14a63a27e472977d
BLAKE2b-256 e2788878d9215649084510921a3c0ed27c4f5b769dc04079cb345a2ff9ccc943

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-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/3.10.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.39.0rc1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1bd3501ca8421e40506b7d5b70f588c12817b7a4671e7b02dad267ee131b040f
MD5 7aed40dc09ca98b6ef32c4c06eaad028
BLAKE2b-256 237439b24c9a5be961a18eb7c3a95d46e3ce8915f8e52b99d2a509fb19d49efe

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp36-cp36m-macosx_10_10_x86_64.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-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/3.10.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.39.0rc1-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 b0f55c6766c081b91e163e8f29d14c759245ef898ff32707303500d40571edaf
MD5 b1abca96bcc49566cdee522225daf602
BLAKE2b-256 ee04b41db690c723af2a8dac2f315e5cbbe857b11fb7d10190ae07f24628099a

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp36-cp36m-linux_armv7l.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-cp36-cp36m-linux_armv7l.whl
  • Upload date:
  • Size: 37.8 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.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.39.0rc1-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 40251aa14d23448a0065f11761f8a776aca108eae9be46cd70b326057e38ee0a
MD5 da8bcec46f5beeff841a09720803a7c1
BLAKE2b-256 a845c9271b8a612e6ee6b9e6373d34613d7d88e561ddf35dba39264e73d37364

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-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/3.10.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.39.0rc1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 4a5a5b2ca80f458d6334487a9fe267a345cff5d089eee909c4cff60f13ac0283
MD5 90883cecf4f3d6e1eec979295aa83dc8
BLAKE2b-256 e89e83b3df9cf859a8819c49051ba7012bf7a119bb6c919e5989ee201861b93d

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp35-cp35m-win32.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-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/3.10.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.39.0rc1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 92857497b197b5ce7e9309e89c52bc2ddcb834f8382c50e148b6a6e09b3adb19
MD5 70348376b9afaa15d044487916a6930f
BLAKE2b-256 d9b3d198a8b4e15711051893494da2a946a40099828bb79c292c346b96d2bda4

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp35-cp35m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-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/3.10.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.39.0rc1-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d269786964699dbde9a9683bf82d0f858a1d337cd95202745a7841750f08117c
MD5 a9aa15a897aafb0038779cf356e956de
BLAKE2b-256 59268ee245578c4373a91fe6c7018f4a399a0c9f366d65c412d079dcee704f02

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp35-cp35m-manylinux2014_i686.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-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/3.10.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.39.0rc1-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 33ea662d3206e3ce14f672b7824a2acd971ede7c34cd8b2178cd22c099bb5e3e
MD5 c8d045a128db3e1cf7cef4d521ace44d
BLAKE2b-256 c371a10f576d2d5d90755cbb90344417c2ccc18cebf13d30c34dc6ccfab4b07f

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-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/3.10.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.39.0rc1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f186d5cea9f8ba9987f405b88485913e03368533396d273275f998774fa04e0c
MD5 a5a4d66dcfdb855e9c12bca59a291751
BLAKE2b-256 c2c6aad82c44589096aba2db0e43b317a7eda643dc20f72c1a6424e2d4c8abf9

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.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.39.0rc1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6fe74e781c35b60f4ae179574653868ef81a424548ae13050aee3edb7c4f2a5a
MD5 017456548b602f582f49b26beffa668a
BLAKE2b-256 e11f9c635d052dbd1f045a3460a23b7695b345442806061a3e445d01fcd92671

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp35-cp35m-macosx_10_10_intel.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-cp35-cp35m-macosx_10_10_intel.whl
  • Upload date:
  • Size: 7.0 MB
  • Tags: CPython 3.5m, macOS 10.10+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.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.39.0rc1-cp35-cp35m-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 d867e27c26706404a80f3ec7e7ee2d855e53959021ee1061fbda87d8098fcdaf
MD5 94f49865b3fe2cbb32e5835a187282fb
BLAKE2b-256 90209c00fd5952ebf68c3119d2008bf4ea84e31193411041c9eb34b7059300eb

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-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/3.10.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.39.0rc1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4dfe5713115541ef46beb6edad84d363ff72beeda82b4cc2a78f5cb59a5fd537
MD5 6129feddac56102d046c9aea603b07d2
BLAKE2b-256 8771e4f26f8ab620059502be27dd5f9e741061869ae0d613cd43e1d0de2ca897

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp27-cp27mu-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.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.39.0rc1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f102f4e42394ab7b2d274fba071712e0e3a90ac2534cc0938c04246af1faf46f
MD5 eaecb44eebfe12ac87b8863d0fa2bab6
BLAKE2b-256 b827fd7042c09e465516e7c08b02b4cd25a574e02b026d69fbf4484a75d99291

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-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/3.10.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.39.0rc1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 70dbd6309cc007259a22dd5cd5c25a40400a6ca2e018e6dc24e3d903f330e7f4
MD5 5a34f219f480aad234647cca91146bc1
BLAKE2b-256 97eec0866dac839f72839ec2e129fc15282899c1eed88d61a404d681a319a2a1

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp27-cp27m-win32.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-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/3.10.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.39.0rc1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 a2b6a5c19d67e830c6b67849dee96333107f2cda9a3b055580bc5d969c1c9ebd
MD5 c988796f5e4617593a74650c7dd87890
BLAKE2b-256 c1a6d88366525a2bdf3f9bb8f0846067c1f5d4e2e0b82607586dfdcb2574241e

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-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/3.10.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.39.0rc1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 76c50c36242e8779b3beb584a0a9702062fa1269b27c991dfd3c2050af584754
MD5 0fd8e46b7cf7052a9f8ef21f0563047b
BLAKE2b-256 d4d7f13b6d812d8b698fbed061d9f8080a8ab47a3087adafb7a1023250ec0b36

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp27-cp27m-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.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.39.0rc1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 43908ac892efedb2fa72fb1229ed178131b107f163d756ce655518adab43c590
MD5 af3a4bd8229cacbc186967d902d68e19
BLAKE2b-256 824e1ce388ebde18926b1289509aea9ace06a96f3bfe734250ab07f1f7b06b01

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.39.0rc1-cp27-cp27m-macosx_10_10_x86_64.whl.

File metadata

  • Download URL: grpcio-1.39.0rc1-cp27-cp27m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 2.7m, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.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.39.0rc1-cp27-cp27m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 2f348584178b966d55b6592a8e202a529842e7c0f1d0a7134da5d3b4aeb232d9
MD5 cd6c8857f55bfb04cca4dc0cd3f3ebb3
BLAKE2b-256 9c1ce950923393d1af486ed6a5764814105d3af9a74f32626ccd3c79a6aa84b6

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page