Skip to main content

Protobuf code generator for gRPC

Project description

Package for gRPC Python tools.

Supported Python Versions

Python >= 3.6

Installation

The gRPC Python tools package is available for Linux, Mac OS X, and Windows.

Installing From PyPI

If you are installing locally…

$ pip install grpcio-tools

Else system wide (on Ubuntu)…

$ sudo pip install grpcio-tools

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-tools

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!

You might also need to install Cython to handle installation via the source distribution if gRPC Python’s system coverage with wheels does not happen to include your system.

Installing From Source

Building from source requires that you have the Python headers (usually a package named python-dev) and Cython installed. It further requires a GCC-like compiler to go smoothly; you can probably get it to work without GCC-like stuff, but you may end up having a bad time.

$ 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

$ cd tools/distrib/python/grpcio_tools
$ python ../make_grpcio_tools.py

# For the next command do `sudo pip install` if you get permission-denied errors
$ 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 compiler errors on some platforms when either installing from source or from the source distribution

    If you see

    /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

    If you see something similar to:

    third_party/protobuf/src/google/protobuf/stubs/mathlimits.h:173:31: note: in expansion of macro 'SIGNED_INT_MAX'
    static const Type kPosMax = SIGNED_INT_MAX(Type); \\
                               ^

    And your toolchain is GCC (at the time of this writing, up through at least GCC 6.0), this is probably a bug where GCC chokes on constant expressions when the -fwrapv flag is specified. You should consider setting your environment with CFLAGS=-fno-wrapv or using clang (CC=clang).

Usage

Given protobuf include directories $INCLUDE, an output directory $OUTPUT, and proto files $PROTO_FILES, invoke as:

$ python -m grpc.tools.protoc -I$INCLUDE --python_out=$OUTPUT --grpc_python_out=$OUTPUT $PROTO_FILES

To use as a build step in distutils-based projects, you may use the provided command class in your setup.py:

setuptools.setup(
  # ...
  cmdclass={
    'build_proto_modules': grpc.tools.command.BuildPackageProtos,
  }
  # ...
)

Invocation of the command will walk the project tree and transpile every .proto file into a _pb2.py file in the same directory.

Note that this particular approach requires grpcio-tools to be installed on the machine before the setup script is invoked (i.e. no combination of setup_requires or install_requires will provide access to grpc.tools.command.BuildPackageProtos if it isn’t already installed). One way to work around this can be found in our grpcio-health-checking package:

class BuildPackageProtos(setuptools.Command):
  """Command to generate project *_pb2.py modules from proto files."""
  # ...
  def run(self):
    from grpc.tools import command
    command.build_package_protos(self.distribution.package_dir[''])

Now including grpcio-tools in setup_requires will provide the command on-setup as desired.

For more information on command classes, consult distutils and setuptools documentation.

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-tools-1.41.0.tar.gz (2.2 MB view details)

Uploaded Source

Built Distributions

grpcio_tools-1.41.0-cp310-cp310-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.10 Windows x86-64

grpcio_tools-1.41.0-cp310-cp310-win32.whl (1.6 MB view details)

Uploaded CPython 3.10 Windows x86

grpcio_tools-1.41.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

grpcio_tools-1.41.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

