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

Uploaded Source

Built Distributions

grpcio-1.44.0-cp310-cp310-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

grpcio-1.44.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

grpcio-1.44.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (4.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

grpcio-1.44.0-cp310-cp310-manylinux_2_17_aarch64.whl (54.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

grpcio-1.44.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.44.0-cp310-cp310-linux_armv7l.whl (60.7 MB view details)

Uploaded CPython 3.10

grpcio-1.44.0-cp39-cp39-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

grpcio-1.44.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

grpcio-1.44.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (4.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

grpcio-1.44.0-cp39-cp39-manylinux_2_17_aarch64.whl (54.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

grpcio-1.44.0-cp39-cp39-manylinux2010_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

grpcio-1.44.0-cp39-cp39-manylinux2010_i686.whl (4.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

grpcio-1.44.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.44.0-cp39-cp39-linux_armv7l.whl (60.8 MB view details)

Uploaded CPython 3.9

grpcio-1.44.0-cp38-cp38-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

grpcio-1.44.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

grpcio-1.44.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.44.0-cp38-cp38-manylinux_2_17_aarch64.whl (54.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

grpcio-1.44.0-cp38-cp38-manylinux2010_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

grpcio-1.44.0-cp38-cp38-manylinux2010_i686.whl (4.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

grpcio-1.44.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.44.0-cp38-cp38-linux_armv7l.whl (60.9 MB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

grpcio-1.44.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.3 MB view details)

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

grpcio-1.44.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (4.4 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

grpcio-1.44.0-cp37-cp37m-manylinux_2_17_aarch64.whl (54.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

grpcio-1.44.0-cp37-cp37m-manylinux2010_x86_64.whl (4.0 MB view details)

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

grpcio-1.44.0-cp37-cp37m-manylinux2010_i686.whl (4.1 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

grpcio-1.44.0-cp37-cp37m-macosx_10_10_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.7m macOS 10.10+ x86-64

grpcio-1.44.0-cp37-cp37m-linux_armv7l.whl (60.5 MB view details)

Uploaded CPython 3.7m

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

grpcio-1.44.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.3 MB view details)

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

grpcio-1.44.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.44.0-cp36-cp36m-manylinux_2_17_aarch64.whl (54.3 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

grpcio-1.44.0-cp36-cp36m-manylinux2010_x86_64.whl (4.0 MB view details)

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

grpcio-1.44.0-cp36-cp36m-manylinux2010_i686.whl (4.1 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

grpcio-1.44.0-cp36-cp36m-macosx_10_10_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.6m macOS 10.10+ x86-64

grpcio-1.44.0-cp36-cp36m-linux_armv7l.whl (60.5 MB view details)

Uploaded CPython 3.6m

File details

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

File metadata

  • Download URL: grpcio-1.44.0.tar.gz
  • Upload date:
  • Size: 21.4 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.9

File hashes

Hashes for grpcio-1.44.0.tar.gz
Algorithm Hash digest
SHA256 4bae1c99896045d3062ab95478411c8d5a52cb84b91a1517312629fa6cfeb50e
MD5 28b287b08e65313c9a70f55ab1db313e
BLAKE2b-256 65758b706e1170e2c7b6242b1675259e47986bb4fc490f29387989a965972e6e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.44.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4ee51964edfd0a1293a95bb0d72d134ecf889379d90d2612cbf663623ce832b4
MD5 52a055bcbd4eb624cb5bc0e126b14349
BLAKE2b-256 61c5abf1e430561246dc0517e8ad92ad60e42a17c0eab7a62bb9d3f6334a8ab6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.44.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/3.10.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.44.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 41036a574cab3468f24d41d6ed2b52588fb85ed60f8feaa925d7e424a250740b
MD5 2f2505f16a87d1e7b60f808fc364cebc
BLAKE2b-256 8355f1754f8bd4024d078ae87ebb381bea7be7fceb306d23536c62b3a66cd23e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.44.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1e22d3a510438b7f3365c0071b810672d09febac6e8ca8a47eab657ae5f347b
MD5 ae9498fd5db773b48128f1d6b0c8bb7f
BLAKE2b-256 7cd45c55043df5f05fc780359fc5fe9e77f0b0709d01839ec4bd37438ec68e56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.44.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3d47553b8e86ab1e59b0185ba6491a187f94a0239f414c8fc867a22b0405b798
MD5 052e1c330fe3edf142b8a348cf2f593f
BLAKE2b-256 e3f89d335b4cd261771752332cfdb9452b31fa0c81dc9a7b3915611c7290032d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.44.0-cp310-cp310-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 5f3c54ebb5d9633a557335c01d88d3d4928e9b1b131692283b6184da1edbec0b
MD5 0f4bf8fd293706dd04cbf73f3e223804
BLAKE2b-256 b5d83f8c773c1a26caa50a441b49324fcbda007c4d0e839b1037266217fb6526

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.44.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/3.10.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.44.0-cp310-cp310-macosx_10_10_universal2.whl
Algorithm Hash digest
SHA256 9a86a91201f8345502ea81dee0a55ae13add5fafadf109b17acd858fe8239651
MD5 41b7bec5bd6f3efa8bcf8963d05d7156
BLAKE2b-256 5373972df49733bc60f77452efcbb7ba087fcfe89b432f7d0c9fad68544d56ef

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.44.0-cp310-cp310-linux_armv7l.whl
Algorithm Hash digest
SHA256 11f811c0fffd84fca747fbc742464575e5eb130fd4fb4d6012ccc34febd001db
MD5 961604d50fc73cb011b5c3007448d689
BLAKE2b-256 42980e5c94596eb48c096b91d24dd0cffb8106bbb018294394cd1fe016e18f91

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.44.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 3.4 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.9

File hashes

Hashes for grpcio-1.44.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d2ec124a986093e26420a5fb10fa3f02b2c232f924cdd7b844ddf7e846c020cd
MD5 8d78a3b0e69ba46cb1e4ca054851c667
BLAKE2b-256 e229059a2555a38dacd066a7a83fa7f735d1b6ff6b1cde3e62cdd09597dbe7be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.44.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/3.10.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.44.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e50ddea6de76c09b656df4b5a55ae222e2a56e625c44250e501ff3c904113ec1
MD5 0732c6fafce3b4edad36f2e0e1df779a
BLAKE2b-256 4b8d5da53dbf3530bfc19bcf81cca3109bdfce22f94e6599ee3db223b0c338e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.44.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4fcb53e4eb8c271032c91b8981df5fc1bb974bc73e306ec2c27da41bd95c44b5
MD5 85829c94ba6e076af71526f191772283
BLAKE2b-256 55e87de0fdd337632f7ed5bd267472f067702d4089b58bc06e5739511380b9af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.44.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a8d610b7b557a7609fecee80b6dd793ecb7a9a3c3497fbdce63ce7d151cdd705
MD5 84e458ccfb9ea241921bf8b3fc4832df
BLAKE2b-256 0b6a9c41d50f0c39c6da19bc9c2d27743dca9447d0f73f80f78989f45c3c0b6b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.44.0-cp39-cp39-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 871078218fa9117e2a378678f327e32fda04e363ed6bc0477275444273255d4d
MD5 1ea563d4914ab98921ed2d5161251d42
BLAKE2b-256 103f0533846f6448c73c0c9eaa57bbd7bf076e9b13dedb1fc7ad22e2acdfdd0c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.44.0-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.0 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.9

File hashes

Hashes for grpcio-1.44.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e2de61005118ae59d48d5d749283ebfd1ba4ca68cc1000f8a395cd2bdcff7ceb
MD5 2d57d0528338549b90fb0ba901534f42
BLAKE2b-256 f2c930632461724b7a3ca859b6726e7ab70e8d792d4e08da06045735f7a8d283

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.44.0-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.1 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.9

File hashes

Hashes for grpcio-1.44.0-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4201c597e5057a9bfef9ea5777a6d83f6252cb78044db7d57d941ec2300734a5
MD5 d17b432f599abe689395447736f4288f
BLAKE2b-256 d0ccec20d7d492b0b2d7bebebc19e3ec13ea3b70ec5ad943b1fd3f464e9f262c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.44.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/3.10.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.44.0-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 cf220199b7b4992729ad4d55d5d3f652f4ccfe1a35b5eacdbecf189c245e1859
MD5 834b5d2999674ceeb704786ba55d9a6d
BLAKE2b-256 2302324dcaacfc7c11c00e86f03f318092407663eb52e9684ef0c44af72a3857

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.44.0-cp39-cp39-linux_armv7l.whl
  • Upload date:
  • Size: 60.8 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.9

File hashes

Hashes for grpcio-1.44.0-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 c5c2f8417d13386e18ccc8c61467cb6a6f9667a1ff7000a2d7d378e5d7df693f
MD5 69b49529259b463ab42feacc10570cf4
BLAKE2b-256 90f6900f63bd7d78db62713f8599d98030d1af1a43accd173a3a0e2b5954ab4b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.44.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 3.4 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.9

File hashes

Hashes for grpcio-1.44.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 13343e7b840c20f43b44f0e6d3bbdc037c964f0aec9735d7cb685c407731c9ff
MD5 dcdf895716246dcd41667b00289458be
BLAKE2b-256 d5a10f893b9e639c89181d519e20f10373a176e666936feb634980c19f0132fb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.44.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/3.10.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.44.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 dc3290d0411ddd2bd49adba5793223de8de8b01588d45e9376f1a9f7d25414f4
MD5 afbbab8265beabf58d42bce505f8f558
BLAKE2b-256 610cdcd6f8a86de1aa29c5f597be8a21311eeaa24b0fd6f040efe60000c58a38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.44.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 36a7bdd6ef9bca050c7ade8cba5f0e743343ea0756d5d3d520e915098a9dc503
MD5 fba2a039ea773f0cc75e2f65990f8959
BLAKE2b-256 5b92a00eed89bae16e48644f514c842b1cc6deaf0f79cb7dcfeda2dc514e11af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.44.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8fa6584046a7cf281649975a363673fa5d9c6faf9dc923f261cc0e56713b5892
MD5 e26ed746b101b80d1368bb62c8f9f605
BLAKE2b-256 f71047060cd72e190f4cbe1a579cc5c15667b3a3fc5b479619198b570e4b5838

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.44.0-cp38-cp38-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 e898194f76212facbaeb6d7545debff29351afa23b53ff8f0834d66611af5139
MD5 4567446cd95b9548588c74d141319c04
BLAKE2b-256 ab4ad3b3bcdd3eba0b9a9b0bb9752a813fb856df6aa5061da3a2900f33c50762

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.44.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.0 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.9

File hashes

Hashes for grpcio-1.44.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9075c0c003c1ff14ebce8f0ba55cc692158cb55c68da09cf8b0f9fc5b749e343
MD5 85bb568b75221093145c84673d76ebf8
BLAKE2b-256 b46f40ae3f63c944705d5ce31cec02dd8a5bf1898ebdf828269b8da97c47adfa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.44.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.1 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.9

File hashes

Hashes for grpcio-1.44.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ccd388b8f37b19d06e4152189726ce309e36dc03b53f2216a4ea49f09a7438e6
MD5 6a4361384849ec2b1b2357b684756886
BLAKE2b-256 c7bc9513390807ce0265c5a072345bd57da90173ea9f82d5744a25e433a5386a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.44.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/3.10.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.44.0-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 bfd36b959c3c4e945119387baed1414ea46f7116886aa23de0172302b49d7ff1
MD5 02d84e7ed4ace55bf23198dc7a76b377
BLAKE2b-256 4e059975d04ecb33d94e2aa9fd60d6201d2faa294be74f14ec4cf048579fe315

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.44.0-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 19e54f0c7083c8332b5a75a9081fc5127f1dbb67b6c1a32bd7fe896ef0934918
MD5 174e9e35013a794eda4ae4282ddf7645
BLAKE2b-256 c57a35c847b757de67bef35b058049481ad970a4110094cc1ca523e6e9db46cb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.44.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/3.10.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.44.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 f6a9cf0e77f72f2ac30c9c6e086bc7446c984c51bebc6c7f50fbcd718037edba
MD5 bc7a0c736521239e1bfe6c08ffe08a0d
BLAKE2b-256 3f894920de0ec2ccbcb26e3f8941c20ba797807d49b11d4424d71cf001c646f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.44.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.9

File hashes

Hashes for grpcio-1.44.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 be857b7ec2ac43455156e6ba89262f7d7ae60227049427d01a3fecd218a3f88d
MD5 ac9c791d0e371ccdcdc8b8572887b2fa
BLAKE2b-256 48fff46afbaf2f7400476443de2a916a63c7959bda7b701b06cd0c5305b1cdcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.44.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fdb0a3e0e64843441793923d9532a3a23907b07b2a1e0a7a31f186dc185bb772
MD5 8732729bc1fd4f91c1c8ae680fae507d
BLAKE2b-256 5128000d6b7ef31e08721477be3fdc03c0c844e8aa1f4ffc84a002f7e7683d78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.44.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6641a28cc826a92ef717201cca9a035c34a0185e38b0c93f3ce5f01a01a1570a
MD5 6019bab1530839c58acd36a839d55e36
BLAKE2b-256 4a7412a8a3bc717254e1e6c828dd178410546a808ab12b1d88ffc06afa427b01

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.44.0-cp37-cp37m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 c122dac5cb299b8ad7308d61bd9fe0413de13b0347cce465398436b3fdf1f609
MD5 580b5076f313fa7fc71440ec3a7afe1c
BLAKE2b-256 4accc16c23d63adea0fb532a0f279106b038044745583aa2b82b3169b14cf1b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.44.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.0 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.9

File hashes

Hashes for grpcio-1.44.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 89b390b1c0de909965280d175c53128ce2f0f4f5c0f011382243dd7f2f894060
MD5 ff3c41ee32fd9d7c2c50c22614f9f6fb
BLAKE2b-256 cf021ca896d0cc3b528a35000a55e7237af92db446acac83664ada7a25a2fe7d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.44.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.1 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.9

File hashes

Hashes for grpcio-1.44.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 bebe90b8020b4248e5a2076b56154cc6ff45691bbbe980579fc9db26717ac968
MD5 8d6bede8933b1f51ebd41d729c525c31
BLAKE2b-256 070e07957839bd5f8af0df03b99ab9eb88c0e2723aee047fdc46848ec88300e5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.44.0-cp37-cp37m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 4.2 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.9

File hashes

Hashes for grpcio-1.44.0-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 14eefcf623890f3f7dd7831decd2a2116652b5ce1e0f1d4b464b8f52110743b0
MD5 13cec3c1fc3bf36ee14151def8496ae0
BLAKE2b-256 f657531faec65f86581e9ebd17ed0ff8818697a3aa7ed1a499f7b06c8dd0ef30

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.44.0-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 cd61b52d9cf8fcf8d9628c0b640b9e44fdc5e93d989cc268086a858540ed370c
MD5 829af30d7e8e84c42ec87b0ae1b52094
BLAKE2b-256 7b1f33515ba6b434ff9e066a1f5ae8405c5103f01ae534e47693bd30df86192c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.44.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/3.10.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.44.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 790d7493337558ae168477d1be3178f4c9b8f91d8cd9b8b719d06fd9b2d48836
MD5 11662aa65ead07b8ccec9b162a8a7a8e
BLAKE2b-256 2bd0150d654fb11813932b92dd0123526aed8257e8a4bc9c42f726a51767877e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.44.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.9

File hashes

Hashes for grpcio-1.44.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 b8d852329336c584c636caa9c2db990f3a332b19bc86a80f4646b58d27c142db
MD5 75e7b04f338fac3d80491225e81f6888
BLAKE2b-256 a9848d7f1e239b262431b159835005c2c2da42b3a1f5f1ac471bc8ba3c564648

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.44.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 898c159148f27e23c08a337fb80d31ece6b76bb24f359d83929460d813665b74
MD5 dbca38e92894375921108904bb429981
BLAKE2b-256 a633152e05445decf5b1ce50e04e17bff9dade4bcd88f54b85d8bb37360ae29e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.44.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 46d4843192e7d36278884282e100b8f305cf37d1b3d8c6b4f736d4454640a069
MD5 8dd5423c725b94b60f00d4f96432d62b
BLAKE2b-256 50b9fcd2b00ebabb02a9115bcb5fc131dc16f5f8544848057b892346f084358e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.44.0-cp36-cp36m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 b81dc7894062ed2d25b74a2725aaa0a6895ce97ce854f432fe4e87cad5a07316
MD5 bfb94170fbb6471e5a7ece4581904fcd
BLAKE2b-256 ca7331c2c75bdff541716e07333533bae1d23e7cbbf0a85d0a381eb7b1850e44

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.44.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.0 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.9

File hashes

Hashes for grpcio-1.44.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 05467acd391e3fffb05991c76cb2ed2fa1309d0e3815ac379764bc5670b4b5d4
MD5 883e0c6b9120439dea4f29924151ac6f
BLAKE2b-256 cfb73407387f790c896dd41e31cca51612d79b4b68d758428f44c3ee431cacc5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.44.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 4.1 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.9

File hashes

Hashes for grpcio-1.44.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5c30a9a7d3a05920368a60b080cbbeaf06335303be23ac244034c71c03a0fd24
MD5 4e4eae3c622384ed8f71c6b923d70e5f
BLAKE2b-256 ea27466c66f7b7874f9b633120e1d8938b9e5b7458e93176c4c5b4ff01ec9c6e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.44.0-cp36-cp36m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 4.2 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.9

File hashes

Hashes for grpcio-1.44.0-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 0ac72d4b953b76924f8fa21436af060d7e6d8581e279863f30ee14f20751ac27
MD5 743dbf3ceca1d9fc6e6ab65e66896f8b
BLAKE2b-256 49e3b4b1b3f5615eac1a799dc951bfe22281c2977b57923d255ba847d9eb4fe4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.44.0-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 e2149077d71e060678130644670389ddf1491200bcea16c5560d4ccdc65e3f2e
MD5 9ab2f192d050e9453003e5a840ef0ed9
BLAKE2b-256 67266c73cf089dbad83a60096ed1d1560d6a73de526fa4e428bed898f7a7a1e3

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