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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

grpcio_tools-1.41.0rc2-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.0rc2-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.0rc2-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.0rc2-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.0rc2-cp310-cp310-linux_armv7l.whl (36.6 MB view details)

Uploaded CPython 3.10

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

grpcio_tools-1.41.0rc2-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.0rc2-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.0rc2-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.0rc2-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.0rc2-cp39-cp39-manylinux2010_i686.whl (2.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

grpcio_tools-1.41.0rc2-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.0rc2-cp39-cp39-linux_armv7l.whl (36.6 MB view details)

Uploaded CPython 3.9

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

grpcio_tools-1.41.0rc2-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.0rc2-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.0rc2-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.0rc2-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.0rc2-cp38-cp38-manylinux2010_i686.whl (2.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

grpcio_tools-1.41.0rc2-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.0rc2-cp38-cp38-linux_armv7l.whl (36.5 MB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

grpcio_tools-1.41.0rc2-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.0rc2-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.0rc2-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.0rc2-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.0rc2-cp37-cp37m-manylinux2010_i686.whl (2.4 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

grpcio_tools-1.41.0rc2-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.0rc2-cp37-cp37m-linux_armv7l.whl (36.5 MB view details)

Uploaded CPython 3.7m

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

grpcio_tools-1.41.0rc2-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.0rc2-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.0rc2-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.0rc2-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.0rc2-cp36-cp36m-manylinux2010_i686.whl (2.4 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

grpcio_tools-1.41.0rc2-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.0rc2-cp36-cp36m-linux_armv7l.whl (36.5 MB view details)

Uploaded CPython 3.6m

File details

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

File metadata

  • Download URL: grpcio-tools-1.41.0rc2.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.0rc2.tar.gz
Algorithm Hash digest
SHA256 7cb27abff87e21bbf820f885f9e439f1312b1320bc0a6358e2e9cfa632d8fa02
MD5 d0f168579d0d177f52949c0aa31b3340
BLAKE2b-256 81457f9fce3d123d60f74a83a459bed691f9db2b8ab432dd23c424e1eb9da106

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0rc2-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.0rc2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9a490332784bc189b04478a8e90dadfc8a46321f17803438e3491eef14e2bb2d
MD5 48952cb2c5f7c2692905f11b94005984
BLAKE2b-256 dabfd6dbcbabfc546bfcaf264fc8a04a438e0f0e20fcefe0e47226de3671ed87

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0rc2-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.0rc2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9ac871ad3c4b1dc6f6a306d8e8d5e7645d977f4982e1f010b3c3559ec210cfbc
MD5 3554811e89863c2bdd2c61c2dd8205f9
BLAKE2b-256 a9b5d92a9866b0c6d66de3eaa8c0c15dfaef196437efd75cad7db665fe8c5011

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.41.0rc2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d665fbd37d8664e542d566b68bb1ef47de031d331a52debcbb88e049a89aa985
MD5 07a92cc4f2b6f14d979ba9536a5f8377
BLAKE2b-256 92fcc7faabbebbf5ab5e89a1cb7f6050f8cbb337a69cbf14c3d4eb7f2790a6a7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.41.0rc2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8f8742f2b9aafe49b5339c462af5ed01987df27074f88742bbc352ac32d16ab5
MD5 97b4443e4d75f326dfd91ef4819d1172
BLAKE2b-256 8fb3a8d2022479e2969bbabebb8cf6f9e4cc85b7d8b9aa4bbcc126741a0d96ff

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0rc2-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.0rc2-cp310-cp310-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 5bd4a4141093af4d08e9044f924ccfeaf99f43780ccc095ef7d566b50a2656ef
MD5 3208c3f1c070ff0c8554967da7ae1777
BLAKE2b-256 7377d9142641d0a11231f0e1d6bf94a9b9268f95cfd6719de2e2fb7a52f7cf3d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0rc2-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.0rc2-cp310-cp310-macosx_10_10_universal2.whl
Algorithm Hash digest
SHA256 eed52ff46f96f940e7d16a5627381247c3fe0c6d6fe4e686ea1d159c153b9f66
MD5 efa090e262bd89e6f9e46d4e8fd2a0df
BLAKE2b-256 f5a6ca846f057a2f484c4b0653bf767df1c2385968e1612050b5b6270cee3cc5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0rc2-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.0rc2-cp310-cp310-linux_armv7l.whl
Algorithm Hash digest
SHA256 68c0594471e742d55f3c4efb422cb4ffda856917f3959fa6e28f527ae42de628
MD5 f2d7ee4e75518fcf0b9be0d50d290925
BLAKE2b-256 cb8962b7e04b89c11d8da9e26e6aa45e06fbb9d39df952f8bc7453129f6804c1

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0rc2-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.0rc2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 43f69ee6b0a517c9a8b16985c78a2767781e1938ed77ee0fab805f12a37d99c1
MD5 24514105e27644fa17fda94e7cd4bf6e
BLAKE2b-256 2f18ab33e67e8fb2d00b8a9244a7830482c70831a66a3dd7106a117951aa56cc

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0rc2-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.0rc2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5e020a6238c16b079b36e65709486c015cba09e395f392a9eb92e7e67592463f
MD5 7776e96bc4437b5b5f42d102dae94a82
BLAKE2b-256 1e5721874ba551931fdc4ecbfcf50b4f6849fc731706aac76084044f6e4b27cf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.41.0rc2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0f261214bf4ca8ffed049c93f4b7d969ae77574cfcd45fb276c3fa6513969934
MD5 40ff0c05a25edd6558d8905fc07cf124
BLAKE2b-256 09b42e674a6dccd3da97c9fabbf6cc0b2cf0a943225696433240dbb36d8abe92

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.41.0rc2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1c99bc1332887b5756f21d816a19b7cf89e783cb3f2d4867223577be1a70a254
MD5 ef21393d2bbf9b3448e3ff7c71d7b934
BLAKE2b-256 e8c09406c465292b74088366b182515a5214544ccd1c1cfac6f158eb3fcc3be7

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0rc2-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.0rc2-cp39-cp39-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 fea9e4fc4d52f7a9dd8bb44f407b0e96c0438c0730d9ab66734d577b62c6be07
MD5 8302567efce098f5cae8e0a46713fe9c
BLAKE2b-256 884ace9e043cf6b5b8ab269a5844777c446831ae4bc18c50e0ba38828abf7e9f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0rc2-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.0rc2-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 58882a1a475c59865905f8671ccceee0fd465479b558bf5fa2385742930635d3
MD5 649e93bb3c5b53eb5a8e92fb289537ad
BLAKE2b-256 7e7a2b5b6ee5338ea36b4bc26a8f70bf34cf82f62e998658c1a9d008e5def28d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0rc2-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.0rc2-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6e3273a36e53dec6f4757951c6b2f41e55674ed10f529b637a6d03bd048a3ec1
MD5 4b9a565bd8bcb59c03ccf9723a1efc8d
BLAKE2b-256 61b880740adfed84ec98c42b78d2b306d57193ec203c2cfb67292acc54a89bd7

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0rc2-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.0rc2-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 102baa6a905dfa3c42dba4e25b3c650e4b12e30bb06e5e2bf80298e50f1697fc
MD5 98225074a6958604de21866a949c8341
BLAKE2b-256 a5820ff240e620c880335bb0c2968470035fde08aabb5ea44aae1111a15c7a19

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0rc2-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.0rc2-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 d7f96fb0663230c61fa1c0a9734234231b88501260a1a899835429a0b1bf4f55
MD5 b32d4fb6347dd882dd26f397eaa8a65a
BLAKE2b-256 e254a4f403096599eba18f4c8363510dc4dc0f456b17b840aff147b87cd466e7

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0rc2-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.0rc2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b4ead57584a66a9b51a0b291d8b6b79023779882f54002b9286c6f076a5fefda
MD5 a9485b2ca836205b02a373f8401de2fd
BLAKE2b-256 0c95ee8b39c46d9b06c9dc10fb5317a5a44092b43cb797562ec599b209bfd1df

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0rc2-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.0rc2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 7aa71c8ef7aa6bed95a6a29caf96109d20430030afb915de0cdbf90ad9da9b47
MD5 cfa6705a1e4ee8c1c2edfa778dbf55ea
BLAKE2b-256 bdfc54182df265a41e5633dae62b1b3745d149320ba780815cc1a825e97f91c1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.41.0rc2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b25bf6c241902aa59c514fc2e068830c053baa97b2d95d470781a76b875075e2
MD5 4cc277c6045204b883caa6072a59477c
BLAKE2b-256 b88286447f607fb1012887d3d037365f47f0e4644dfdce419a10124699757392

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.41.0rc2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9b22a0ba7517f97a513da50a9e9fd586cf759cb385fc1425244f05f899f5cd3f
MD5 df4a2c1ac946ec59a5ff2ca50a0ead55
BLAKE2b-256 84c2142bf0e23bf7521b435b0bdab79c9614eaa9f3bab58afcb5e02afd2d3505

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0rc2-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.0rc2-cp38-cp38-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 8f75ce9267e8312362ab4186f2f5eb4222dff06f3b86a07dca79c4b8d62cd82f
MD5 3e1996228f4c9733eb57551b091738c6
BLAKE2b-256 93f9e7fb80ae8ef5d4bc772fafef28edaa7cfa2059b67570068284dc02a6d9d8

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0rc2-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.0rc2-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b8a8020ed9c3d953a2ba47885d9bdb738a7726454bbf96af06674b7460d59101
MD5 fdf1a1fae8cd176100e528e73ae72887
BLAKE2b-256 d03c785f4e7eb613a95f2fa137838d79b65bdf1b61c481bcc8249a7ab576c7c4

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0rc2-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.0rc2-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9bd90b96202b98ae60f45dbf180f6119a914e7809d29debb643155b8ebaef9af
MD5 e184017b6fdbd61616e65689662409f4
BLAKE2b-256 8b260bee7290a60acb9e933498d16d095b15cdb30b6be22c489f2ffa5b88ecae

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0rc2-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.0rc2-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 9c011d2a7ca2b6c07a1e8974a72cddd812d6c8a9d2588681fa3d6956dbd23eb8
MD5 96ff3bbfe33fd99774ef30d0da93985c
BLAKE2b-256 d84eec8c0fb4ef17bc8de24a737174325f5c668758bce46c55ff3eca4ad8f3ba

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0rc2-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.0rc2-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 e9e22c9205d237aef9d7986a9ebfaff3617369ccfdb3b772019e2bcc079df385
MD5 eae10327f2f60d122a89985193aaa6b1
BLAKE2b-256 5a0ccb6ecb8ed970b954fd3bdd74dfd801bbf27743610b12c3b34a6160bf89f2

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0rc2-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.0rc2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 aee45388ce7f3654cdae07a96557064479cf04e87729d470631ad2cf88e18cd9
MD5 147313e2bfd5cfb86ca720c39ce54319
BLAKE2b-256 703f980ca5ae311d2fb0967186d48855ced9f2fca193e4fc5409994846a3d1ea

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0rc2-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.0rc2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 9636872f28cf44bdc3c546fb664a46b87c68d43202d8fdbba59ae103fce95462
MD5 7747c2e95774709a1c0f1c4f00657f66
BLAKE2b-256 bbf02438bc1c957559b04649bc6a846397d1068f1a0a85cec3fb6d8d9867323f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.41.0rc2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8cd134846c2457d0e3464ed01cd7d3adaa963858d81f95962406858f0a1c8b95
MD5 17cf0becfbc77e2c4726f9a2d7ab3759
BLAKE2b-256 33f8d2799fe3ee7ca08c8ccae7ea2747ac958f7161619bddb84fd53bd2170f06

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.41.0rc2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 24b60aed449c6ff365623dcdd7f89cc6f5235688ebca8f0c976637ebaad15195
MD5 e2a09a4b9fd5a40c6d13d7cc4d3ffe5d
BLAKE2b-256 bc8b8de2b29744fa9282f8cbadd172310d2bee4062ec62f8168a71ca31e17621

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0rc2-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.0rc2-cp37-cp37m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 74cd69e713252e0e50393a5e338f99a756c4444bf850d5c8decbedb3ee79d164
MD5 4288f1aa3c86b5956ba2b77134836748
BLAKE2b-256 d07f7a5365cabc3e3d4249fccceba440dcb90f67810601626fc1816c5d66bbea

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0rc2-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.0rc2-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a55b179c88911dd5f07a389c7ac8cce96d9d5009d8370817574a5a67f445a0dd
MD5 78a98d3302cd93543296799aba5a1baf
BLAKE2b-256 c804ada1ebccc6033fbd0f6c23fba9e6be85b2125effad614fe238836a78cb94

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0rc2-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.0rc2-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 674d8188cd6adb6d8be94ac6a9425e61b751b283dc072db084a83404abb17a91
MD5 db06a89ab3968ef6f6588a6569d5fc89
BLAKE2b-256 ab25ce2991b6692a1385305ddc8ffec0c26aca176937ed741f870a633e809813

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0rc2-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.0rc2-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 a2394e220240f60e6858942cbe1c78bfaffb44fce55ca6856eb8b2689b4386b5
MD5 11aaaad39d5def86c4a2c77794f3a006
BLAKE2b-256 46303f806607194e0ab9ef5e4864a3c3d4765db883ae6c13fd55d44a134bd591

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0rc2-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.0rc2-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 4fca1f163a049d9accc167894a98ca6576e7463e085426a360ae053b16387624
MD5 f542c54f390d3f123810ac0cc0f9ff38
BLAKE2b-256 6d8711302b864c3ec9d713770cad39abf26905e74065f429e7c46477379a9cd9

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0rc2-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.0rc2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 c4ec23bce7a87998c263b732809ebe2fbffa9368367c0d358d86358af92236f9
MD5 df53450825faf84ca1659bcd22084047
BLAKE2b-256 eff1224a97f43dfcd6960af84e326685d5e17a5073403b487a2c4b6104adb5de

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0rc2-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.0rc2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 935195c11ac39f96d8ab043d8a2951dcea8a081de526062af785da1d89bef63c
MD5 34517643c2385f9054a703600b4ecede
BLAKE2b-256 b17fe128ff04983e731f7ad1e461cb48ee4f8db2a915a7e045b563af90f19f67

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.41.0rc2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f17e7d658d9642a2541cb94f45510c1952c800fa720dd58ca3d07904362e0fc
MD5 ce1cd0bec751eb1e2aed5103cadb6959
BLAKE2b-256 82da208f14a7be538b349b364e99423e4e8825d4fe157091ba0b66c0820f941f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.41.0rc2-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 14443dd27c0ed2a884709e9ec9618504295157923069500dc6184bb4d0103ca1
MD5 e103db136d12edf0c62d12a6953b6f5a
BLAKE2b-256 7682901b5b4aa30277c341a08b445bd1f0e8f802521c20f10d651e21cf6df671

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0rc2-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.0rc2-cp36-cp36m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 d3c7f2e4df8add5cf1288535c3f0cc69f258040f557ec352ab3fc30e88275c5d
MD5 9f07a97d7cfa1a324d90d4ee04c693bd
BLAKE2b-256 fa6299c933a3d59979725a6c134544d299153aa1a0fbcb2b1d9ee1f02f644842

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0rc2-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.0rc2-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f475e13b668842b9345cee6c4909e9ba7224565587cfaee81bde733d91ec393a
MD5 9ad43d443a3faed8bf3530c9fff0a0d8
BLAKE2b-256 fefd6de5f21efe563e98180ae38b2284c8727511fe55d9e58f7b47d54a937ef6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0rc2-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.0rc2-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d897c561d7d6e5275d6e6adada1b5593e3e7cd81685241f563983eabb7dd3020
MD5 ea884b1459a4aac646e47939adce6f4f
BLAKE2b-256 2b1b61e07b559e6887c2047938419f4571566f069fb785be14177a463da3a9f4

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0rc2-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.0rc2-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 559d9030964c01afdc2c26cab8d6c2a5237ff21d5cca0c6b4c5db9bc5079e2a9
MD5 9d0d731675bb72f860439534a4d34457
BLAKE2b-256 1f7dc45f782d7485479215a5324436c36f719ed91823e539176223ebd6554b51

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.0rc2-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.0rc2-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 d05a72c5fadbb2527066b748330353ea88f3eed3a17c292eeb09d4b484f5efea
MD5 49c0b7f4ec3d9bf623417dc22e06ea76
BLAKE2b-256 bc566250dff01ffc988dc243e80509db209df56516fd51dd62852c8cdf373741

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