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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

grpcio_tools-1.41.1-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.1-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.1-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.1-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.1-cp310-cp310-linux_armv7l.whl (36.6 MB view details)

Uploaded CPython 3.10

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

grpcio_tools-1.41.1-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.1-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.1-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.1-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.1-cp39-cp39-manylinux2010_i686.whl (2.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

grpcio_tools-1.41.1-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.1-cp39-cp39-linux_armv7l.whl (36.6 MB view details)

Uploaded CPython 3.9

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

grpcio_tools-1.41.1-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.1-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.1-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.1-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.1-cp38-cp38-manylinux2010_i686.whl (2.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

grpcio_tools-1.41.1-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.1-cp38-cp38-linux_armv7l.whl (36.5 MB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

File details

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

File metadata

  • Download URL: grpcio-tools-1.41.1.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.1.tar.gz
Algorithm Hash digest
SHA256 f16e4c63996ca8fe0af1eb9c4a07e5207874c4a69f890ccb824cd858521d981f
MD5 996aed341f805fc5018cd8eb861c6f6b
BLAKE2b-256 3c9bcf7092cbcf60930f36a204301640be0b95470d358cd53b57c84578cbb16c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.1-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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c6c1014acb907dba2faefc7ad0d79a2ac7b6ecebb4c6f327928e8d98ac44b544
MD5 b0418c84b750ef7c076cb79e50f9c7d4
BLAKE2b-256 e2d47ffa5ce467b43ba680ea80c2adb25fac9d4b1f309dbc460d592a1c409777

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.1-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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 eb6748aed8cf77280591570b71d8694360690b467937fbbdbedba788903b7301
MD5 2f6d4cf6f1b802f1c7ae9f2aeec3df23
BLAKE2b-256 ed1a24089926c584bb9a20e1fef610377d98eb1b7eae80914972e09eb75b8336

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.41.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 794dd3f2a4af440e11b551bf14516f961490a4a35bca1a0ea9f1d3b0275cff1a
MD5 5e23c1ed8749f2d87e48126fa84ae538
BLAKE2b-256 98802b6095ec9a73b32fe1d2fd8714ee0b6ce0423d9cfd0b602c2804e3f8d856

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.41.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1db24ac6b50ef747f650c40c2d7049a303fd57872b1c43e43582f989f9140eee
MD5 864be9c5d1e34a58c923264ce0c39061
BLAKE2b-256 a45ceab3c6ac6892bfb7b273188325b8d4bbcab4656824c3fdaaecc4df3322a1

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.1-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.1-cp310-cp310-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 36168c5a00bc020f4030758e60d4a3bc2418279b0425025eebb8d9fe0310bb61
MD5 b5a8d1da8b3e0de5634ccc6461d5d9dd
BLAKE2b-256 27f7f0e9423c7527aaf7629891ee833c3bc4021e3ba762fe60d601fc40404d9a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.1-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.1-cp310-cp310-macosx_10_10_universal2.whl
Algorithm Hash digest
SHA256 5d32f0371cb8d372c937ba0003a125aedbc702081de4dc8dac4984e6d2c0f6b6
MD5 163a815ba6259a8a37066baefc4f9e54
BLAKE2b-256 053af23797ea4819d0f45c7fa633a17b21e73ce8f41477beff255564023b5136

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.1-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.1-cp310-cp310-linux_armv7l.whl
Algorithm Hash digest
SHA256 5c7961c2c1f47faabd1be79326fa604ba7acbf2387105b0d514a2ccd16179302
MD5 727f2faa309e0481380f5cbb4a5ef8c2
BLAKE2b-256 789f40b39e0a1ee227d5100c6abe629e97c72f35af37adc08144a03a2936005f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.1-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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2149bb2c936bc83b24e0ed4e74bf6660d6e91f85492c65044956b25a2e1d8609
MD5 e5db66e081e229bd4b11bbf313ab87b5
BLAKE2b-256 8a20f932254234db21399993262eb9d84d0fa545a296f61c257ea9b205ac7a03

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.1-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.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f418c6dd993de1d7a4d279745f3593f1dd5ceab6d733e259b87c7e6beeb951de
MD5 a3fae0c6d164c0039519b0cc48a09510
BLAKE2b-256 7fc75bc5174771df34d68200b461934c660d689ef2dc5e06af1b9d628623fd06

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.41.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 91250fb70b57018796a22d9a27ea3819ef8573a3c6a960271cead310de606c57
MD5 880b42830dec54a28bb93abdd71b211e
BLAKE2b-256 a7b58123e5d9adb055f864d8c215ae21c5230910b3e4bb56c81f715515c2c8c3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.41.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1ccd0c5af4560e39cdf32c106cb9065fb5ab1a839c0f411ce342bb462cf74f65
MD5 e09b1272939e68013a3c84db8c5c9ad3
BLAKE2b-256 99596a7ca568191ad960661096cc811b638140e168b8f898e27b62f171ed3210

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.1-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.1-cp39-cp39-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 082ec573f9f1303b6adb7700df6c381871bba890d1a6e3238d12496181b88188
MD5 de6b717dd88b66c3575e52e760ebfe87
BLAKE2b-256 6082e871b986f358a45b0953e809fd093010614c1e0c5f959fb7c49b9d35c00a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.1-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.1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4cbe0589e462dd69139c9f3752c76b3466ae243eae81959c77965efc1fd925c8
MD5 5775515aeab3b25714bc62e6199a68e7
BLAKE2b-256 c2b9856897659b62cdcc1098a15d8e0a17824c5941da7f749557573590a2f4a0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.1-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.1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 fd2e2d99af0ae333707417c2a0b7ef90dd37486071a59ff7854d8ff23d5bac45
MD5 23b91bb79a0d369958c2a2541779791c
BLAKE2b-256 e93adaab7b59ff6ae397dfc33e7666ce3513546e78560e57cd87364d33fc5879

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.1-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.1-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 f59929960221a52f54ec1837b90365b2e7b6227443dc250ce620a7e8e4b46ef0
MD5 9eff16b73371da96dfc9dbb9a4dbadf4
BLAKE2b-256 ab2a0725600387ac79b0f71a19e235bd6d9a564fd33ae8eee9409b4e092eabb5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.1-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.1-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 d8aad0c3a4a9b16b4d7be989938a05a96495296e0aedae50e3f3e9131517c08c
MD5 a5f6493322b625d122c7c5c22a0e30b7
BLAKE2b-256 93a077949e8196371813bd4b2a448d4f5d447270e9bba399e5dd12060214af05

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.1-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.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1a4a58df69bcf9bf2792bc49aa7d74b24d044a56d09e529e6cf393095decd48c
MD5 9e3af57782284ce3b3e1a4023b06f012
BLAKE2b-256 fb39599f7aa419077db119ae6f0e48ab95edf2944f4cd604f0a0b0294a82c1be

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.1-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.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 bce9cb7159897974cbac8c48146d04a4b13d1e38e5c9f61745b8b6404f8c551e
MD5 10e119aa6da74c864f0d626b2f4bb3ad
BLAKE2b-256 af00d02c1e91f9a38549418fcb8d722c8051c11a4f1e417b53f1a487b7143e76

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.41.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 252cea08d5a9d8947e92e0a783e0a41690af8f7913f037e9af4b4fde16d567be
MD5 06e154a6faf5caa7773f4685fec18862
BLAKE2b-256 7116389a7338bf15aecd1ed6c139da028e3906af38fcfb73f431a217d0f8b650

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.41.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 550360617fbf2deb41e95d64b644fcb373ccaa7daed51b273ef9a10c6a5a2bea
MD5 48c90b62cb7056ebb5430e6cd98fddd2
BLAKE2b-256 a5d44914929960c3ffb46278219ef5fc086c02f6ebc88f4a6652c7c362425e1a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.1-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.1-cp38-cp38-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 0ef02428d0bd87c333e02ed5c43f15ecb5625ac93f14280d63359e8abb8f08a8
MD5 23ea77c50e2798975705f89797ce75c9
BLAKE2b-256 32314285c652477165eb33172b0dae1a3bae0580f861e150b1155abc44c5fded

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.1-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.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2c6b36881c4b6d4199604fb42253d2e1722d8e5c0e504d9e721e0a51ac5c5cbd
MD5 1a54a1fda032b47169ce8c5606da278d
BLAKE2b-256 0c77851632f1a2a8511d29071369792560ba2b009200d510d8b6baed9558bcef

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.1-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.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c664ffa4acc74c5d2a7d548a86167a9fd81b70d8dd4b0b9edd1e994889e44df0
MD5 46f84b46dd481d396e7c38447945d65a
BLAKE2b-256 40e19c1e54e80693f1268e649ce709a9d857cabc5953630fbba99a01e25d491a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.1-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.1-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 780db6b0cfdc0b02965eba126f1a5edaff50bcc0f7e96bb0e3f93658fe1a0b66
MD5 8ac47fec57e41835a53f7aabbb711ca2
BLAKE2b-256 b52efdd35b08b7e28b881cc802e9974ae3020f1ab6b2e69746dd485532a10cdb

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.1-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.1-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 1cbe254c7e9cf9a4b5d3be13384aafa69cb78c98d3b4bfead21cbea1c1b4f131
MD5 64894b85de5f8e442112e73c6d3d7fc5
BLAKE2b-256 4c5952f68b087991bd15b4c18ff8de4002e16aafac3a527901a19d730c39f875

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.1-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.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 39070f66cd789bdd6743e10813d4360cb13390ab21161bfa878d1679a2b8fd1e
MD5 7b69009eea088b671bbd5dc016d0b5d7
BLAKE2b-256 a1c14990423f668bc50c16bc49e204aa338b678c065aacb830468e1bb26773c8

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.1-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.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 cdcb9ca63423c1d88485d1870e27c4393dea9563604f3b1c30f6cb7aa8c60258
MD5 66a3130fb39b92007babc6da070ce5d2
BLAKE2b-256 ac7f668cfa0637cd95ebf3b535b0c783e99212ba4bd1fe617ca7b79d70e6f9f9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.41.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1135a65aa2c5347a3ec3614e6831adf94215eaa22cb92e828bd22e7652bd6fbb
MD5 2427085cbf3bb67e5779a4f7a9430aae
BLAKE2b-256 cc0aa5bcbeaba30447ef2cbebe8c870eb1578780bf2685567163f02780013be5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.41.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8bee8a1004389e70596407fd616f28cba4e8354a0e002011a7fc5e91d29572a0
MD5 cc305d8b550b480d4991825840bff715
BLAKE2b-256 99200bf10fb6b5ed93cb6c3670bbc7a33070788268591535104355a19cb67292

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.1-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.1-cp37-cp37m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 4b9dff509b80319123fd5e3de3dfcdb862ca91b7a180639ba476a1594c363a69
MD5 490a5fba3f83aa23e7715b62e9cfcb25
BLAKE2b-256 27ab91ee89f6113839b0bea935fc344802edd6696ef1272ed18072acbc6a87d6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.1-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.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a549fbba1e4aa1cb13e45025ea5dc15cbc89e50d94b3a558462f1c4378102444
MD5 2cdd5b2ecfe744866d50d7a3724ace97
BLAKE2b-256 e116f653631c94d5ec90525bdf8a3d6e3c7a2e038fef0bc78f918a06091c273a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.1-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.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 846d558f06405eeac403182c5f2bb800526268e3eedc9a9848bb9ea898a30ae4
MD5 f9b250234f3593034c04072df3b441ef
BLAKE2b-256 41df77132e16069c63530463b23c49fdc8e980f80a2b31e86889c99a462579c0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.1-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.1-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 f6bec85639fc8d23470fb224368dd0cf0fce3ae250cf392edba6d79d68e1c4ba
MD5 2f1a7a0cf53909b61c53acdc5e5b06cd
BLAKE2b-256 b607287026d29395334e15fc271f3a6e4031e3be21160763da6d5b0914e76645

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.1-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.1-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 1b9042ed70bdecfcdf1f2ff9b7e53bbf6404d47f90747954e3c18b506eb2f31c
MD5 31f816c8130640ab4cbff52978f9f68e
BLAKE2b-256 cadcb25008e477bdc6024909249e60f0c3b14da00476cbdecdc3886cb45e1d5e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.1-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.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 6dce70d332c6b9c95d60ce5049421602073914ee5770c559edce1ce9550400ad
MD5 057d59a1f864b55083a1ade767e1de36
BLAKE2b-256 f1b3bfa1fab6db88b58ecce2f56de93c9a3ebc82d7d1a47fc1cdae77adbc3dbb

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.1-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.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 4a7dd864f2ccb840fe6fd07f0e81a94e17a5510b86ab8edb8506088552e3cd67
MD5 72f868eaaa04ed3322ca733fbceb8789
BLAKE2b-256 7a32aacebcbc9864551741fba903738b1be9e4322d2faa0fc5c44f9fd0e5bb18

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.41.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 32ffdab1fdce423a3db489112a24a1ade5bab3d22f337dc63e9a0441e1dab1d7
MD5 7454f962faac5745e6cf87d572ef41d5
BLAKE2b-256 1f77892f316e4f0dd869d483e59b9db50d4b52143a9532e0fc968902e6fdf231

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.41.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0e8934968475b895b42439247d2a95683756c452dff95c57812af9c78065b061
MD5 0af44fde457753ff89d389cb72132282
BLAKE2b-256 71e47075922ae91d0186cb23b242ff8e778d4ca71d7530aa26cccba348e7423c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.1-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.1-cp36-cp36m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 a1f097c62ba60f0dd9e047bef919a0f24f79829d23b9116dbc6c5e3aa4dc055e
MD5 5d9a1eafcd8f05d49c596973c4ed4457
BLAKE2b-256 bdf34bfdc843975e51fe6594766d247203d66f4300f32ddd3b1a98c5d73dee9d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.1-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.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 19dfe6eab4924a934425993d2fe33cad60e3bc55a0e79b9ce4fd2e3e4399911d
MD5 d9d9bf55e8ccbce30a2a989d1b425925
BLAKE2b-256 e143d873d9893816ab8190becea4834f7064f68eae7fccf6959439ff267bf2c1

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.1-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.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0b79dcba5bdc17cb9e98aac8d1ecff301cf8cb3ff793f5cb637d27d7cde12ed6
MD5 4b5ddcffa9d70f9772f6c618f933d40a
BLAKE2b-256 9c6d7b4557131e071eda3da3f043d2f70a6004a0932014f07a81fc726404592a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.1-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.1-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 c13eb6c2a39079815ea1adad5a6bfeef5740955ff3eb765ba4aac1022010b426
MD5 9c11458d4893dbe2b1f8dd36e24f0d8b
BLAKE2b-256 9bf0f6c23c2deb993d45eebf81d7b3448eb96fb7a373c3199fec376ab872bdd6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.41.1-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.1-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 cebf44af95c6218e42ba9677dcf9be27d68904ee4c74881a787dd04fbeef3e48
MD5 08988311c71e96bd5dfab7f97f200978
BLAKE2b-256 cf633ab260cbceda4b5ca919e5c73fe23b4eba04f9a73e90a9c56e39ec00b81e

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