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

Uploaded Source

Built Distributions

grpcio-1.41.0-cp310-cp310-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.10 Windows x86-64

grpcio-1.41.0-cp310-cp310-win32.whl (2.7 MB view details)

Uploaded CPython 3.10 Windows x86

grpcio-1.41.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

grpcio-1.41.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (4.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

grpcio-1.41.0-cp310-cp310-manylinux_2_17_aarch64.whl (44.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

grpcio-1.41.0-cp310-cp310-macosx_10_10_universal2.whl (3.7 MB view details)

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

grpcio-1.41.0-cp310-cp310-linux_armv7l.whl (48.3 MB view details)

Uploaded CPython 3.10

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

grpcio-1.41.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

grpcio-1.41.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (4.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

grpcio-1.41.0-cp39-cp39-manylinux_2_17_aarch64.whl (44.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

grpcio-1.41.0-cp39-cp39-manylinux2010_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

grpcio-1.41.0-cp39-cp39-manylinux2010_i686.whl (3.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.9 macOS 10.10+ x86-64

grpcio-1.41.0-cp39-cp39-linux_armv7l.whl (48.3 MB view details)

Uploaded CPython 3.9

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

grpcio-1.41.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

grpcio-1.41.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (4.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

grpcio-1.41.0-cp38-cp38-manylinux_2_17_aarch64.whl (44.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

grpcio-1.41.0-cp38-cp38-manylinux2010_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

grpcio-1.41.0-cp38-cp38-manylinux2010_i686.whl (3.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8 macOS 10.10+ x86-64

grpcio-1.41.0-cp38-cp38-linux_armv7l.whl (48.4 MB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

grpcio-1.41.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

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

grpcio-1.41.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (4.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

grpcio-1.41.0-cp37-cp37m-manylinux_2_17_aarch64.whl (44.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

grpcio-1.41.0-cp37-cp37m-manylinux2010_x86_64.whl (3.7 MB view details)

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

grpcio-1.41.0-cp37-cp37m-manylinux2010_i686.whl (3.8 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m macOS 10.10+ x86-64

grpcio-1.41.0-cp37-cp37m-linux_armv7l.whl (48.0 MB view details)

Uploaded CPython 3.7m

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

grpcio-1.41.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

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

grpcio-1.41.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (4.0 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

grpcio-1.41.0-cp36-cp36m-manylinux_2_17_aarch64.whl (44.1 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

grpcio-1.41.0-cp36-cp36m-manylinux2010_x86_64.whl (3.7 MB view details)

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

grpcio-1.41.0-cp36-cp36m-manylinux2010_i686.whl (3.8 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m macOS 10.10+ x86-64

grpcio-1.41.0-cp36-cp36m-linux_armv7l.whl (48.0 MB view details)

Uploaded CPython 3.6m

File details

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

File metadata

  • Download URL: grpcio-1.41.0.tar.gz
  • Upload date:
  • Size: 21.2 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.7

File hashes

Hashes for grpcio-1.41.0.tar.gz
Algorithm Hash digest
SHA256 15c04d695833c739dbb25c88eaf6abd9a461ec0dbd32f44bc8769335a495cf5a
MD5 b187f777ba58886e551ebec8e8add587
BLAKE2b-256 0bf2b14091fd31bfced105d8352f46bbc495518a93ff0debcc7db283258ad655

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.41.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 3.2 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.7

File hashes

Hashes for grpcio-1.41.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fb64abf0d92134cb0ba4496a3b7ab918588eee42de20e5b3507fe6ee16db97ee
MD5 7844381cb523161180272fb8fc39cec6
BLAKE2b-256 d4f07ab9bc325585c80449e588f9ed0370b001dea632dc1e203f1ffff2c5b896

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.41.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 2.7 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.7

File hashes

Hashes for grpcio-1.41.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7033199706526e7ee06a362e38476dfdf2ddbad625c19b67ed30411d1bb25a18
MD5 d8c8f22139b7ecff35ff2ea0b2d7cca8
BLAKE2b-256 a1c87164aed192f7088b9afccbd3cffce7dcc1802dd9181e6152a1b1baf81fd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.41.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a0c4bdd1d646365d10ba1468bcf234ea5ad46e8ce2b115983e8563248614910a
MD5 6e536471822f9467d8c3728acb88f95a
BLAKE2b-256 7ec9f529e9a53af258983a053b2b0fdb4d9cb420216c1ae0818529b435802a95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.41.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 be3c6ac822edb509aeef41361ca9c8c5ee52cb9e4973e1977d2bb7d6a460fd97
MD5 1b7c09b99f7e1a5dc01248caa8730916
BLAKE2b-256 1fe81b708c50438dfe4264b3e77d475cf0d8c1067a6e75cf56a8eedf5a00fb84

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.41.0-cp310-cp310-manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 44.2 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.7

File hashes

Hashes for grpcio-1.41.0-cp310-cp310-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 2410000eb57cf76b05b37d2aee270b686f0a7876710850a2bba92b4ed133e026
MD5 d142e08106a98b92c44f9aaa1b64493f
BLAKE2b-256 5bb146ad82e00e430bbeaaf5ab61f3c9724ced8008f0382238d568acebd1a8d9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.41.0-cp310-cp310-macosx_10_10_universal2.whl
  • Upload date:
  • Size: 3.7 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.7

File hashes

Hashes for grpcio-1.41.0-cp310-cp310-macosx_10_10_universal2.whl
Algorithm Hash digest
SHA256 d539ebd05a2bbfbf897d41738d37d162d5c3d9f2b1f8ddf2c4f75e2c9cf59907
MD5 7cbc5ff98cf49241bbbd057a1b27690e
BLAKE2b-256 fbc0cef4080283278897da012234fb18046aebe17174fdc1f3226a32a0f6a5bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.41.0-cp310-cp310-linux_armv7l.whl
  • Upload date:
  • Size: 48.3 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.7

File hashes

Hashes for grpcio-1.41.0-cp310-cp310-linux_armv7l.whl
Algorithm Hash digest
SHA256 9ecd0fc34aa46eeac24f4d20e67bafaf72ca914f99690bf2898674905eaddaf9
MD5 e623d8f1398938b4ae015cc422455443
BLAKE2b-256 ea0fd180273caab3e1fea6d369c41694a0902c5b187746611471163a4f86ef21

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.41.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4537bb9e35af62c5189493792a8c34d127275a6d175c8ad48b6314cacba4021e
MD5 a9d8e146182e158ead4ce8dcdbb7fcd1
BLAKE2b-256 341496f08bae0d3ee0ff6179d0ddd63cbf07568a4492c6b95508bbf70f259828

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.41.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 1bcbeac764bbae329bc2cc9e95d0f4d3b0fb456b92cf12e7e06e3e860a4b31cf
MD5 3bbe0a477499276d4d5ffe65d7160d97
BLAKE2b-256 5183da1bfdd4411937ad6523318c98a40acc8e8be96388c8393dbdc7b723aa1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.41.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ace080a9c3c673c42adfd2116875a63fec9613797be01a6105acf7721ed0c693
MD5 97ecd150ebd6f0f4af28b402db23c03b
BLAKE2b-256 2bf1979d61838f06a8c143d018bd6e0f1cf9803f6262b13c05ad50cddd1cd837

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.41.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 297ee755d3c6cd7e7d3770f298f4d4d4b000665943ae6d2888f7407418a9a510
MD5 830898d4b7918a5f5798b819a9270fe0
BLAKE2b-256 e90ea1b19863fac42ae2a3661f50b2c052908ae18d28b4cbb7e01d8c0b5693b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.41.0-cp39-cp39-manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 44.2 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.7

File hashes

Hashes for grpcio-1.41.0-cp39-cp39-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 2882b62f74de8c8a4f7b2be066f6230ecc46f4edc8f42db1fb7358200abe3b25
MD5 70aa7a171a2cd9d8d4a0c97e5d250a83
BLAKE2b-256 a214f1a2f12e7cf40f2f338e7d311c117c8c3ba553ff5a3f90103d4e581b2dc9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.41.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d0cc0393744ce3ce1b237ae773635cc928470ff46fb0d3f677e337a38e5ed4f6
MD5 9e344dd383bdc55ff431b4218c336b27
BLAKE2b-256 81ee70d5d6af9a2f350eba3e951514fbba3dca5b12ee0fe24fad2933a4a4f6a2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.41.0-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 585847ed190ea9cb4d632eb0ebf58f1d299bbca5e03284bc3d0fa08bab6ea365
MD5 4f92253a34e655752c63971070411589
BLAKE2b-256 86df11ae39701e8a9efc7d9496f3cf6b00db6c3a5f07febd03d953c18f6604cc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.41.0-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 5502832b7cec670a880764f51a335a19b10ff5ab2e940e1ded67f39b88aa02b1
MD5 3ef5320123d984290b7d09283d112a1f
BLAKE2b-256 856b977fccfde13982ca2cac8cd53e0a7cc363a54f5654e6ead4f16312435a96

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.41.0-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 056806e83eaa09d0af0e452dd353db8f7c90aa2dedcce1112a2d21592550f6b1
MD5 31e1fb011d096b1d1d6ad906c36e6b9e
BLAKE2b-256 bcbf41bd8318cead16875bb8dd518e34131d0edbf9409c1a3336460392ecc7df

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.41.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b2de4e7b5a930be04a4d05c9f5fce7e9191217ccdc174b026c2a7928770dca9f
MD5 ef2e45e0f7878194c5170a61cd807177
BLAKE2b-256 d19d5aeb9ee30a48187202db77a8b81b718d4b4cf058de3ca369c3969ac9ea53

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.41.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a614224719579044bd7950554d3b4c1793bb5715cbf0f0399b1f21d283c40ef6
MD5 ff3bb7a50c751331f083a5ddfcda3e6d
BLAKE2b-256 3bc1a73c8a96c864574d0d4d2c8be0468e8d7b8ac880c96684ad319f63e5968c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.41.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c1e0a4c86d4cbd93059d5eeceed6e1c2e3e1494e1bf40be9b8ab14302c576162
MD5 a7400738da3a90f234fa437af0c158fe
BLAKE2b-256 11ca9d31f3119594178418d14cb23ff92b60bcdba04a974a0023b2f1db69cbd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.41.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e516124010ef60d5fc2e0de0f1f987599249dc55fd529001f17f776a4145767f
MD5 3ca99d1401c8d18a69e707e4bf8718bf
BLAKE2b-256 12e8cc911762ef30d7ae6488b687cd3c07a27ad1d48e7509e6afffe9a3efbab7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.41.0-cp38-cp38-manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 44.5 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.7

File hashes

Hashes for grpcio-1.41.0-cp38-cp38-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 a144f6cecbb61aace12e5920840338a3d246123a41d795e316e2792e9775ad15
MD5 1d08ad104ba9c0d2dbd33dfa0347da88
BLAKE2b-256 291ec461ca85fd2fef1691f9f655a8b8164d663bb0cf46cbf145e85d4cb09d14

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.41.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c8c5bc498f6506b6041c30afb7a55c57a9fd535d1a0ac7cdba9b5fd791a85633
MD5 778311436f8b7eb31551c2bebd5b918d
BLAKE2b-256 8716270d21beb9cb6f60223b20265008734f3d6016b5200baa73fd99f1af799a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.41.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d71aa430b2ac40e18e388504ac34cc91d49d811855ca507c463a21059bf364f0
MD5 2da622352cfe5023a50473801337774c
BLAKE2b-256 1dbf65c0eb395a1b02e2a8d8c9b4c28b2f297445ede63d6548d637ed66879908

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.41.0-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 5d4b30d068b022e412adcf9b14c0d9bcbc872e9745b91467edc0a4c700a8bba6
MD5 fbc48f0882b4dd37557cda9c482eff77
BLAKE2b-256 4f8a7e8d50fd45d7cda1351cb41c39964953564a0164170f0174e5d12422e12e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.41.0-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 83c1e731c2b76f26689ad88534cafefe105dcf385567bead08f5857cb308246b
MD5 dd71154cdf57d0e6be0b17f2ac1af186
BLAKE2b-256 654162a240b22409002b737a9b458adbd546f4b1047c2c0ff1b79cfaa793e2d7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.41.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 dcb5f324712a104aca4a459e524e535f205f36deb8005feb4f9d3ff0a22b5177
MD5 c8f9151be16c90ddcfa0fbd7ee9f3235
BLAKE2b-256 7abde4443285fd5ae68ddef66188d3ea13974d7e45b88a1944a220c977991860

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.41.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 3bbeee115b05b22f6a9fa9bc78f9ab8d9d6bb8c16fdfc60401fc8658beae1099
MD5 39b8da9034c30a5e80f699f4724c716d
BLAKE2b-256 bc1182e20181784754395372324d3ddb185a490caa1981a1bc66eb1349e66af4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.41.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 07594e585a5ba25cf331ddb63095ca51010c34e328a822cb772ffbd5daa62cb5
MD5 676e8084aa263c9ce5c569a3d7fd5ee1
BLAKE2b-256 fe58aa3ef8bbf78679ab431aef8a8484c3da8290a6b470dbe170000759d845da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.41.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 39ce785f0cbd07966a9019386b7a054615b2da63da3c7727f371304d000a1890
MD5 caf2e4ab471256bedcd61fd1a0182d32
BLAKE2b-256 b46a13d81d1b249906cdf93559b343e3bcd1766aa6ec9aae2cc6f672a94de850

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.41.0-cp37-cp37m-manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 44.0 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.7

File hashes

Hashes for grpcio-1.41.0-cp37-cp37m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 7da3f6f6b857399c9ad85bcbffc83189e547a0a1a777ab68f5385154f8bc1ed4
MD5 b396954d3675acc5a1ed69aa38b6e7e9
BLAKE2b-256 726270034e7a1f0cb5d2232a3359883ab36f0a9c038b74341deee988cf90364f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.41.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c07acd49541f5f6f9984fe0adf162d77bf70e0f58e77f9960c6f571314ff63a4
MD5 1bdab01b94905489094927c424aca199
BLAKE2b-256 ce123dc4b844b5620d24c9d6ea066a83b77dbed03aad891235ca07a71451a59f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.41.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a3cd7f945d3e3b82ebd2a4c9862eb9891a5ac87f84a7db336acbeafd86e6c402
MD5 fa028f3e5e33121558b94f51fc315e83
BLAKE2b-256 e098f99e002b1206a1c72ae759b4f18a17742f74f60859557b4e13b5e9a0c5bc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.41.0-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 c95dd6e60e059ff770a2ac9f5a202b75dd64d76b0cd0c48f27d58907e43ed6a6
MD5 3aa90cb2e2b362eaa3fc58cc8c204176
BLAKE2b-256 5966458ccfa09d84ded0939921293c461220dc73597d412d7d36fe8e2e3aa272

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.41.0-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 9674a9d3f23702e35a89e22504f41b467893cf704f627cc9cdd118cf1dcc8e26
MD5 2d37de3cc3c69e36f6b816647157d166
BLAKE2b-256 365d01dd4a3b8da0ca4c35b95168bd2b151510374803a0d5b75c4682565f4591

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.41.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 0abd56d90dff3ed566807520de1385126dded21e62d3490a34c180a91f94c1f4
MD5 7227b11baaac6d47dc632e183b042dbe
BLAKE2b-256 39266a56e4b473c7579de07f0b00cee732f9a64e1daaaf9d7caf4e62cf885605

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.41.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 59645b2d9f19b5ff30cb46ddbcaa09c398f9cd81e4e476b21c7c55ae1e942807
MD5 290fffc3b787ca50af62e19fcae254a4
BLAKE2b-256 f2dbedd0f07f4254757ae7db39b3858adc5ef7a116a790971e8d0472b91f25b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.41.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ccd2f1cf11768d1f6fbe4e13e8b8fb0ccfe9914ceeff55a367d5571e82eeb543
MD5 4cbe9c2d48fb9b35fa277b4c5248aec7
BLAKE2b-256 41b6afa23f9858cd0d349cd2843682525ff5378bd182fdf8e80b74faf2ebc3fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.41.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3a92e4df5330cd384984e04804104ae34f521345917813aa86fc0930101a3697
MD5 4ca1449722d7041b329aa9238b7845b2
BLAKE2b-256 1d75a74cbf0d386448e4c3f88f395c5a70f5ce8ff33d74592378e25547f13c99

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.41.0-cp36-cp36m-manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 44.1 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.7

File hashes

Hashes for grpcio-1.41.0-cp36-cp36m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 7b07cbbd4eea56738e995fcbba3b60e41fd9aa9dac937fb7985c5dcbc7626260
MD5 ff77bde524dfb52590293a961da98009
BLAKE2b-256 38093239dd89a4b22dadbb46a461b56ca220becad9bd7388836e321ef9c9412e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.41.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 462178987f0e5c60d6d1b79e4e95803a4cd789db961d6b3f087245906bb5ae04
MD5 ee4b40ba6830e6e0adfc1cf9dd10340a
BLAKE2b-256 daab92475df9356b23590639a0c5515c1f852db39e674912fae199b12264def9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.41.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1820845e7e6410240eff97742e9f76cd5bf10ca01d36a322e86c0bd5340ac25b
MD5 dda507ed8492427d7d484d73f4f8898f
BLAKE2b-256 12efbf0a75596b24e3316ec30f5d3b42aac422b0e49687947bc818142d35497c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.41.0-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 5292a627b44b6d3065de4a364ead23bab3c9d7a7c05416a9de0c0624d0fe03f4
MD5 6965c9fb0db029c5c0405fd9c79e6560
BLAKE2b-256 822545f62f0e074c1a8a0ba5fd5197be0812696722201ab20d8c322ccd1b4cde

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.41.0-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 b6b68c444abbaf4a2b944a61cf35726ab9645f45d416bcc7cf4addc4b2f2d53d
MD5 2aeb951fed82dbc97afc949da4799fe9
BLAKE2b-256 3b34e4a2afcfd3f90b023c9130c4e5deb297aa5ddc99daaedb7d235d4a7be8cf

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