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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

grpcio_tools-1.42.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.42.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

grpcio_tools-1.42.0-cp310-cp310-manylinux_2_17_aarch64.whl (31.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

grpcio_tools-1.42.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.42.0-cp310-cp310-linux_armv7l.whl (36.8 MB view details)

Uploaded CPython 3.10

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

grpcio_tools-1.42.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.42.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

grpcio_tools-1.42.0-cp39-cp39-manylinux_2_17_aarch64.whl (31.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

grpcio_tools-1.42.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.42.0-cp39-cp39-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

grpcio_tools-1.42.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.42.0-cp39-cp39-linux_armv7l.whl (36.8 MB view details)

Uploaded CPython 3.9

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

grpcio_tools-1.42.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.42.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

grpcio_tools-1.42.0-cp38-cp38-manylinux_2_17_aarch64.whl (31.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

grpcio_tools-1.42.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.42.0-cp38-cp38-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

grpcio_tools-1.42.0-cp38-cp38-macosx_10_10_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8 macOS 10.10+ x86-64

grpcio_tools-1.42.0-cp38-cp38-linux_armv7l.whl (36.8 MB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

grpcio_tools-1.42.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.42.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

grpcio_tools-1.42.0-cp37-cp37m-manylinux_2_17_aarch64.whl (31.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

grpcio_tools-1.42.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.42.0-cp37-cp37m-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

grpcio_tools-1.42.0-cp37-cp37m-macosx_10_10_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.7m macOS 10.10+ x86-64

grpcio_tools-1.42.0-cp37-cp37m-linux_armv7l.whl (36.8 MB view details)

Uploaded CPython 3.7m

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

grpcio_tools-1.42.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.42.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

grpcio_tools-1.42.0-cp36-cp36m-manylinux_2_17_aarch64.whl (31.0 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

grpcio_tools-1.42.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.42.0-cp36-cp36m-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

grpcio_tools-1.42.0-cp36-cp36m-macosx_10_10_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.6m macOS 10.10+ x86-64

grpcio_tools-1.42.0-cp36-cp36m-linux_armv7l.whl (36.8 MB view details)

Uploaded CPython 3.6m

File details

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

File metadata

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

File hashes

Hashes for grpcio-tools-1.42.0.tar.gz
Algorithm Hash digest
SHA256 d0a0daa82eb2c2fb8e12b82a458d1b7c5516fe1135551da92b1a02e2cba93422
MD5 0e49b90fc6be44314e5cc4a1baa4563f
BLAKE2b-256 bb868f24c42448d2074c801176225cdd4f742fb8b0a0a7ee85382fdfed2dc8a8

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.42.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/4.0.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.42.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bd0cafd2017d45e48ac03b3831f36441334c31ba0bcbd7d9001b120d04268867
MD5 0603812ce9861179d6a917671ded4601
BLAKE2b-256 1bab8b8c902d5bbdf6b9484948367543c04a83d22806e327c0e35260acd1ba81

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.42.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/4.0.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.42.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f76cff42ccbaa95f803d6ecd92067e925bd820042dc941ae8eed5f57b628a85e
MD5 49786b56bab0dad47719ce65d2eeac15
BLAKE2b-256 7b359568485ed44bdcf5d58495594c8b11246731314200e8587f2be71ccd959a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.42.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 acd1e6f3e939a062fbbd9d5a26e87e263844cd1d3565ae429d9662b3d1c6bbcd
MD5 2d0d61d271b794f5361826e6a921c3ab
BLAKE2b-256 703c15b4e2293ee3078a91ac217ef93fc16810ae38ac56190b5e6fcdf598ec57

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.42.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7c90310b6edd3d3ed07e9a90bdfc7948c7be5e973f399e5157050b0fc87282ac
MD5 24df50e860d596555bf0f8c85d04ac4d
BLAKE2b-256 1de8da8f563fc7a981eabbbfb20c2214060d2597c6afe9de9c9c7599c566fe50

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0-cp310-cp310-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 b3e97344ae35cf57b70981fc1a3f48d8a3a9bedd3663c06dbff0ecc5419fd29c
MD5 882b1f68d8681de3f1a6804c0494c497
BLAKE2b-256 da7d21d3a1d0fe2575f985931938fa0e66f80d116c3c55c1ef6d3ca38060c08a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.42.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/4.0.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.42.0-cp310-cp310-macosx_10_10_universal2.whl
Algorithm Hash digest
SHA256 e2f6caad3b0872fe197a84bd49d8b31f5006b0e6437056de2b9f22a8c85cabe0
MD5 2d6c30b48f4aa201f359a48820caca48
BLAKE2b-256 ed53a391a858c0be5f9cacc8159bb329ba3087106a86fd8daee1ee7572d09655

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0-cp310-cp310-linux_armv7l.whl
Algorithm Hash digest
SHA256 67447309196fdc0ea779959a99210ec5b8167274c528044c0781975741fbdf20
MD5 c6c5c907dafabcb11432d0174c18f445
BLAKE2b-256 68d361670011b9b93512f60fbea8e9b62500ec41a33548f60b25e5663becb5e9

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.42.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/4.0.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.42.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8df874b9f3d28343baf713a227ae801102cc0a14fc41696cdba89462835df6a1
MD5 c60ab65785ed256dfb068bc1f4e49a7c
BLAKE2b-256 d8f918fe9785a77fb12e6ceb9e46aa3a321e344a29ba7f562344283bad71f9b9

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.42.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/4.0.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.42.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 840559ea51d97b8d27db6ea632183b800af7c04ae451bf59262a9204617ea981
MD5 974d51dc0d3631769b3c088d0f0d2b56
BLAKE2b-256 ad244dfaa58db231d811651ae73b33b07caf01d521a75032e5ee60e49ec93fe4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.42.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d934077076018ce3a2a7a6597ee50275cf0cbe0d3d59098e5ca5c3f239f6c5d8
MD5 3cb075302ec2477a5187958bffc0feb1
BLAKE2b-256 d3540b8d9ee90e5ed439d5ac782cec24cc4b532881968ec00e2264be9f90310e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.42.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 649cd111965995a765978268f030cf91da2daa61547792d4bde9e737fbeeb88b
MD5 6b54e574e09b8f0e7879cc7857957b76
BLAKE2b-256 4acce0c7c5b9e0176a8a505db06dddaa9f58d7af338fa9d5b8e9e3285d3f0c3b

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0-cp39-cp39-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 837d9efeaa940ec0a7e1105ed8b926711f7b41ce86e8d26fd63d2099de4b0df6
MD5 7b931dfa689d1ebb82c9ffb0d591e365
BLAKE2b-256 8aecf9a8ba38a8d6c5694e441e9e8f9d149f43b98166440addc18a0a320abe47

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.42.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/4.0.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.42.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e4fe886a001c204273be2e33c68ec6ed2280b029ec871401239c60fe13c18309
MD5 03bcabcac1b54697a6cceac41fa793a2
BLAKE2b-256 d58346979302be1633169f94f5e47e72a2fd0d4f1c09d7327732c7b70e59713c

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 dfe9d60c4b09d8137c4065970e4e75b6a5ca2a4eef0f6db1d1c763c4e50171c4
MD5 ac84484fc6680bc49fc32cdabaea035b
BLAKE2b-256 c9af9019903ab2c9e5d814bc5b07891428f39df5ff29fa187e3c40976b1de5f3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.42.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/4.0.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.42.0-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 a4cfc18b3f34bd045feef9b7c18dce391bfd1fc6e7877dce560fc2b9acda0d10
MD5 14a1874a84bb5b376f575a5b49100fe4
BLAKE2b-256 f57ea46ca5e68510bb66deb680f398c8298b4c25ae03f9bf4a469bc564a21cc2

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 6bc53d11783c69449702d6a0e90ec85e1bf91d6b9fafcafc9021c71a9b7e3165
MD5 d16fb8249c1422e4410faba9c79bdd79
BLAKE2b-256 f13d672235b31310547d0787acb3ffd1d23e2933a44b50119f352217acfc702b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.42.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/4.0.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.42.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7002beacb0a1040dc544b3fe7cff65a4726f3e1bdbaa83e4714a2cbf79346c54
MD5 d335be2d9905be6da02564e1f94aa906
BLAKE2b-256 28abe83b0e31e27e34e104fd89f16f422f812432a1dc6a7e8c75a5c64e4b66bf

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.42.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/4.0.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.42.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 75756eca7683c0fc6d011017f37d4039a9b7c3c3f68c7ae107dd88efd71aa421
MD5 bf3380e16f97712707d76bc5a8107ed1
BLAKE2b-256 f98a3c7d7a30e9684cfc0d8aef3c122c8c489c6363d7c410286ec90c561ca7c0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.42.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c67933f604a537b25a4c4747c3771cafc3b126420d44cb28d602d9bd52c304d
MD5 d40bd0ca506eca2063bdeea927e32493
BLAKE2b-256 508aa2500807a2dfdd693788090c73a605b39f05b77bf652d32c85d9af87a54f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.42.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a73ede0610c3366ba7026803d52424ba30dea30e523c7f94b91f70eecd525f83
MD5 3bead78159f69852047a4c55db15a4d0
BLAKE2b-256 f96f055233cc304d77edd31181e894aa85c89ef4c6c77e444c9ccd7b2588d9f8

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0-cp38-cp38-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 1d3af9eda66028ec9e5bd0af8922314ae5c710915e3b26b6ffae9b3318b89aa8
MD5 240d2ee60d7a361405a0e5bde988a656
BLAKE2b-256 ea90c900b8765aec696895a218886d5d0d1907a2e9684d479fd2d2662e493c95

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.42.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/4.0.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.42.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 db4fc105c1c9ba3beb8423fa8cab62cd0aaa35fa9bd72f617b4bc1d0a1027b32
MD5 4fc846516854209a97ee1c2dd74a5a9e
BLAKE2b-256 395f771cc759dacff5241d6b05c13161c9cecf54615b3e614b0fdb53785f7514

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5a0e46b37768a680a018b36805f4465fff09dd9b7be58b7d39c42e60ec7c0fa4
MD5 26e13c0c14819ab048596da978c312d6
BLAKE2b-256 a0767088b01e1b8510771a59885bfe374cd94592f8f841e7824a419bfad7f86f

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 7f22493b71b25966769154ca14574f4e8b7f30cb2512725bdb1d926fee53c37d
MD5 4083af654237093e00f321c1c7baf39f
BLAKE2b-256 9eebf22dcbb6ea5342812f1cbdd6ca231d0ac41e5c1129ef87e365e769828d65

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 dcc6c97264183f948dcf2025b80c399db729aa6cce97da7facf48a7683de3ded
MD5 b225b2387c50d81051bcea946ac32e2a
BLAKE2b-256 778716665d937800a2df3bbfb32a49b44cc6d081eb5f2289ab4e5840d7267c1e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.42.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/4.0.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.42.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 962206c4fba534dfe300aadf8b847aef7eaee39873c699d5eab4cb659b32dcf8
MD5 a8bb7747579ef5621908f6f36eaeaf10
BLAKE2b-256 8ea2fb6ad12f0b3c02be348b54ff29421e7e38d570b17235014317b21afbaf77

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.42.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/4.0.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.42.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 8f733945b84c86722906c15d6621cdbf6adb5c297cfcdb69427fe964547e701c
MD5 97f7309a664a3c90d4a2af8e798cecf0
BLAKE2b-256 80c6b5071a7e10c0ea45a5a50455d2d47313d54ac3fe637b160b29b509aa0c77

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.42.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd35c55a68f76554348da5faec2863e666dcae87f111271013cf3d4ddb3f0413
MD5 33de1ed868bc4c9fb9543d6234fb6df8
BLAKE2b-256 704ba9e4f27495f97665f305127e48794e28b9dd230679d520749f8c1c6581be

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.42.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bce8922ccf0dc64dcdac1dcc2be967f40c2cc9d16a8fc8f50bfbe670abc017ec
MD5 d663dc9fd98c400df0538a772f213f13
BLAKE2b-256 4e406745a3ce2fa737316e20ddc36ac35522dedf5f47ea5a58639ec6a880f417

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0-cp37-cp37m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 a571db5065d6c3cf8a4eeaf19e6196fee6b6ffadb5d235d5f2e8e054c344cc81
MD5 0d96d367a7941b1f0ee6cb9f705b211a
BLAKE2b-256 fac0538c63c5c4f2ad76718870896c23f9aeaf33cad857a4b2c6ca06c1e1704f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.42.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/4.0.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.42.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 28ad66858426895d0a0fce5b908b82356c51ce7131fd9df931809c39233915ca
MD5 f956872d92c98bbe316145968d284a33
BLAKE2b-256 d9f1d7219a4b140bc0da2c4a35b0d3e6002fb7059373b7ac625d71fe8582f9b0

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 952cc3ab80297f8aa7617864de64f37f970fde76613e68c26bbaf2fa73e76168
MD5 bdd92adecccf041900ef3a0901548fbc
BLAKE2b-256 d834983f1c673db181f5398cc48c93f196b01166200d7c30b4488b17fa041886

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 0d6b1376fc517304cf86bf6a23bc692747cc25c8944b68c28960f64fd6e9d8f4
MD5 a1bdae45f81f0abce82ead120f3bf71c
BLAKE2b-256 b537c8de6db4f586dde7fbdd5ed1594dad165242b4d626931b5c1cf29c45f4a1

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 8555e9f09fdb3dd7ab3bbf50548d0a136e0c43a4438aeecb5646b44022a67c22
MD5 246059e32e713bdea0f6d989dbb5827e
BLAKE2b-256 d2ad4e14ea1ca34075fc7a81b54269a1cca9e81067e34d406b26b66084ceac1a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.42.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/4.0.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.42.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 1315326c12343d1fb85a1da715f4f7a54ab17ee4c951eb675113002bb1014edd
MD5 93d01d84a576e54f71bd81b87abfecc9
BLAKE2b-256 08eaa30975123d22aa791a913a41277ebc4b25ea2272bb7e47e2fcc4ac4c8c53

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.42.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/4.0.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.42.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 c49c435a6494e83e918cfacfa403d418996d9dbbaf516bbebbe3cea67c465c68
MD5 330deba78aa0ef66b9c37fb8d738dd88
BLAKE2b-256 c1b5c2447c1edf18fd67dc97083ff1cc089e7c5aeb6c0e939275e78e6489d44c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.42.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 361e48504472ab741757c019271cf70444d15456c8f299ef9bd5f88211461221
MD5 520c8010b831b6c1ba34e86b6fdbfe31
BLAKE2b-256 99e3fb590af8f758181adce46f3393952a65099eb1456a87c31d4f9d530bdcdf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.42.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7b982222efa5c545d7dec57bd0ad832c510d2227a3ca6bd62f3d243d12a1d0fb
MD5 b7690ae0ca1b3f6f766a2efac91027bb
BLAKE2b-256 afa331fe18327d0a338936c6a66552ebbf2c6da3361e8c390270b11f3198643a

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0-cp36-cp36m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 2c162eaaa8514862fe8008cf5be8f61f15e083c3547ced888be0590e68919c35
MD5 6e3909cca4905a277e0a70be4c58f6a4
BLAKE2b-256 0a515ca313e33db84ce0e624441f39aa5f6e8ef6ad25d940cd7f64052350138e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.42.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/4.0.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.42.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4e67fcc9aa46c8b6cf5e6ee72897c372fc2be8fc5654b868d0e17857fd8ede38
MD5 e53dc91d4ddf1136b49ede4965e498bb
BLAKE2b-256 8a38494dc00979d1789676f2ed903bca77c1e6b138f6ff375328378d00503d9e

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a665dea4b31484e75358e815650892675e8377c444cd7b9a1b80363b5968adbd
MD5 ea63b3ba6c66e06dadbad650933f29cc
BLAKE2b-256 7fc1aa2d0b5c57df07cb350d1f7831e0739368fdb7bf2879f442b18914352e54

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 fadd44afc67beae908fc8f8b40371fe08b5ca061a0c22c1b9c2978e2e09d3920
MD5 d2461022627900dc9b7df2c964cf55e2
BLAKE2b-256 c633b1f24710017ec5918c60615c3d28484f09e85540bcb8e771478c93d5919e

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 e2146d5427b836e67d920a18d84e13ac26da7794efe73c5c484ad559b301db41
MD5 e4b03f8fd9de5a6174a35e1bd3096005
BLAKE2b-256 95f4c98a8d4eb53572c4bdf7c06715582ca2ffa5643b2829e83702f06f8275cf

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