grpcio_tools-1.41.0-cp310-cp310-manylinux_2_17_aarch64.whl (30.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

grpcio_tools-1.41.0-cp310-cp310-macosx_10_10_universal2.whl (2.1 MB view details)

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

grpcio_tools-1.41.0-cp310-cp310-linux_armv7l.whl (36.6 MB view details)

Uploaded CPython 3.10

grpcio_tools-1.41.0-cp39-cp39-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.9 Windows x86-64

grpcio_tools-1.41.0-cp39-cp39-win32.whl (1.6 MB view details)

Uploaded CPython 3.9 Windows x86

grpcio_tools-1.41.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

grpcio_tools-1.41.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (2.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

grpcio_tools-1.41.0-cp39-cp39-manylinux_2_17_aarch64.whl (30.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

grpcio_tools-1.41.0-cp39-cp39-manylinux2010_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

grpcio_tools-1.41.0-cp39-cp39-manylinux2010_i686.whl (2.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

grpcio_tools-1.41.0-cp39-cp39-macosx_10_10_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9 macOS 10.10+ x86-64

grpcio_tools-1.41.0-cp39-cp39-linux_armv7l.whl (36.6 MB view details)

Uploaded CPython 3.9

grpcio_tools-1.41.0-cp38-cp38-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.8 Windows x86-64

grpcio_tools-1.41.0-cp38-cp38-win32.whl (1.6 MB view details)

Uploaded CPython 3.8 Windows x86

grpcio_tools-1.41.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

grpcio_tools-1.41.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (2.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

grpcio_tools-1.41.0-cp38-cp38-manylinux_2_17_aarch64.whl (30.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

grpcio_tools-1.41.0-cp38-cp38-manylinux2010_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

grpcio_tools-1.41.0-cp38-cp38-manylinux2010_i686.whl (2.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

grpcio_tools-1.41.0-cp38-cp38-macosx_10_10_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.8 macOS 10.10+ x86-64

grpcio_tools-1.41.0-cp38-cp38-linux_armv7l.whl (36.5 MB view details)

Uploaded CPython 3.8

grpcio_tools-1.41.0-cp37-cp37m-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.7m Windows x86-64

grpcio_tools-1.41.0-cp37-cp37m-win32.whl (1.6 MB view details)

Uploaded CPython 3.7m Windows x86

grpcio_tools-1.41.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

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

grpcio_tools-1.41.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (2.5 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

grpcio_tools-1.41.0-cp37-cp37m-manylinux_2_17_aarch64.whl (30.7 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

grpcio_tools-1.41.0-cp37-cp37m-manylinux2010_x86_64.whl (2.3 MB view details)

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

grpcio_tools-1.41.0-cp37-cp37m-manylinux2010_i686.whl (2.4 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

grpcio_tools-1.41.0-cp37-cp37m-macosx_10_10_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.7m macOS 10.10+ x86-64

grpcio_tools-1.41.0-cp37-cp37m-linux_armv7l.whl (36.5 MB view details)

Uploaded CPython 3.7m

grpcio_tools-1.41.0-cp36-cp36m-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.6m Windows x86-64

grpcio_tools-1.41.0-cp36-cp36m-win32.whl (1.6 MB view details)

Uploaded CPython 3.6m Windows x86

grpcio_tools-1.41.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

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

grpcio_tools-1.41.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (2.5 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

grpcio_tools-1.41.0-cp36-cp36m-manylinux_2_17_aarch64.whl (30.7 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

grpcio_tools-1.41.0-cp36-cp36m-manylinux2010_x86_64.whl (2.3 MB view details)

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

grpcio_tools-1.41.0-cp36-cp36m-manylinux2010_i686.whl (2.4 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

grpcio_tools-1.41.0-cp36-cp36m-macosx_10_10_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.6m macOS 10.10+ x86-64

grpcio_tools-1.41.0-cp36-cp36m-linux_armv7l.whl (36.5 MB view details)

Uploaded CPython 3.6m

File details

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

File metadata

  • Download URL: grpcio-tools-1.41.0.tar.gz
  • Upload date:
  • Size: 2.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-tools-1.41.0.tar.gz
Algorithm Hash digest
SHA256 3891b1df82369acbc8451d4952cd20755f49a82398dce62437511ad17b47290e
MD5 cfbca60fdfc18255b03bf51c77c40768
BLAKE2b-256 f0188ace4beaf76c4447bb456d6718ab46d04237d0c94842489d6e2e1496a68a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.9 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_tools-1.41.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5d15f5dd0c01f914ab15e921484b71aff0eff8aa123b22d76e71c76be8d81efc
MD5 fd963323d7ee0db752d83496fc5baa47
BLAKE2b-256 990458946c1bdc3f00b29317490200cea87f2d9ffebb8c8e79f6b0b72f2d6ea9

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.6 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_tools-1.41.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 55915c61baae316b607be6ff5be72614efc067e50dfffd389bde95c240a5416e
MD5 b007b48286f99ffd2a648bdd369222ad
BLAKE2b-256 029676ba49468e462e1161a33ee60f2784b3a0db33007d79113d4da2a03b1dcf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.41.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f52f7d8841372a047493ee9722810856a4adfa38330b4a688a1421dd3460518
MD5 519483b3c7fdb3bdb2285312d282b138
BLAKE2b-256 00ead2c617d0d5cc741e204cc7f80e598059233888a9bc55a67cb15309bb676b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.41.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 731c78b612ca672af0f4682e68d331d304a3eccd1836f0b89402c332aa653815
MD5 bf24277d08ef9ca0f9d5dea33d28e92c
BLAKE2b-256 6986c9de8bea571117d2eefaad615f155bd3561769c90b94290432b25372a3fc

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0-cp310-cp310-manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 30.7 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_tools-1.41.0-cp310-cp310-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 50a9f66502e4868c20bc0b8c1c7d3b21e6b6b2578a7aef6ce7c28294b9eba911
MD5 19b03f48a8525fa1164d088f9c882846
BLAKE2b-256 b123d06198819e8a20b5d45de98e48cd95aaf3df0de1367e5526f3768615d653

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.41.0-cp310-cp310-macosx_10_10_universal2.whl
Algorithm Hash digest
SHA256 609f6e4cad800f0b2caa0b46baefbb30444bddfc94d1429b9add02d5e6759001
MD5 fbc51c47ab2f21dd4a148986651c19f4
BLAKE2b-256 48c190da59cb3e638489485da7628d15c4be05088e51a5dab7ffd73c993c9748

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.41.0-cp310-cp310-linux_armv7l.whl
Algorithm Hash digest
SHA256 6622feec0a3f326fb86cf01bf1bcbfec23548ae4d80706d88b296d792d816f0e
MD5 039d4ded09b3ea27edd89cbf80307766
BLAKE2b-256 3597244dd6854e9db62606dbd173729831c68c6d946f49efd725c338ae55fcc0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.9 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_tools-1.41.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3f860f8a804f6ef6ea545483c1506d184f9bba40f635c6886d79791822c679e3
MD5 cdcdd5d3d818c7bf72e5bdbd9e9e09db
BLAKE2b-256 328ebb183050604414aae3b306ad195354a76438f836255dad1a8ab7a9960a6c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.6 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_tools-1.41.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b8e9181327b94886f6214cfe2147721c6b60138c111d78313b9070f4068020b5
MD5 7fdbf2b2b095b629e8acd104aeb1c215
BLAKE2b-256 eca9877e27cdd1241fd34e1c11257dca94b4dd24bbaef6885ca4cc8be0a3f2ea

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.41.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c13b6a37fe3619be603265a14a614f86fa97a95934e6447de2bc9e66f9a35590
MD5 8989339f408fa4ea5e95c36377f77ba6
BLAKE2b-256 cf19ed92c6be6e2395f97c6c670dabcbe3f9bdc5cebab47a7ed6d1852fc84b5a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.41.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 602b7dd5e52924794f19f637ec042bc141b7d9dd127ddc662b28c42f8db08e95
MD5 0f33e9648435b01f37569fe1bd99c1dc
BLAKE2b-256 6eb2659cdc1bf5d982a3876f22775d4c95aadacd80415a2bb7563bbf505d8713

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0-cp39-cp39-manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 30.7 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_tools-1.41.0-cp39-cp39-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 db64aa08ae500cb20c9f377e41a66e493c4cba27ab99710852340ef81c7d0e30
MD5 49d12584f06b4074d7e61fd3c72eff5d
BLAKE2b-256 3354f0871b0dcb47f4a3b9a04db3d0d0b25b6355334c5edf394eaf8abcffc357

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.3 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_tools-1.41.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 05730f1acd3fa70e63a62fe37377297774db7f4794fb6ae3e43f64aa354460f8
MD5 f94439d3c5ba0530205c96d25d8993b7
BLAKE2b-256 c92a2ce9210b2f45879bf2d45c4c14ac58929f5dcc6281effe0f6b0d279769ef

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.4 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_tools-1.41.0-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7242b39d16970319b11c13832f3474d09be53cbc88bc05c54140f5394a247184
MD5 7c54d4f87563618c2d75888797c2a2f2
BLAKE2b-256 4b5c22c2838e2031d8b4e5c88c8df30792ffce1db117df7bd27a255316cc7707

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0-cp39-cp39-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 2.1 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_tools-1.41.0-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 98d9e581bc9ad154697af40c0109221926628d57fab2a52a1fa2cfed401349d5
MD5 e3b47c5b1cd909a03a59be7ee685ffa9
BLAKE2b-256 fc412027a09c2f7964d25c5e741a17a695db967834ac33fcfafff641b41e2574

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.41.0-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 0d6489ed1310250f152d6170ee539e84bfc364bbfdffbbe98e8ce9297c4a1550
MD5 f5dd5133da6abca9176a6517273fdc9d
BLAKE2b-256 6d3ee559cc6f8a4b7fd030b4921ad2a09aac2174e169335ec1c3bbc5cc25421e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.9 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_tools-1.41.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3f6c2bff12e2015bd69c600710fb427720446034ed9a237cd6edf7e2452cf826
MD5 8ac93365525c5f780cb047a04f603934
BLAKE2b-256 39eff160bb0aee5628772c823ff91f0fd4b7484a982cc613e0305ef5bfb84ee0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.6 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_tools-1.41.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 3c7f6c8559ac6bea6029b8c5d188d24509d30a28816de02c723659f56e862b98
MD5 7a90f5df5e7c904af31bd5dc70336861
BLAKE2b-256 893c5c5894e6b039d0739649f2edc81a303cf41d96ea6c66ce762a274ee1915f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.41.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b78a3225302b60e59a922d909413b2c0de2ba19f4dc79273411dfad560e21418
MD5 284a11a418b8866e8efc2c32a298dc63
BLAKE2b-256 a14dbdf6445b2b803c2e05584e3a998d83a74b5163cf1b70ccf8259b5b8db860

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.41.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a1e2db4c90cb07d6b8f1526346df65da85dce995e7aa7c4db76bcc2a99dcbf43
MD5 145ae066525d94ee4fa97a6c41973462
BLAKE2b-256 2081e79639b7cdc5b42f4ffc75d4e8554ba383938997707f26f55dd8dd4ea192

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.41.0-cp38-cp38-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 7f3bf213d7b182628bdfb10854cc7b19d4882e1916786fc3a14f724555a7e824
MD5 c6c1b3a00664d9556df6955a02bb28b2
BLAKE2b-256 e63c595cc94f873ec3e8bcd97da555338a704144d8e5efcfd44e33af551ea2d0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.3 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_tools-1.41.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a4e08366f780b439499645fbb0b7788cccd978c06158b19e915726bfbe420031
MD5 4da9fcde30bf0d87c93fcc7245d63d33
BLAKE2b-256 3bdeebf20dad389b964dd36eb5fa759db904da5cb7b5492a15d0df07d66782ea

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.4 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_tools-1.41.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 898b032ddcd25a051c6c8892b76779b8821e073fc363e6105dc08efd95857bcd
MD5 1614b9a6495660de5b2cefffb8eb16d9
BLAKE2b-256 8169b45f263ac5e0c54f6729d7573c8c48314d880516682057955087ed6f5b6b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0-cp38-cp38-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 2.0 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_tools-1.41.0-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 8f7cd5b8eeae570743cfd0ece36f62b32424b995ee3862697cfe94bc9c4fa5fe
MD5 936fbd99619125ea036d81780bf01dfa
BLAKE2b-256 4059ae6bca5e0ecf7dd800264e09d6d8187ccacf85b7ebe9993e5b7aacc8475f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0-cp38-cp38-linux_armv7l.whl
  • Upload date:
  • Size: 36.5 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_tools-1.41.0-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 a111af9732c1ac85b35b894c4b6150127c52349ca220c0708d241d4bb8ee4622
MD5 6300e46417cbd742047452284866d487
BLAKE2b-256 274ab0ef458e23fd843afc26255bb8fa8ae3617a89406d1910188d19708160c4

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.9 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_tools-1.41.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 9ff9fdef6df6b3d1e4395158f4bd2bfab58867370bd4b4ed81a1a2ab20de085b
MD5 794754d4570f27c6e875a45b05809b80
BLAKE2b-256 46d86d84a1c2dd1f4a1188846f77e569aaed257c51d59ac014e9c79310e776fd

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.6 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_tools-1.41.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 2d48309bbbb2d7144117748718ca52eb60f10dd86a0cb8a0a5f952ee08575bee
MD5 f325c4b66360c1a4b361a69bf7f2d476
BLAKE2b-256 fc8f06df39365a6eb3489128039798215b1209b0b16e51667927720a8da6fb1b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.41.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8cf6ab58c14b7bd4cf5b4d652e2bfafc6543d38210d68332ccccff4733bcc615
MD5 73072cedf2b76a22bf275b74a9919745
BLAKE2b-256 2c0e5b20b3967715628ab149fc3631549651ac224e2cec9865355edd36b4869c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.41.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f4c03f312877e57b47beda2e9db5a39bc3af65ee22b38e85b4c0f94b3b9c26af
MD5 e5165222a0e111f9a38e595288a0077e
BLAKE2b-256 dfc8f61c5c5670574a65f877459a7d2cccc41e05169682ec0927c2dc409b730f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0-cp37-cp37m-manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 30.7 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_tools-1.41.0-cp37-cp37m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 57f35fd71366f1eecd4c08b9d8eda1007d371827f092ae916b4235744e9175a6
MD5 3021addd45efe5515bf64a03a3a01d9b
BLAKE2b-256 aa0159757bea8f00db84d9bfcbf9b48c4e5152e511d1dd106f43beebba5b121d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.3 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_tools-1.41.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5f85be3053486cc53b41fe888957f61e98d6aab74b0726a54cf35e4a685f2b96
MD5 ada383e0049c876fde3ac72cf8bdd3fe
BLAKE2b-256 4572e0724ec960a185e61db974753e37fb7946c1402e69a5ec9c8aad4ca715a7

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.4 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_tools-1.41.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 17a759203f627b941086a65a0c3f39c5da41f11d11dc8ca5883e844c055876dd
MD5 f291d6bc8352ca13112d5e180bdeb424
BLAKE2b-256 91bc46916454793ba6ae17caaac6ac6e4e59ffd08d76ca7e20853a142e69ea45

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0-cp37-cp37m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 2.0 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_tools-1.41.0-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 51bdc4bd088592d5f52b5cb6d3be072bf0d847a7af92e544f9885acdf5de1252
MD5 0fc5e7b66f9448071fff008fe09349e9
BLAKE2b-256 f7eae65554a21e615fd004587620177c5dbc7934618afbb19253ab7d64d61c10

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.41.0-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 022ea466300fd8eee03375795c764b8d01aee7ba614c1d7ba198eef9eaebc07a
MD5 c12f0f4503de4fd80f8ec3e001802be9
BLAKE2b-256 f8458ed4f515507327424bb150a53c6adb462b5736f0269e793a8b2d94162939

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 1.9 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_tools-1.41.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 4b48c13dbbf96d36a41e45fd011eeabc1541ec8705f2d533fa4c20634f750885
MD5 0c4890850780019b1a18c8faf109323f
BLAKE2b-256 7ef82701888c67c686dc42b45f27c6799b51e08bb27119fbd43004d6b3df8573

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.6 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_tools-1.41.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 08654c9f723fa644be52cc8f975c01bb93a99808ab02c2e64a20e9c9e92c9a3b
MD5 a1eab82c0d75fb0e05c7fada356f95af
BLAKE2b-256 e0170319d108250ecc1e01629aa5bc72cae91bc00ecce6fe78736d055fe8c099

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.41.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c93137598d5f2b4d163aff571197be92d3c691a5d82dabb29b1ef467e3c29db6
MD5 e78d05e7400eeff9ba5b36bab53f74b2
BLAKE2b-256 ea28c020c079375eb64e6b8911080b35daf35c74e878942953e884bb639841b8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.41.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dc65beee944735d4cb42c8c43e284ff711512d1f7a029bdbaeb0729243f3a702
MD5 737e309d8a4d7285f98b55267e1d2d8d
BLAKE2b-256 65a54f24dc171ffc854d8dc9369eebbdb4fb1de51ab20c286075c7726ec53c32

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0-cp36-cp36m-manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 30.7 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_tools-1.41.0-cp36-cp36m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 7145e9243718bd8a4792547efb1443846cebb3d36d49dca52d5f9edfb81aa256
MD5 30780676362b74d41e91510e4b97f237
BLAKE2b-256 8255282e257f085163b1b8264c509437bd90c7982ffa49431e60e91751e59e04

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.3 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_tools-1.41.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 85b4cd4a77c27df984dce5b14eafa29c54abd134335230b59fa8d096c995b877
MD5 abfbc627a2138e0f6de26112c68b789e
BLAKE2b-256 e03fb88535bc24e4cb4a583273e21d2a84c4266133ff0168b805c43ed563a031

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.4 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_tools-1.41.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e1814b98a955aad08107eb4c4f068b1cd147cc923a2480bc2fae51007bb7866b
MD5 5ed1256d2714da015abbbead5c22e92c
BLAKE2b-256 b6781834cf975d502501d3070a9d4569654185d80f01c113cc946b36ebc80492

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0-cp36-cp36m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 2.0 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_tools-1.41.0-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 5b1edfcfa4f21c210bfe66534af9fa5ca37374bb0e0d1754018e0d92c8fe4c8e
MD5 e86202ba7698b39f5d0ab0f3e6650143
BLAKE2b-256 3a6ab9593b28fe0f41368d652506e250d01a5d10dbe12066c67f1fbc7d2bb72c

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.41.0-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 ceefaa88c066c9c779f15e8d58d57d3763efef3d0dbec483be99bc75ae0e2d70
MD5 db58f40e650ce1373eea7fa8aca45572
BLAKE2b-256 8c00470027526faccca2ab1c1c46a6e2ced290071e8f241049cf85d83c3e2ae3

See more details on using hashes here.

Provenance

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