Skip to main content

HTTP/2-based RPC framework

Reason this release was yanked:

Segfaults

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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.10 Windows x86-64

grpcio-1.45.0-cp310-cp310-win32.whl (2.9 MB view details)

Uploaded CPython 3.10 Windows x86

grpcio-1.45.0-cp310-cp310-musllinux_1_1_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

grpcio-1.45.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.45.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.45.0-cp310-cp310-manylinux_2_17_aarch64.whl (59.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

grpcio-1.45.0-cp310-cp310-macosx_10_10_universal2.whl (4.1 MB view details)

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

grpcio-1.45.0-cp310-cp310-linux_armv7l.whl (66.1 MB view details)

Uploaded CPython 3.10

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

Uploaded CPython 3.9 Windows x86-64

grpcio-1.45.0-cp39-cp39-win32.whl (2.9 MB view details)

Uploaded CPython 3.9 Windows x86

grpcio-1.45.0-cp39-cp39-musllinux_1_1_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

grpcio-1.45.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.45.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.45.0-cp39-cp39-manylinux_2_17_aarch64.whl (59.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

grpcio-1.45.0-cp39-cp39-macosx_10_10_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.9 macOS 10.10+ x86-64

grpcio-1.45.0-cp39-cp39-linux_armv7l.whl (66.1 MB view details)

Uploaded CPython 3.9

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

Uploaded CPython 3.8 Windows x86-64

grpcio-1.45.0-cp38-cp38-win32.whl (2.9 MB view details)

Uploaded CPython 3.8 Windows x86

grpcio-1.45.0-cp38-cp38-musllinux_1_1_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

grpcio-1.45.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.45.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (4.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

grpcio-1.45.0-cp38-cp38-manylinux_2_17_aarch64.whl (59.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

grpcio-1.45.0-cp38-cp38-macosx_10_10_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.8 macOS 10.10+ x86-64

grpcio-1.45.0-cp38-cp38-linux_armv7l.whl (66.2 MB view details)

Uploaded CPython 3.8

grpcio-1.45.0-cp37-cp37m-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

grpcio-1.45.0-cp37-cp37m-musllinux_1_1_x86_64.whl (4.6 MB view details)

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

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

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

grpcio-1.45.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.45.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (4.5 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

grpcio-1.45.0-cp37-cp37m-manylinux_2_17_aarch64.whl (58.8 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

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

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

grpcio-1.45.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.45.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.45.0-cp37-cp37m-linux_armv7l.whl (65.8 MB view details)

Uploaded CPython 3.7m

grpcio-1.45.0-cp36-cp36m-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

grpcio-1.45.0-cp36-cp36m-musllinux_1_1_x86_64.whl (4.6 MB view details)

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

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

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

grpcio-1.45.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.45.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (4.5 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

grpcio-1.45.0-cp36-cp36m-manylinux_2_17_aarch64.whl (58.8 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

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

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

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

grpcio-1.45.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.45.0-cp36-cp36m-linux_armv7l.whl (65.9 MB view details)

Uploaded CPython 3.6m

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.45.0.tar.gz
Algorithm Hash digest
SHA256 ff2c8b965b0fc25cf281961aa46619c10900543effe3f806ef818231c40aaff3
MD5 98ed7b9d9654c904e29fb6d684a50568
BLAKE2b-256 c645bc828a65a3a9e66aaf347dfda12e8b126b37e3052894e0815ab3f849bc85

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.45.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/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio-1.45.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 797f5b750be6ff2905b9d0529a00c1f873d8035a5d01a9801910ace5f0d52a18
MD5 477fc089d7cd829f40223a7c5d4719d9
BLAKE2b-256 cb547ac01b62d3fb9644b58dac59e2b72bb08c0590a5cdac0ba30e7116fd7ece

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.45.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio-1.45.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1d764c8a190719301ec6f3b6ddeb48a234604e337d0fbb3184a4ddcda2aca9da
MD5 67c4dfd5cde920b38819c3347cf9fd2a
BLAKE2b-256 a02c1ea4fd571b48c15c10c63d84038e0f70163cb7deeab7102caeb97279c524

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.45.0-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 4.6 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio-1.45.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a5c8a08aff0af770c977dcede62fbed53ae7b99adbc184d5299d148bb04652f1
MD5 8bae00f68bcd74a735d3206ae77b67e7
BLAKE2b-256 517917634a36dbf1b0260bd28b2997daa9fffc246deb6da4a30b9cb7f8388218

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.45.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/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio-1.45.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 678a673fe811dad3ed5bd2e2352b79851236e4d718aeaeffc10f372a55954d8d
MD5 4bd19f56ba68b51c2d7340eb67dd6e32
BLAKE2b-256 7103c88659a62c5f3d435d6c14cfa85cf91d40e3ace939254fe6fa3e53ca2fa9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.45.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 db1c45daa35c64f17498af1ba6eb1d0a8d88a8a0b6b322f960ab461e7ef0419e
MD5 4ba1a2a007a7e63c22702f0fabcfb518
BLAKE2b-256 0e612ff6bfb320736ba11f4d9448bf9b5bfe33651249dce4ecb3276cf8a799b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.45.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8b452f715e2cae9e75cb309f59a37f82e5b25f51f0bfc3cd1462de86265cef05
MD5 5011d3ba4be7c0f8e3b9b99486b56c8a
BLAKE2b-256 87b51b2c36912633240479e0ad24daf6d65617ff4c97b17edac6c6e0420b5119

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.45.0-cp310-cp310-manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 59.0 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio-1.45.0-cp310-cp310-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 44615be86e5540a18f5e4ca5a0f428d4b1efb800d255cfd9f902a11daca8fd74
MD5 68b0a63f25bb17843a6403355a63517a
BLAKE2b-256 73546d2dbbf52b2a96a9366f59550ee0915fad9c8cc039ec8d032acc6da19418

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.45.0-cp310-cp310-macosx_10_10_universal2.whl
  • Upload date:
  • Size: 4.1 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/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio-1.45.0-cp310-cp310-macosx_10_10_universal2.whl
Algorithm Hash digest
SHA256 4e6d15bfdfa28e5f6d524dd3b29c7dc129cfc578505b067aa97574490c5b70fe
MD5 e7ed0b6a0ec8ab9ca143123afd248b45
BLAKE2b-256 6a804bec587e385f2a77b77d1ab042771a855bb02cebd180197b54aea5de54ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.45.0-cp310-cp310-linux_armv7l.whl
  • Upload date:
  • Size: 66.1 MB
  • Tags: CPython 3.10
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio-1.45.0-cp310-cp310-linux_armv7l.whl
Algorithm Hash digest
SHA256 0d74a159df9401747e57960f0772f4371486e3281919004efa9df8a82985abee
MD5 5d65cda845688ee55536aac902b952ed
BLAKE2b-256 a0b4f4d212b39caccc51f313e01953abd75b601263c4af33a5888a96670b2cb6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.45.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/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio-1.45.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 220867a53e53b2e201e98c55061e3053e31c0ce613625087242be684d3e8612a
MD5 e58b88275df2c2479f0a9f45fc515fc9
BLAKE2b-256 69c0b35c8ddb5da51eae5eaa589ae3437742a3c7aafa1e67a23d5974d8f4c878

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.45.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3992c690228126e5652c7a1f61863c1ebfd71369cf2adb0fce86fee1d82d2d27
MD5 f7e4571690ecbd2399b5ca24c97bb4bc
BLAKE2b-256 74c566fce98344114853b2c5123529198c10caf5ea8105f30ff4634dbd17baf4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.45.0-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 4.6 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio-1.45.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 52f61fcb17d92b87ba47d54b3c9deae09d4f0216a3ea277b7df4b6c1794e6556
MD5 5527605789d5dee9912fdb5e74d60f88
BLAKE2b-256 f878e81472a4f32b4cb37f2ff74d894606987f58ea3e1a41072226f924315fc0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.45.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/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio-1.45.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6774272a59b9ee16fb0d4f53e23716953a22bbb3efe12fdf9a4ee3eec2c4f81f
MD5 f07c0546f95335db6cc4f21b4e32ebae
BLAKE2b-256 88f06cd18f7d6823fbc76b8c7687b8a960684d9f453c81bdc16400fe67a7553d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.45.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0fe6acb1439127e0bee773f8a9a3ece290cb4cac4fe8d46b10bc8dda250a990c
MD5 5b2c03123a02e98ca1b399861214f406
BLAKE2b-256 7e168ba5fd3289e0a75244689a25ae96f9055af2f6489abcaf430bb0256a8789

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.45.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2798e42d62a0296982276d0bab96fc7d6772cd148357154348355304d6216763
MD5 eeccc5e3ac157a386d29ef5ae571bd39
BLAKE2b-256 ff6da5c39da48b58ec8bf36bd69c7d08473a4577ec64577b1ad84b323feac770

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.45.0-cp39-cp39-manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 59.0 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio-1.45.0-cp39-cp39-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 2355493a9e71f15d9004b2ab87892cb532e9e98db6882fced2912115eb5631af
MD5 0143697be7de10cbeb0770257abac647
BLAKE2b-256 1ff929d5ba50dda4319dc2015ccb59e1417decd07b0e53802245df785ba7bcb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.45.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b7f2dc8831045eb0c892bb947e1cba2b1ed639e79a54abff7c4ad90bdd329f78
MD5 11c6a4d23fe021780c898c9e0efaea9e
BLAKE2b-256 95c6c0bbc6fc1a48a4a9793c3e837b192a2ad31a3ba7e633101118f7eebc6419

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.45.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 dfca4dfd307b449d0a1e92bc7fbb5224ccf16db384aab412ba6766fc56bdffb6
MD5 a61dfd1c6631b11176785d59609739a7
BLAKE2b-256 30fe8093bea5268cf57886e959aa69464e447ce5dec08b2aede35b3bbcf2fd09

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.45.0-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 250d8f18332f3dbd4db00efa91d33d336e58362e9c80e6946d45ecf5e82d95ec
MD5 6747d5230271974aed0a2b635b197362
BLAKE2b-256 468e8700fa890a4df73410306fe3a02b4d99ea34592cbd89abc10f04f5c66a68

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.45.0-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 add03308fa2d434628aeaa445e0c75cdb9535f39128eb949b1483ae83fafade6
MD5 f469ba76d1dae00cb61b0dfc824e6e74
BLAKE2b-256 40b80553ee55616cfc71f927a9c6316cf2926b2f2a39dde8bab2b94734a221d9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.45.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/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio-1.45.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 da395720d6e9599c754f862f3f75bc0e8ff29fa55259e082e442a9cc916ffbc3
MD5 e772ce7986e0958c5bd1f66214412f84
BLAKE2b-256 9592206d13a61aad139e3afb63170c198070ce2a071ebd723c82ba9d643a96fe

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.45.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 b54444cf4212935a7b98cd26a30ad3a036389e4fd2ff3e461b176af876c7e20b
MD5 8be4b74cea9e34b3ce88d7482252419f
BLAKE2b-256 8fce7988581683dd2a437d3fdd147c73d78287850af23417a8eb59ae76e34cd1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.45.0-cp38-cp38-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 4.6 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio-1.45.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d14d372ea5a51d5ab991aa6d499a26e5a1e3b3f3af93f41826ea610f8a276c9e
MD5 ed1da17299c0d2c4fef50147034a1d62
BLAKE2b-256 c4ffa20039129c60fa03780f37b5caa250ccf84613f0c28043bdde7a742171fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.45.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/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio-1.45.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 79582ec821ef10162348170a6e912d93ea257c749320a162dfc3a132ef25ac1b
MD5 619d6c66c61ad017a414e45a2bea76bb
BLAKE2b-256 ef40fa29106fce62f83991a73b252fce2d4a003f4aa66e44a5c55997bdfa5a8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.45.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb23ed6ed84ae312df03e96c7a7cd3aa5f7e3a1ad7066fdb6cd47f1bd334196c
MD5 b4db1190d6bcddc3a51174fb8f9670c6
BLAKE2b-256 7df9e319f83f437aaab814880eceeeb6e91fc8f83f513fae979308a45d178d0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.45.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 042921a824e90bf2974dbef7d89937096181298294799fb53e5576d9958884c7
MD5 56d92e60ba48252169dd0fba30e208b7
BLAKE2b-256 a26605cff87c56e79259a1ba7e7862fbbbd3325aa3e6a82214ca6c4d0baae3d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.45.0-cp38-cp38-manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 59.3 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio-1.45.0-cp38-cp38-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 6df338b8d2c328ba91a25e28786d10059dea3bc9115fa1ddad30ba5d459e714a
MD5 681f615b46ab223552fb6bde8b0899e3
BLAKE2b-256 9965df210abedc7caea3b2b32f84eb59be5c47bad947cf45dbcf43ca179a5d84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.45.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4d37c526b86c46d229f6117df5dca2510de597ab73c5956bc379ca41f8a1db84
MD5 1eb6058355b7f398a12f2417eb7816cd
BLAKE2b-256 84c46d0840a93ea3ae32425d53007ad0e5a5a6a20137403ec46e4851a989ece1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.45.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6f2e044a715507fd13c70c928cd90daf8d0295c936a81fd9065a24e58ba7cc7d
MD5 7e14898f647e84733433b2e435cff753
BLAKE2b-256 ffe9d2485b50e77f6b8cf5e304eb8491c787857a4f187573dc079638f4a7e5d9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.45.0-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 5d05cd1b2b0975bb000ba97ca465565158dc211616c9bbbef5d1b77871974687
MD5 2bfe42825345b37f28574046a722aacf
BLAKE2b-256 f82d28cf6ce6b6b18ea0eb72d1c7599ac0eeadcd5e1e43aac3e741cb9168b683

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.45.0-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 259c126821fefcda298c020a0d83c4a4edac3cf10b1af12a62d250f8192ea1d1
MD5 7fb1714dfc7868c9ba224b171d23e480
BLAKE2b-256 0440ed220a0fa4e4325e5e751e74ecb035531042003f62602bb4b3420877e49b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.45.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 7fe3ac700cc5ecba9dc9072c0e6cfd2f964ea9f273ce1111eaa27d13aa20ec32
MD5 0b7a422399854ae8a14496ee2018e13e
BLAKE2b-256 0c50800a36f68d2231b308a79227372ecd9c41a45c09ae30303e63af79305cda

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.45.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/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio-1.45.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 aea67bd3cbf93db552c725bc0b4db0acdc6a284d036d1cc32d638305e0f01fd9
MD5 fd25ea1c45878d80a55771fbf5e199f7
BLAKE2b-256 50ac9ba725eee459387a1accd0b67b9a3fd8e9eecd4520c2e359a7179034acc7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.45.0-cp37-cp37m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 4.6 MB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio-1.45.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 779db3d00c8da1d3efa942387cb0fea9ac6d50124d656024f82f9faefdd016e3
MD5 356b3f7ca44088e3654fc397dfa3f0cc
BLAKE2b-256 bb8c3985975baff10452ebe9172db222d8ecc0d060121386cf3c223cac89fcb0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.45.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/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio-1.45.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 35ae55460514ed404ceaa95533b9a79989691b562faf012fc8fb143d8fd16e47
MD5 f66251953d09969532f3b2607b61404f
BLAKE2b-256 f2f8c64c6f350c0b38020126f265be2ef7ca9697a7d19e924781f5fa4f20ceb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.45.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cc135b77f384a84bac67a37947886986be136356446338d64160a30c85f20c6d
MD5 70fc34345e017cae642edffbf8c6ca4f
BLAKE2b-256 b8abc7abc950e222c4cab5f7fd92107f3b09553061f673f1a670e6569105f584

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.45.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bd4944f35f1e5ab54804c3e37d24921ecc01908ef871cdce6bd52995ea4f985c
MD5 853c0ca277548b90fc21d0d866a3f3fa
BLAKE2b-256 0a9e906314fc6efc92a4ba485023f9065b216bfaa452e2072505266c4718507f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.45.0-cp37-cp37m-manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 58.8 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio-1.45.0-cp37-cp37m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 b00ce58323dde47d2ea240d10ee745471b9966429c97d9e6567c8d56e02b0372
MD5 e744a019a0fdaaed36bae05e0bcfb6bd
BLAKE2b-256 b6c9674966f1e60c159925f5d5896da382cdf4f4e5e799a0c8e92055feb3ca5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.45.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3a40dbb8aac60cf6a86583e2ba74fc2c286f1abc7a3404b25dcd12a49b9f7d8b
MD5 c323b8e2bf018e03bc1e9faf42d4a9eb
BLAKE2b-256 a5c48f6dbcc86c0f3dd929f3fef089302cbbe5512d46006338c5145a38c5f05a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.45.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f9f28d8c5343602e1510d4839e38568bcd0ca6353bd98ad9941787584a371a1d
MD5 2cd95017552a521bb23076fe6bc4669d
BLAKE2b-256 ecb1f63f7f8e547616cc73bc3920ed1c542b9be3de6f662e57beac49a9049bc0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.45.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/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio-1.45.0-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 a33ed7d3e52ddc839e2f020592a4371d805c2ae820fb63b12525058e1810fe46
MD5 e5c2d1fa9f2d78c9a194b2562c53a73c
BLAKE2b-256 a9f1e4d549c1089edd4eb08e4ad7e84634423096e4e7b7c70bbf03f9fd70a8db

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.45.0-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 321f84dbc788481f7a3cd12636a133ba5f4d17e57f1c906de5a22fd709c971b5
MD5 723b9c3f951a3a1704e71543ede500f8
BLAKE2b-256 99421f49ae40baf433438a5014afd36a4b46445306f8c5e37b48ad36bb666e95

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.45.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 4f1a22744f93b38d393b7a83cb607029ac5e2de680cab39957ffdd116590a178
MD5 d6691365ba0170eae20983964ab8924c
BLAKE2b-256 3acda1a63f457491b2eb35141aba9bce90f7ac59ba0e40af3cfde9c6ad785138

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.45.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/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio-1.45.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 6cf5f1827c182ef9b503d7d01e503c1067f4499d45af792d95ccd1d8b0bea30d
MD5 13a01b4ab3720d720df53eefab63d000
BLAKE2b-256 8bd43a80004333c68047a23906bfcf430f59f80ec3a575a91af2a08aebcebf43

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.45.0-cp36-cp36m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 4.6 MB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio-1.45.0-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8de79eac582431cb6d05ff5652e68089c40aa0e604ec1630fa52ac926bc44f1b
MD5 85bc3c197ad652604d9176b789d23745
BLAKE2b-256 147c25e2e369536ffa725871e1cb067d0d8d8a2cc0637d4d5f555bd2bb69ca40

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.45.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/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio-1.45.0-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 638364d3603df9e4a1dbc2151b5fe1b491ceecda4e1672be86724e1dfa79c44d
MD5 8cddbe7f9582cdbfdbb678b5cbf7901b
BLAKE2b-256 26b8f1e6ccc241205a6e64cf609c3d62b0f82d8eb8e5595dd75c8c9c6a2c22e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.45.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b18c86a9cfbedd0c4e083690fecc82027b3f938100ed0af8db77d52a171eb1e
MD5 247a0a40d2aaaeb104d1a8e07db2f392
BLAKE2b-256 49241d4f6a1b65b79fe348750c89ccc1f095deed1877f2df9cc2e86e5c797908

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.45.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a1c1098f35c33b985c312cacea39e2aa66f7ac1462579eed1d3aed2e51fff00d
MD5 7f63f052e54b726947ff39633b6bad95
BLAKE2b-256 6d4e16c5004d2e3287fa35a962742c6dafc66a163da9ed57e281bac7cb38575c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.45.0-cp36-cp36m-manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 58.8 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio-1.45.0-cp36-cp36m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 7262b9d96db79e29049c7eb2b75b03f2b9485fd838209b5ff8e3cca73b2a706c
MD5 29f651a8d6f5aa8f63f351a193a49b14
BLAKE2b-256 4b0264998f5ec072794a4d1a64521d13653f83c576b3e0f21567890b49363741

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.45.0-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ccba925045c00acc9ce2cc645b6fa9d19767dbb16c9c49921013da412b1d3415
MD5 595b2dc0ac9139f721d8153fc0d476be
BLAKE2b-256 591085d3cf7dab4a082d7ed4299cb59c472be35c263278888b7131e099928ed5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.45.0-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 16603b9544a4af135ce4d594a7396602fbe62d1ccaa484b05cb1814c17a3e559
MD5 9ee8522079d3f91b26f11f57dd6606a2
BLAKE2b-256 985d55075926168e5595bb3f25d958f7c8792acce00ddf9fa0edfa1b88ee00da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.45.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/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio-1.45.0-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 2f135e5c8e9acd14f3090fd86dccb9d7c26aea7bfbd4528e8a86ff621d39e610
MD5 c64688d0e79fb5519f1fb72834d02657
BLAKE2b-256 6361631443e1b41873413128899a3fc958e8bf22f99f312b3871b923760c29aa

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.45.0-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 b46772b7eb58c6cb0b468b56d59618694d2c2f2cee2e5b4e83ae9729a46b8af0
MD5 6ab09080d953cfe00074cff1ce61a577
BLAKE2b-256 0df3af40a215400211ace76c7195d282679a33417a8dd8f492419303dbd89892

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