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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

grpcio-1.46.0-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.0-cp310-cp310-musllinux_1_1_i686.whl (4.8 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

grpcio-1.46.0-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.0-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.0-cp310-cp310-manylinux_2_17_aarch64.whl (60.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

grpcio-1.46.0-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.0-cp310-cp310-linux_armv7l.whl (67.6 MB view details)

Uploaded CPython 3.10

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

grpcio-1.46.0-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.0-cp39-cp39-musllinux_1_1_i686.whl (4.8 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

grpcio-1.46.0-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.0-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.0-cp39-cp39-manylinux_2_17_aarch64.whl (60.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

grpcio-1.46.0-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.0-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.0-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.0-cp39-cp39-linux_armv7l.whl (67.6 MB view details)

Uploaded CPython 3.9

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

grpcio-1.46.0-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.0-cp38-cp38-musllinux_1_1_i686.whl (4.8 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

grpcio-1.46.0-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.0-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.0-cp38-cp38-manylinux_2_17_aarch64.whl (60.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

grpcio-1.46.0-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.0-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.0-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.0-cp38-cp38-linux_armv7l.whl (67.8 MB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

grpcio-1.46.0-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.0-cp37-cp37m-musllinux_1_1_i686.whl (4.8 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

grpcio-1.46.0-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.0-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.0-cp37-cp37m-manylinux_2_17_aarch64.whl (60.2 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

grpcio-1.46.0-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.0-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.0-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.0-cp37-cp37m-linux_armv7l.whl (67.4 MB view details)

Uploaded CPython 3.7m

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

grpcio-1.46.0-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.0-cp36-cp36m-musllinux_1_1_i686.whl (4.8 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

grpcio-1.46.0-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.0-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.0-cp36-cp36m-manylinux_2_17_aarch64.whl (60.2 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

grpcio-1.46.0-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.0-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.0-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.0-cp36-cp36m-linux_armv7l.whl (67.4 MB view details)

Uploaded CPython 3.6m

File details

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

File metadata

  • Download URL: grpcio-1.46.0.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.0.tar.gz
Algorithm Hash digest
SHA256 ef37ff444d248ff8ea5e175a7807ce19e324831bc00d466169191cd9aad0ee36
MD5 f3817efabb2f22d770d09e11186747d9
BLAKE2b-256 312b0bec1a2f406b1b9088e7541e48c014db6970d6734e2561ce5559771cd33e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.0-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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 828078cb73008c65794af94201c975610d16c9440b00e5efefc9e45dd23de73b
MD5 f23a18ed196959349a56d7bd763b3776
BLAKE2b-256 dbae5975eb4bda559d00a5a654c5abf3b06ae43dade45d4f88128739360e4c5f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.0-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.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 80aa6247a77cba60b56192df57cc5d78f0e2fe697fc6ebdf089ce93df894db3e
MD5 247651c00242615e3972da02868aa533
BLAKE2b-256 9284ccec761fb6ae959a4a122163faf8e1095016a39dce54a9c78661bfa75c55

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.0-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.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 668cc3e277f2bb88189bb4f0d7dfece326be789096660f94553600040630969c
MD5 8f4d36a262af1a6ed8cdf8e18cb0b0ce
BLAKE2b-256 e6eab87525f55243a065cd1795474a213659e72ffb8ea4f82a47de96517c4e69

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.0-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.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 666d40de9e323392f985921c4d112ebda8decd7a4532b9524f7e6f6fd5e4ca57
MD5 7ee361d0fc1a1dd60a855ed7cc10d25d
BLAKE2b-256 dddaef89c70c546fc41d6597e31386ebfb02762d63ddcaae73ee85d353eafd9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.46.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c2fe454b7dd4c41a9cb8fbbb18474fd9a2f7935ac203b5f47a00216beec8aacd
MD5 86fe9ddcc625a816e40d2dd201825305
BLAKE2b-256 b6fcef2285d10222e6dd67fd8dce46c5fa158a56469d649590a9b54678b4c96e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.46.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cbfc0c85a2eb34de711028fe9630b159a1c0df5580359368bff8429596c56c97
MD5 6292096e289ee462dbb4bb7fbaf2c966
BLAKE2b-256 dafdf43cc305a7e124f70e5de4def347afbd989c84baff72dcaabce4ac9ff43c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.0-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.0-cp310-cp310-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 9e70290273b9d7e6d1cd8f8a7a621c4e9a91a3a35be3068610ee014124a35e75
MD5 4a4f049ccf2769dae4486578e50dad41
BLAKE2b-256 eaf650e47a3ba7efc3778f27de413b9b6682fc821df63622d80307edc2aea6e0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.0-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.0-cp310-cp310-macosx_10_10_universal2.whl
Algorithm Hash digest
SHA256 bdad8c088e088e5d34e9c10a5db8871157cc1a7e42f49ea4bd320fd8b57e7eb2
MD5 4b19a96cb325e1ee0455640015f68071
BLAKE2b-256 b4362a5b6fdb5d11e558431f09f237f71230e9ee4824ed1000137d21f1f0fd82

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.0-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.0-cp310-cp310-linux_armv7l.whl
Algorithm Hash digest
SHA256 fa4834022ca45fcde57fabcd12e5458fdb01372c4c8ab84030eabec24c6f39ca
MD5 d36d5538a40944cf24332b7e780a28b7
BLAKE2b-256 9cdf4343f8e24450479805480e580d2532f48f5acaba8927394ee0d6f1d698b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.0-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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 25cf4ede6f9703913b4381969159452ff6ca5dfb93d5f58b80d1763e9ad79b18
MD5 0dad1eb3b3f7bb01fabcf5d76dcd3a30
BLAKE2b-256 be1958128685275f1f68d7cc6e7b80434ed645beee4decf244bd4e70c0e79827

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.0-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.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4befe75c0122fe51ae046a4936b735c306ea63849405cd8dc0be534affd60ea0
MD5 1e0762fd6106ff89651860879f027c4f
BLAKE2b-256 efe1ae385ffa2d9df4928f4d1e38981919f0abf318b69307ad4db336dbe8760c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.0-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.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bd58caa70b4228ebb31e1b5c9872053f9fde4412ef69a1be65b8a8eaae8cf072
MD5 7ac3b5cd7e1aa9b22e10d359bd847aae
BLAKE2b-256 8ec86b377e3b003013d7201d76d7fc1c10190ba3e7430fee037adae2759e047b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.0-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.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 9e7ea7a8e7521664dd630fab35daab106a490b65e29254f90aeac66ec5cf1f68
MD5 010d72e8e148adf695b50929f7aaecaa
BLAKE2b-256 1a8a4622d33b2d8cd297f317a2dc23e17b85abad87a72e3d4255414928957cb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.46.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1efd92661c4d4b106cd97025d52a480255b387ba75d3070cee6c4677e375f1c5
MD5 2928264e6ab50d4b2456bcee7349ce9e
BLAKE2b-256 6474840ee980442c77fdf7c9ebf4c7def6c84ed2146b370bcdec641947fc6861

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.46.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 19646d7d51643231fbd3414134ddbf5c4c226db861a800bc8c04ac870533b614
MD5 0ea1146fbf1f0fcb5e396b6422e0f27e
BLAKE2b-256 a0c9ef8bee7c99d73eb39195240d3bebdda39f222c368cc5700035d9c14741a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.0-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.0-cp39-cp39-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 7c4fff11237fee6f07ac6937f2cff02a1f28d8bf2d675d1c57496423ddb8e01f
MD5 edb88d02da43edc083d443afd598ec6a
BLAKE2b-256 97c50922a9f193b562d0af697f57a95e3fa7b5e8aea87bba54c7d853a51f5dd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.46.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e30a1be3d1ec426f32d6fa22d9af9f5169a40d4b0955ce1fb111e869e0c0f44f
MD5 0613165ad0db9545923d567b4e0a7769
BLAKE2b-256 762cbdd8708781455183226a366fdcdbbe83e02c0c1d7aaeb70fbd698afb7f55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.46.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 26ab8415e2e048e32cf05a86e7b6d76864bc018f837a93112c177130c2743766
MD5 8c1d89d7d9362cc81a92a58cd93bd0a6
BLAKE2b-256 94dda17b783191a14a919a3fff8c813067775bccd48e319a5be0a87e72999730

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.0-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.0-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 884b0182d89bb934a5615f9d056df44e8681473cd124e6262382b5888353691b
MD5 1a7e6bfc04b35782da2a0f34f07fe78f
BLAKE2b-256 38833798cf64f9ca9a0089c88795f7e90841dcc5293bb258dd0e533714d97607

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.0-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.0-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 c8539a82debdd50c7fe3f0565b36b5efcd6a68f30ab635aced4175569d5f45e2
MD5 d876543b0e4566ed3ff90653bdbff1b2
BLAKE2b-256 472aae588e8eb060e8d01944470efaa83aa963bcce8a02df7232e30fcbd32bd4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.0-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.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 70b6d401a758e85318a2be038eccf8ab965a14082b9f89152f19b8f9b7ac762e
MD5 1ad31a12aef55b2d02d81cc24c46f1ac
BLAKE2b-256 d33e2d719ec820fc6a63d0522084043ad5743abac786bcf6d951f1a448239009

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.0-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.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 20fde26fbd40547c65817ca47b15f1f51d4bb0a70fd8a836fa08c9ad9b284b03
MD5 106a2b952e4de07f1d3fa1449a070fa2
BLAKE2b-256 905d5ee3ad7c9d869e763c0240af3248768c1345c5b7f455f3901cc4f3d2bf82

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.0-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.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2a751c533679dbc0194daf91a6e665d6163f9b423fc6f2e506035ddc17118f9d
MD5 4bbabcb7a0720573467d760902e11ad6
BLAKE2b-256 4c6c44c191bf626cf73733f4fa277f9c2783c21f04f1cc09c128ef90e823114d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.0-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.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d518477a73b467953ac8cff08022394b5250e8cfd7adfd167f76fd2d76969158
MD5 738abcb8469a3c292a164023482ddc48
BLAKE2b-256 f0749c0a183fb94de827af3089684c2ad4ba729faf82e71c33ece70ff37914b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.46.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fbfac305c16cb5fcff894f3b80923863877584f1d3be66164aa218ed32841bcb
MD5 cacb57722f92c66b975cd64ee230fdf6
BLAKE2b-256 b297a02a325dfb620877b7959cd5442867dd18408d24b995c5b831bb15943ebb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.46.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a4d4a17d8afcd6c9e4f06cf52b3f7ce0ca06f33510a47358848d30a1aebef10b
MD5 1c5e53ae0a8034a2a8fe82b9aec9b9f2
BLAKE2b-256 d7360dccb9d9b4111e31b695fe3d2ff916248d11f5cb8a9fef8926dec41dcf3a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.0-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.0-cp38-cp38-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 b3004fd04bfd3dba17f9d28b094bff76a32d7e85408f9f26f02594aa31fba040
MD5 29d3240998ebbdc7b30ef5df74f17d08
BLAKE2b-256 b2af1494fe17f6e632a58e113075577e0a09583d1002ae343b73b4052c4cfd5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.46.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 47f0c0820d0b7f6e4930729b9067f346a07d4bbc632d109a2bcc7ca6f260c5f1
MD5 792965f4fa9c043a82e6299e81302d8b
BLAKE2b-256 4f5e90532773aec77041b65c176a95df5a1c7187e38bd54c6ffd91f9e60dcbd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.46.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a6d45e6fbe3f60fa3a8907f55e8d626a4aa452eb108edfa7f533c9161d973ef9
MD5 74737fe6c6a7546c0374c42d9d87ef07
BLAKE2b-256 c536814d86d01a76538f7535d2a171479217a1df57d364fa8d15f9c728363241

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.0-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.0-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 170ade19379157d5c8e01c8176858a7ffbbf904b7896917c323134021afc1926
MD5 5da9d4da76ff657ea0d80c3866d40466
BLAKE2b-256 3f6e92af8ffa0ece1ea66828c4968fb58d9a68e42e18853e6a7f99edddc641b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.0-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.0-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 2f59d6beb12bbccd3d1ecd23d78f0f1a63324cddc42c744c6d13abeef6039496
MD5 60170069e34023f578c2a77bc0cd0898
BLAKE2b-256 4218ae83cfb2d941f04a42bcaf6a6286504c9452301514cdbc86b8b65b9a2dff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.0-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.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 afe8cbd4ed74f7d955c7732195d5f46c6af7b0867dfe642c8628332585fa40ee
MD5 6c3dfff6afc4d8c3541fa6c40ceb51c7
BLAKE2b-256 60c8d150e542e33852d8b03fd06187c79369c061f1a79c6e1410518d8d720d8c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.0-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.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 653d69bc4ac2e1f1bf36625aa42fbba8d399df609ded69a74b5820ca995e75dd
MD5 2791f0baeeb46f4edf4b0dd2bc31d832
BLAKE2b-256 40aa3b1b6f1b9a88f96fa8a758583d59def7bbc081523ff153b29e40bfbfcd31

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.0-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.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c1111369863d04ea49378b73c1c2890bafa4c558c9cf799da52bf922483c8a3c
MD5 0f12d061b6051fb7f2ec7b00d2a80171
BLAKE2b-256 137094168a509c32f31c9387c3c313a45b6bf07cdb07a5dd5caf61a77c136f8e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.0-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.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 9ab12c5bfb13f294f6215a2580e446396eaac1b101e6cdb74d7bea3c6be3143e
MD5 c828cd54b9b5570dba3b787009ab61fe
BLAKE2b-256 1bdc9dcfcd8261e30148c7401b3118919ac1c37da1c6961a7ebc9edbd779e06d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.46.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7e4972b82ee1164eeee297e86a6351a2f358e1a9e5b65ae491a7a140d276cec4
MD5 f90d2eae23469e683de6c5c21949fc6e
BLAKE2b-256 933d0c8f3fc5a241f6fac9e2b3a62336c680a9c6625f07922085da0d347c712b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.46.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ed29cc8cb0394cb5ae9cf0a56e32228e9d98b8bb79a088393a18346510a06132
MD5 a9f93e039a9d39c6ac9594768d017717
BLAKE2b-256 d41124ca69d94a93590a8611aeb96ec375b8a7841d98a06a7183bb54ccaac166

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.0-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.0-cp37-cp37m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 d5ef9194f9bc216c8d0c18885bb7db247b0018a219ded543a6a6c2fe9454b220
MD5 ea7d361570ce76ceb2d087b54d3be132
BLAKE2b-256 c3e7bfe02cf539af22d7f24825c963914a9411bda84e5052810178f6bd4cfe01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.46.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 65477bb9e884c9f46cde27c083d69c6588342f24ee5d56bbf731b9a4a14cc781
MD5 63c900d32f880ba25b49e827411c35f5
BLAKE2b-256 8fd0b59f3631992c4f0014766efc9ae1e104b17ce3a6e5791699333bbe915368

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.46.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1419ab58c830f2da40884f4e1b4583038b12d6609fcac1a5700eff9ca9a75070
MD5 cd1cc7f956df32cffff53a37235bb360
BLAKE2b-256 6789e55b9fe5c48eb8f7ca12b4a981bd58cb937f73486e6a2be0c07d080f76e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.0-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.0-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 fed35c01a01c6d050f8d67456dad83b5196bf4aff6d88fadd9b70936fb732826
MD5 a28727f144283082679e2c2df7c844aa
BLAKE2b-256 8c8047708e66ae1d2419647e5dd482a6dac64959ebf1b1864ee72739c7d12218

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.0-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.0-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 c95497d9bf93c8553b558646dd61cb4b15269c28fcee1a8843892edd50f3754f
MD5 e42c39fa8a8d4a63e5ea5e49546870f5
BLAKE2b-256 d3506a8b576f3590337db0f3122660ef7e33ef160c6331eb10b057dc9ed78c23

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.0-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.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 206becfce3ad377f50c934b4d91f3fd5f101fe71db80ccce800d6bb898605448
MD5 25cb001eb8a36680d8b2fe6328a3193c
BLAKE2b-256 c861761371f9f21288f5d5de5ac81b162bb3e1aadd606280f1afe6f0cf32dfd5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.0-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.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 eca51dd5d16b3a6b19c255cbcb236387d5cc9e058faeff024cd0c904d16f2495
MD5 05b83b9be9f3456491fea221d77de7d3
BLAKE2b-256 e1667a0d4d830be15cc80b6825ca665553f51d2732020d9ec75aaa08a9bf55f4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.0-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.0-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 518b3294dcdd734c4551a7c4cf3b457b9e0b949f4d855419600ceb7921de6f00
MD5 2a5372824167f3bf8a39bc0efdd2c723
BLAKE2b-256 03f9bd16e52321516c640429593738bf52922bb2bdcff9c2a7050c60f65fbef0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.0-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.0-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d2b99b28b75b1929d92d947b74b7c74610131ac6acf803f2dedde7d245bc8b90
MD5 586b7636655eed32f68906cc1c65b110
BLAKE2b-256 801aa50fb279b366b992e67e4208d6aef6a6c2f0fbe285054423a3e14881c05c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.46.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 edc0e052d349d7bac6719bddb5e779314b060eca1f53f99e0cc0be1aea66285a
MD5 006344d8e3ae829707f06e0c01f1ea18
BLAKE2b-256 4d2c70bcdac6b25278de220093ad456776491050c84ee827828a66db7624c78a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.46.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7c6958a8a6a8df1caa536314bda3fb54f9ca5c936c14e3a486ff51d150c342c7
MD5 1b1241ca75efc509ad5d0e4adeb78363
BLAKE2b-256 6985de8116a3d3d338a481da98dfbe16658b8f408042fb5abd55b4701ef00f58

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.0-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.0-cp36-cp36m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 63e827caff24f7d02c2d4d6fbca720001f7e5158a68abba37ea0c7eb447adfe5
MD5 3f1ca9b3dfe5e8d2436dafa5f80b58fe
BLAKE2b-256 8d4b4eba3eea0d4bd2191a62c75028171867fd7507e7d491d60c043fad7f99e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.46.0-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b45f4f0815e1df26ced52e6e7012055d023d1b2d943e5d3d168e211bdbb823ad
MD5 aa9ab9a964c2df1f3fed00254c01fbc5
BLAKE2b-256 dbaa2c6e756947d536fe0fe33cc16aaafea30ff44369257b3ebbeaffbe14810f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.46.0-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c8c0eaede86ae97213548633eb07446dab75a48c771ad8bb3751bffbd9055ea9
MD5 76f99f2417f190276ffbc78d9ccebf04
BLAKE2b-256 c381cb681f3756bafdea82cb2faa4d6b8c59f1dff0043c1a9fd1abdddfd695fe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.0-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.0-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 6ab4aeadc6c76447bcae91da1c69eeff9d0b78af7051fdcebe18a4cdf766f727
MD5 473684423b133846dc021f1e66484d7b
BLAKE2b-256 13a409273e044224fa88615870e862e15950adccc895d7a3e8d75af5720f1df8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.46.0-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.0-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 4be2d7f283a7e2a15f9c5d70e1c9899e1824ea0650dbd82b7dc5e54d0c8061a5
MD5 4f2bae4c41315161f7d7f772d4367981
BLAKE2b-256 3b136a7f4e71b04dc47f0e13bf15c5e1283bd147ed474f00f2423c4b7e94103f

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