Skip to main content

HTTP/2-based RPC framework

Project description

compat_check_pypi

Package for gRPC Python.

Supported Python Versions

Python >= 3.6

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

Uploaded Source

Built Distributions

grpcio-1.46.1-cp310-cp310-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.10 Windows x86-64

grpcio-1.46.1-cp310-cp310-win32.whl (3.0 MB view details)

Uploaded CPython 3.10 Windows x86

grpcio-1.46.1-cp310-cp310-musllinux_1_1_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

grpcio-1.46.1-cp310-cp310-musllinux_1_1_i686.whl (4.8 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

grpcio-1.46.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

grpcio-1.46.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (4.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

grpcio-1.46.1-cp310-cp310-manylinux_2_17_aarch64.whl (60.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

grpcio-1.46.1-cp310-cp310-macosx_10_10_universal2.whl (4.2 MB view details)

Uploaded CPython 3.10 macOS 10.10+ universal2 (ARM64, x86-64)

grpcio-1.46.1-cp310-cp310-linux_armv7l.whl (67.6 MB view details)

Uploaded CPython 3.10

grpcio-1.46.1-cp39-cp39-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.9 Windows x86-64

grpcio-1.46.1-cp39-cp39-win32.whl (3.0 MB view details)

Uploaded CPython 3.9 Windows x86

grpcio-1.46.1-cp39-cp39-musllinux_1_1_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

grpcio-1.46.1-cp39-cp39-musllinux_1_1_i686.whl (4.8 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

grpcio-1.46.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

grpcio-1.46.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (4.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

grpcio-1.46.1-cp39-cp39-manylinux_2_17_aarch64.whl (60.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

grpcio-1.46.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

grpcio-1.46.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (4.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

grpcio-1.46.1-cp39-cp39-macosx_10_10_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.9 macOS 10.10+ x86-64

grpcio-1.46.1-cp39-cp39-linux_armv7l.whl (67.6 MB view details)

Uploaded CPython 3.9

grpcio-1.46.1-cp38-cp38-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.8 Windows x86-64

grpcio-1.46.1-cp38-cp38-win32.whl (3.0 MB view details)

Uploaded CPython 3.8 Windows x86

grpcio-1.46.1-cp38-cp38-musllinux_1_1_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

grpcio-1.46.1-cp38-cp38-musllinux_1_1_i686.whl (4.8 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

grpcio-1.46.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

grpcio-1.46.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (4.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

grpcio-1.46.1-cp38-cp38-manylinux_2_17_aarch64.whl (60.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

grpcio-1.46.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

grpcio-1.46.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (4.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

grpcio-1.46.1-cp38-cp38-macosx_10_10_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.8 macOS 10.10+ x86-64

grpcio-1.46.1-cp38-cp38-linux_armv7l.whl (67.8 MB view details)

Uploaded CPython 3.8

grpcio-1.46.1-cp37-cp37m-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.7m Windows x86-64

grpcio-1.46.1-cp37-cp37m-win32.whl (2.9 MB view details)

Uploaded CPython 3.7m Windows x86

grpcio-1.46.1-cp37-cp37m-musllinux_1_1_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

grpcio-1.46.1-cp37-cp37m-musllinux_1_1_i686.whl (4.8 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

grpcio-1.46.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

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

grpcio-1.46.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (4.6 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

grpcio-1.46.1-cp37-cp37m-manylinux_2_17_aarch64.whl (60.2 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

grpcio-1.46.1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (4.2 MB view details)

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

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

grpcio-1.46.1-cp37-cp37m-macosx_10_10_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.7m macOS 10.10+ x86-64

grpcio-1.46.1-cp37-cp37m-linux_armv7l.whl (67.4 MB view details)

Uploaded CPython 3.7m

grpcio-1.46.1-cp36-cp36m-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.6m Windows x86-64

grpcio-1.46.1-cp36-cp36m-win32.whl (2.9 MB view details)

Uploaded CPython 3.6m Windows x86

grpcio-1.46.1-cp36-cp36m-musllinux_1_1_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

grpcio-1.46.1-cp36-cp36m-musllinux_1_1_i686.whl (4.8 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

grpcio-1.46.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

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

grpcio-1.46.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (4.6 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

grpcio-1.46.1-cp36-cp36m-manylinux_2_17_aarch64.whl (60.2 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

grpcio-1.46.1-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (4.2 MB view details)

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

grpcio-1.46.1-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl (4.3 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

grpcio-1.46.1-cp36-cp36m-macosx_10_10_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.6m macOS 10.10+ x86-64

grpcio-1.46.1-cp36-cp36m-linux_armv7l.whl (67.4 MB view details)

Uploaded CPython 3.6m

File details

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

File metadata

  • Download URL: grpcio-1.46.1.tar.gz
  • Upload date:
  • Size: 21.8 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.10

File hashes

Hashes for grpcio-1.46.1.tar.gz
Algorithm Hash digest
SHA256 4835b0f5fedbee3a3d6eea48f4e65dffd30b52c078690fa97ddc9fcea1e3b35d
MD5 215d9f2f9654d3faf2b252977ae22c14
BLAKE2b-256 fc658443610398cefb045acdbc6d4f6f33fc8fb2203b21dcf0858724f5a83f3d

See more details on using hashes here.

File details

Details for the file grpcio-1.46.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: grpcio-1.46.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.10, 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.10

File hashes

Hashes for grpcio-1.46.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7c12b79c625eb6a73d808c234254bfbd23fae08a7f64bb78236c61f77f30454a
MD5 3e4d198de9d66017d81e0dd966c9b5cc
BLAKE2b-256 7f45bf03f7ad3d8ba34cece735f9acc2c5b3d3548b3ec094fd9c3854d8a0596e

See more details on using hashes here.

File details

Details for the file grpcio-1.46.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: grpcio-1.46.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.10, 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.10

File hashes

Hashes for grpcio-1.46.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 46eefbb36a062fad859bf56087f1a6782aae2a7e0c6234fb82971290db29a3e2
MD5 5be2980cd4d5fc63e60e35aa4df7f8f7
BLAKE2b-256 398b3f3b66c94de094e619482ab201366cbb7a7bc5ac14355302bedfc4abd94c

See more details on using hashes here.

File details

Details for the file grpcio-1.46.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: grpcio-1.46.1-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 4.7 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ 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.10

File hashes

Hashes for grpcio-1.46.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f4d9e8c8da9ea4bd3d72122e2491bfee798ba1f498abf680a508f78eb49d742b
MD5 b8225ceffb88c87d7fe6407aac05b576
BLAKE2b-256 65a11afb947d99b15c470cd2bdb6fb380d89d062fd02112e4f760d163bc05b6b

See more details on using hashes here.

File details

Details for the file grpcio-1.46.1-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

  • Download URL: grpcio-1.46.1-cp310-cp310-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ 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.10

File hashes

Hashes for grpcio-1.46.1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 58777d1abd8291c9dd98dc236ece82696cd54039daa0b478bb2ad6cb0c8d4b9a
MD5 66aefef7ee75f113486e66863ea287a8
BLAKE2b-256 2b9606e9e77b386d249c0354d456fa6f4409dcb55d0afe5a458ab0b62be5dd38

See more details on using hashes here.

File details

Details for the file grpcio-1.46.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.46.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fe355dd01d2310ddbcdcf903bde451ca4b22cdcc2ea3c36de34997578ee3b1e0
MD5 d2e565d75c6ab8be03c2e7198dd78e95
BLAKE2b-256 93919406acacdbf2ba3c8101ebc297aec650f7e2f973141a534f3088228f9ced

See more details on using hashes here.

File details

Details for the file grpcio-1.46.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.46.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c3b3898087090a03429d14e053af5531075e6db6bdd608fd44fa4eb1021b50f2
MD5 a3a1cee0884e332167f2fec0c485e894
BLAKE2b-256 2c00347f502b68b826fe196ec92323a0bb3c3c9bafbd2ce053c548727a219952

See more details on using hashes here.

File details

Details for the file grpcio-1.46.1-cp310-cp310-manylinux_2_17_aarch64.whl.

File metadata

  • Download URL: grpcio-1.46.1-cp310-cp310-manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 60.4 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ 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.10

File hashes

Hashes for grpcio-1.46.1-cp310-cp310-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 48260059c3204a1fa948233711045b066f09deaa24fb6213e8fb0fc7264832f7
MD5 8cf8bf918bc4cf3009ec4f150c3d3e66
BLAKE2b-256 005526a65664e8efcfa200673c4a93e264d99a498a55efa7e778e973b2bcf3c4

See more details on using hashes here.

File details

Details for the file grpcio-1.46.1-cp310-cp310-macosx_10_10_universal2.whl.

File metadata

  • Download URL: grpcio-1.46.1-cp310-cp310-macosx_10_10_universal2.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.10, macOS 10.10+ universal2 (ARM64, 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.10

File hashes

Hashes for grpcio-1.46.1-cp310-cp310-macosx_10_10_universal2.whl
Algorithm Hash digest
SHA256 09f84962dacfee7137b76818476bcd7fcf11626e3e9c20adae2b0fa9c7fe81c3
MD5 2f3e31bc5a64fcb83665d180cbc6f725
BLAKE2b-256 58c68a714919f27e323bda8f60e7567a1fb12f544a298bf0a91c32c12eb05383

See more details on using hashes here.

File details

Details for the file grpcio-1.46.1-cp310-cp310-linux_armv7l.whl.

File metadata

  • Download URL: grpcio-1.46.1-cp310-cp310-linux_armv7l.whl
  • Upload date:
  • Size: 67.6 MB
  • Tags: CPython 3.10
  • 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.10

File hashes

Hashes for grpcio-1.46.1-cp310-cp310-linux_armv7l.whl
Algorithm Hash digest
SHA256 aeb1e07fab60736583fc17f0bad9ba45b82d4c2099576a936853742e6ff50bd8
MD5 670a49c6698da92891ea22ff044e58db
BLAKE2b-256 6c1592feaca1fac5fe878e1ff933fe4f295e3454b5b2e073c6badf3994e51ae3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 3.5 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.10

File hashes

Hashes for grpcio-1.46.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0815fb60b23d992a732bd32a7cb9cbcdbbb8faef9f4219fc7570537b2ad72428
MD5 8973c63cd8ac8af0532ac68252702b68
BLAKE2b-256 2a0cd58d41178e4db5931e39dad58184588436b7b4a90d3115fadcc6eac47535

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 3.0 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.10

File hashes

Hashes for grpcio-1.46.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 9009bceefe013cbb57663fe3e33b38e695832216b23aa3efb2c81c86b271f0da
MD5 0fded6ad76b678862a86357580ac0290
BLAKE2b-256 eb970f1b102b0866bb178209ee45285022654fc24442efa00c389b16d38b2ffd

See more details on using hashes here.

File details

Details for the file grpcio-1.46.1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: grpcio-1.46.1-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 4.7 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ 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.10

File hashes

Hashes for grpcio-1.46.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8373f35f562a3235a3213a2899da72e7ab2f94e127f88d17e5a9702aa7a7a61d
MD5 83619be75b86468965d19c08ebfe6390
BLAKE2b-256 1bb88abbdfe3e560122e197faa067f716543a03429c4d5e592552f65ebbc7cb3

See more details on using hashes here.

File details

Details for the file grpcio-1.46.1-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

  • Download URL: grpcio-1.46.1-cp39-cp39-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ 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.10

File hashes

Hashes for grpcio-1.46.1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 51c917e8eea1995d540524674406b9658591ae29beab012f79f817757ce218b5
MD5 1cdf62ddb1cb7e6998c8b63434c9f468
BLAKE2b-256 d180a7e5df757f5b003b5840683ffcb022a0b7fb5a92d977aca83ef380d900ef

See more details on using hashes here.

File details

Details for the file grpcio-1.46.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.46.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 72b0cf7240cd26efb589afbcff21ed4f430e8237e6c9ab02f7d7118d9677f278
MD5 896fee6cbfaba339c20f7007ad8ab857
BLAKE2b-256 527ad4d898b1be331174f65129d7a9a44133d39c0d3a9eb5b4ec515758e8cf43

See more details on using hashes here.

File details

Details for the file grpcio-1.46.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.46.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ce35d280b022766121d09901827973c66b31987047e54062f72ea0a8df8cd267
MD5 3bd5cf6cdd70227459b4f0e74f520da1
BLAKE2b-256 4bc23a745c78d77c7ff393f16f54a084a8066cc9a63c095b25fc256236d6b99a

See more details on using hashes here.

File details

Details for the file grpcio-1.46.1-cp39-cp39-manylinux_2_17_aarch64.whl.

File metadata

  • Download URL: grpcio-1.46.1-cp39-cp39-manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 60.4 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ 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.10

File hashes

Hashes for grpcio-1.46.1-cp39-cp39-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 47958e3a8ec64768ef9ab7448bcb1c571d3a8138a90674710af811ef082ae428
MD5 305bfec5f815ca2aff11d6bc2cb26982
BLAKE2b-256 d452cdf05c50cceffa6e00bf68d2b88ebd3d52606de7c425ac10b88f92abff4c

See more details on using hashes here.

File details

Details for the file grpcio-1.46.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.46.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4f51f7534c6fb47edbe3524357c05680af96d93d38f6c98a2560f56bfcc171ec
MD5 57a0ef0e829020878705dd6a22a04d17
BLAKE2b-256 734744a3e5b82ab9df204c90f96dd4d914f19a3b40dc3c9c6e0ddb5807b0ac1d

See more details on using hashes here.

File details

Details for the file grpcio-1.46.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.46.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4b963b5594e1e1eaa657bc1007aa2f4d78e3be0b38a0c8524da68b981c82854f
MD5 9dbb0adf9b02c7cfc0e074ad422fb365
BLAKE2b-256 f00bb0af9cf554701a88a185d202e85716f937565e868c7a0c9e0498c3e3bf8a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.1-cp39-cp39-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 4.4 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.10

File hashes

Hashes for grpcio-1.46.1-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 ec9afc7641a43d37e7f4c8a6464ec14748aa939443f06754331a30e430a73cf5
MD5 d05b6f05463c7d7b2f2c6176599b50c8
BLAKE2b-256 b41143e5e77cc2aaf76cdc24f644b16ce37b276ed5a958bea2a10c81b07b3c2d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.1-cp39-cp39-linux_armv7l.whl
  • Upload date:
  • Size: 67.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.10

File hashes

Hashes for grpcio-1.46.1-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 a968c5572a55ca0acc068c69ffde252bcb0ce79acf857b55a76733eb8e71b2da
MD5 1dd60c4816f80b7e782886ee88e494bb
BLAKE2b-256 6b2a9a6e4fb4f5c3a1136313c14ea74d91b9e114894ec2b662f53b916f241b66

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 3.5 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.10

File hashes

Hashes for grpcio-1.46.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c88bfb74d343c3214a5482530a112a623704549271006cfb3284daf2dcdda620
MD5 087b9b41067097f88ccee14051e24305
BLAKE2b-256 bc5d0f3a18228d65a6e00aa17a4d6ddaae0bbf267c1b6d31ddd50298e57fe06f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 3.0 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.10

File hashes

Hashes for grpcio-1.46.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a481ec9bc02c1be56b9d2eff14b00629f679269a10a952134ad6624ff335daa7
MD5 207f0a6b6213c1892093c5259a70be10
BLAKE2b-256 af06894532213a3fc4c41a772657eb3c5950c79ac68218905513c8021d6917f3

See more details on using hashes here.

File details

Details for the file grpcio-1.46.1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: grpcio-1.46.1-cp38-cp38-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 4.7 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ 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.10

File hashes

Hashes for grpcio-1.46.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8e2d6c4308a143533a8c9b01616d628de22bc2f9da73ff9dd75f92104597c90f
MD5 697bfd655c206dce2f68023edd3ecc42
BLAKE2b-256 5d64ba82616a7df0bfe52e3052ce615f50a2198079719c119ab834077ee9c38f

See more details on using hashes here.

File details

Details for the file grpcio-1.46.1-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

  • Download URL: grpcio-1.46.1-cp38-cp38-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ 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.10

File hashes

Hashes for grpcio-1.46.1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ae8c79aa3d699b7e48f56e4ee6aececf29a7b01e61db408a6d0e3f3d27f93ee4
MD5 23973912de2175eb1f99cc36e3d7a6aa
BLAKE2b-256 04ca55bb59eb835889186aa7cfeff54ed8f5b76e22272470e65d4930ca94409c

See more details on using hashes here.

File details

Details for the file grpcio-1.46.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.46.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 83c0eee24264e715cadef3a4b4cc58b69ec57faa98bf8a49079ceb7345adb767
MD5 1c80647412929d25cca525b806eb13ca
BLAKE2b-256 b4eb5b7f3ce7b4127197b769d9b58cd3bb04273e75e43d018d687b1472594ce4

See more details on using hashes here.

File details

Details for the file grpcio-1.46.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.46.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3e20ad60564e71b7a29894d6d1eebe23c43974d82d2529b37d8f766b3ec3ef1e
MD5 517024747ef3abe6c485ab009f023e14
BLAKE2b-256 293654b1c1a0e1e30b7d23bbb4d762429d16cf5067893ab9182a83c21e2cf5fa

See more details on using hashes here.

File details

Details for the file grpcio-1.46.1-cp38-cp38-manylinux_2_17_aarch64.whl.

File metadata

  • Download URL: grpcio-1.46.1-cp38-cp38-manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 60.7 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ 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.10

File hashes

Hashes for grpcio-1.46.1-cp38-cp38-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 5a67abcf8c646970a48896e23256403397927a4ea0bcf0a0e4bd7c2023f675dd
MD5 75789e374da4c3c1d4b56e2fbb26728a
BLAKE2b-256 816787066030b4f6a0336484667319f18bd72c4f4fbd91dd50580d4a3d40a391

See more details on using hashes here.

File details

Details for the file grpcio-1.46.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.46.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c758fcba514fded6fc0dc0cd8416f2697af0e1a2e7e13a8be49728820dc51371
MD5 bdf8619407791725736df3cbd6b4cedc
BLAKE2b-256 88e4dd895e84b3baaa8826963ad1e8e9a8c83c8c435b602a8c47bca33d5972d6

See more details on using hashes here.

File details

Details for the file grpcio-1.46.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.46.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 09c5b5812fdb50ee5ccd3cb2820bd72706e04f42e58245a3f640370aaef17938
MD5 c7dcda128522fe68ac249b61ca9138fc
BLAKE2b-256 89f7268ac7de1dc027e9f0aa240d50303311904ac173b22edc4261c090073bb4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.1-cp38-cp38-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 4.4 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.10

File hashes

Hashes for grpcio-1.46.1-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 e44313f90365780631597dd59f9a50830a02f038b7e191a44d09a9094683123b
MD5 9c82ee9e368c64aac6ed0506d1c696e7
BLAKE2b-256 3190b08f5321fba58cd8d4cbcfb30e31a6811a7687dbdb7b717311c0436acf76

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.1-cp38-cp38-linux_armv7l.whl
  • Upload date:
  • Size: 67.8 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.10

File hashes

Hashes for grpcio-1.46.1-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 b7f058ba6818cb20dca26ac43c610a2c9846302a34a7f0ac81b0dda0bde15bbf
MD5 05048329d18c42490d19e585c61d1ee5
BLAKE2b-256 65ccba3de4d7ef10e6b2118d950fec34ec070f003211eaf661f6c101ab540353

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 3.5 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.10

File hashes

Hashes for grpcio-1.46.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 9e27d4937763c1b4f360bea7f976ea73ccd444f89279a0de2147c8d65fdbf6b0
MD5 d2e28d3580cc9be726d14adfd2fe3067
BLAKE2b-256 62ec556483e041849b61cd8d55dd016ed72a4c44f784e97cedfe580ea10bad02

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 2.9 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.10

File hashes

Hashes for grpcio-1.46.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 f868103adeb61dd42330c2e85e1c0cccbc9a0b3f53fd84299981c9af99f95da7
MD5 6ad6f8720b5812d5ee9437b0b13293cb
BLAKE2b-256 74af885dae36b7ed71497f50dd3efbff5c8be882b3162443341288fef35b5b7a

See more details on using hashes here.

File details

Details for the file grpcio-1.46.1-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: grpcio-1.46.1-cp37-cp37m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 4.7 MB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ 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.10

File hashes

Hashes for grpcio-1.46.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d8e0778b2e9a92beef973b050102e7698753c57ef59572b59794580a8990ad95
MD5 d61d012482d8916f263974e301b3ceb2
BLAKE2b-256 a24f4abbcd54183223849c8b8ca0b93d26b48aa5f6165463cd04c97c07dcd0ef

See more details on using hashes here.

File details

Details for the file grpcio-1.46.1-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: grpcio-1.46.1-cp37-cp37m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ 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.10

File hashes

Hashes for grpcio-1.46.1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 3aa094661e8b4229177eb373b5c7b3aca34699711efa004daebd24bf60fd213b
MD5 bb72957fd96b8ab40bbb3a63a0ab3397
BLAKE2b-256 e223be11fb5ea84542a8a83364842f7df71e9f8fb8ec5b04beced84f0aaa62a7

See more details on using hashes here.

File details

Details for the file grpcio-1.46.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.46.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 52217d64ca280cec095ca9643b7f028edf5c9866af9125ded452699be04d4440
MD5 86a55183ed4cb4e8ed9254d4b609fcf2
BLAKE2b-256 9b2c22a66910126ec51e0b4da06512691b32e1e0f6ee14c6d5f10f114b132a73

See more details on using hashes here.

File details

Details for the file grpcio-1.46.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.46.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b476a680c08504c5520d043ee26e8614f71e2fc9abf98fc6de3ad61074684fb6
MD5 0e96209f4796f8cb98a0e0dd4e2e6201
BLAKE2b-256 93b562b4edd456b3e282b338963aa1092f2310bc4e38be8a75d5559722808f00

See more details on using hashes here.

File details

Details for the file grpcio-1.46.1-cp37-cp37m-manylinux_2_17_aarch64.whl.

File metadata

  • Download URL: grpcio-1.46.1-cp37-cp37m-manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 60.2 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ 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.10

File hashes

Hashes for grpcio-1.46.1-cp37-cp37m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 385b55cdf6176961d22390e3d2e7c26ab412f2b7e35d150d0a2964afae0d6662
MD5 15477a96ab93e864122793f895681004
BLAKE2b-256 fec677b40e918a86be7afaa6d22e8d5f7e963b921760d964cc882d958e9a7f44

See more details on using hashes here.

File details

Details for the file grpcio-1.46.1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.46.1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d1845dd5c3a21496a5e7c8d0dbc02ee1f5491a90ae391f0d8ea502e9a2ad9e28
MD5 daa4e68bd6a811ccfd03e0bd6e4c2f9a
BLAKE2b-256 4f0002d9915b6b61b6f50178ca5b4b0301cf565a6b91dab9a420d8edd6ebaaf2

See more details on using hashes here.

File details

Details for the file grpcio-1.46.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.46.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 cc032618b4c16b342c98ccfdfd85c5659ba33a9eb1c6e3ca0b2062dc08650f91
MD5 6351056825565713f664b7c89df7d258
BLAKE2b-256 f7fe1539dbff77e7f3d8421de761270944225f78d16bcd7c5a183e835b0ed044

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.1-cp37-cp37m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 4.3 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.10

File hashes

Hashes for grpcio-1.46.1-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 c9e2be2b9cd3c15980b94371ad71f6c7a415d7b2b88b9ea35a993b4f2a947f11
MD5 fcfaca24e62aaba39b73605dbb0a526d
BLAKE2b-256 8487ae9c53629b363d0a571a9f9d07a7057cd3a31f9c646c393505062c4724b5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.1-cp37-cp37m-linux_armv7l.whl
  • Upload date:
  • Size: 67.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.10

File hashes

Hashes for grpcio-1.46.1-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 0e6800f64c61cfa914c25560eb885a61623e356c7885775b80eead94f80c178c
MD5 05585fb4ad1c436081850b09f85272d5
BLAKE2b-256 363338f723ea814cabe8d4184aca9840ff0cc0ac7419dff6113b853edd13720c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 3.5 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.10

File hashes

Hashes for grpcio-1.46.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 0c50a5d81a4b5583b7fef4ec084fab919a06ad2e7e01eefd778f2a9bfd3f6b19
MD5 20df479c4af32436edd3565faeb81579
BLAKE2b-256 d387fe211d7d2aa0e832b4760779a913399846ebd18852fbd6ca1f5472775ece

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 2.9 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.10

File hashes

Hashes for grpcio-1.46.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 0c5d817a0738d87868ffaeef1ec2aa312cd99b24ba451f4dc993457468d48216
MD5 f2ac4d14ced8eb01d87c5f2febf4ff57
BLAKE2b-256 5845e9b79d8d6e76413f4577402bf8acb0350c1c0a2346a16cf1896cdafa1999

See more details on using hashes here.

File details

Details for the file grpcio-1.46.1-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: grpcio-1.46.1-cp36-cp36m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 4.7 MB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ 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.10

File hashes

Hashes for grpcio-1.46.1-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4a7431905f3b7177c0a03f4ed7471d3d500e0d109c739b724e4ab4d2f852c961
MD5 128f0789715f41e5c22547d23218c8bd
BLAKE2b-256 95d749006c59c811db00265c1b75749e04744cfc30433c9c752c3566ad891370

See more details on using hashes here.

File details

Details for the file grpcio-1.46.1-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: grpcio-1.46.1-cp36-cp36m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ 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.10

File hashes

Hashes for grpcio-1.46.1-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4083a70e3f90f6e48de37611484f489381f21a2615575c9a5a6ea5d9bf46db71
MD5 17654040d3561b4c87a501ce775df114
BLAKE2b-256 6970409cd608683aff2ddd89a3a29ad4540a77e8d313596c6d3e66eb755a5b73

See more details on using hashes here.

File details

Details for the file grpcio-1.46.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.46.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 22dc046fece523ca3a86aac75ac9980016c0ba93d35a586bc8b350a62430f4fc
MD5 26386c44dbfe253c1c0b6608a6c2cceb
BLAKE2b-256 705409a1d7f1b88d2972380a78d368358a5a1071a8ebb793ad1ac46a785ee159

See more details on using hashes here.

File details

Details for the file grpcio-1.46.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.46.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5bae8fd51d16a2712e5ecfc40146f6b3bcb6e3837f345be7f20ecc4a86c61903
MD5 8b535ff558aca8a4a6b8ddb8e10ae233
BLAKE2b-256 e8e49b94381452cd0f2b3db2889cb581ce7f8a0745465c2c990b3602bee10ddb

See more details on using hashes here.

File details

Details for the file grpcio-1.46.1-cp36-cp36m-manylinux_2_17_aarch64.whl.

File metadata

  • Download URL: grpcio-1.46.1-cp36-cp36m-manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 60.2 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ 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.10

File hashes

Hashes for grpcio-1.46.1-cp36-cp36m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 48f81a903467dd6665af7b2c3089b2dbe16563a945d7dc88c40c585dcd010f8a
MD5 29c5653a5384e64250dcb940e4edf67b
BLAKE2b-256 e404886f10a412c34163cc1525357161bbf1a49787f4068d4c84fde77b3ec27d

See more details on using hashes here.

File details

Details for the file grpcio-1.46.1-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.46.1-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 71a2163e14ad95210d7353fd4ea5f02d474afec897e653e54adce45cf0ee1536
MD5 5049a8aad26d93c653c56088822e3865
BLAKE2b-256 9ca380c3f5d067237bfef937767ed4e01672e157e26b5ff8363db362e288a7c2

See more details on using hashes here.

File details

Details for the file grpcio-1.46.1-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.46.1-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3abc211a2ebdf002b0a430079238b4861ea74fa3f6751f4e584702333ec5b886
MD5 cad431645fc7f92b9f7cde008982c909
BLAKE2b-256 0763452d4540209cf9f92feeb02aa9a4877e7c5b8b12a32f7db204bcaefab1b6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.1-cp36-cp36m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 4.3 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.10

File hashes

Hashes for grpcio-1.46.1-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 a73ccbc4f7a57183ec6c3f78e225585ba85f990e93b523359bad83baee349540
MD5 784d80470e57a8f45e4e8e7bcad38ae5
BLAKE2b-256 0f8021c30848a8d883ab21bcc98295e9be7e4dadc6db4e1d2c054bb1aa66abc5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.1-cp36-cp36m-linux_armv7l.whl
  • Upload date:
  • Size: 67.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.10

File hashes

Hashes for grpcio-1.46.1-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 424ef6c3f7631b21a7884e5756f23d2fc5c4d89f05b0c87e4b0cd4495b39748e
MD5 62b2e9ff2b3a75da83e37c04ddf86ed4
BLAKE2b-256 385fa0f906f728c966c1d6d05dcaa8d64554a4815ba7f25538b3c6ca03cb1edc

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