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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

grpcio_tools-1.45.0rc1-cp310-cp310-musllinux_1_1_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

grpcio_tools-1.45.0rc1-cp310-cp310-musllinux_1_1_i686.whl (3.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

grpcio_tools-1.45.0rc1-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.45.0rc1-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.45.0rc1-cp310-cp310-manylinux_2_17_aarch64.whl (31.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

grpcio_tools-1.45.0rc1-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.45.0rc1-cp310-cp310-linux_armv7l.whl (37.3 MB view details)

Uploaded CPython 3.10

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

grpcio_tools-1.45.0rc1-cp39-cp39-musllinux_1_1_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

grpcio_tools-1.45.0rc1-cp39-cp39-musllinux_1_1_i686.whl (3.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

grpcio_tools-1.45.0rc1-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.45.0rc1-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.45.0rc1-cp39-cp39-manylinux_2_17_aarch64.whl (31.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

grpcio_tools-1.45.0rc1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

grpcio_tools-1.45.0rc1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

grpcio_tools-1.45.0rc1-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.45.0rc1-cp39-cp39-linux_armv7l.whl (37.3 MB view details)

Uploaded CPython 3.9

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

grpcio_tools-1.45.0rc1-cp38-cp38-musllinux_1_1_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

grpcio_tools-1.45.0rc1-cp38-cp38-musllinux_1_1_i686.whl (3.0 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

grpcio_tools-1.45.0rc1-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.45.0rc1-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.45.0rc1-cp38-cp38-manylinux_2_17_aarch64.whl (31.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

grpcio_tools-1.45.0rc1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

grpcio_tools-1.45.0rc1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

grpcio_tools-1.45.0rc1-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.45.0rc1-cp38-cp38-linux_armv7l.whl (37.3 MB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

grpcio_tools-1.45.0rc1-cp37-cp37m-musllinux_1_1_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

grpcio_tools-1.45.0rc1-cp37-cp37m-musllinux_1_1_i686.whl (3.0 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

grpcio_tools-1.45.0rc1-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.45.0rc1-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.45.0rc1-cp37-cp37m-manylinux_2_17_aarch64.whl (31.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

grpcio_tools-1.45.0rc1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (2.3 MB view details)

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

grpcio_tools-1.45.0rc1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

grpcio_tools-1.45.0rc1-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.45.0rc1-cp37-cp37m-linux_armv7l.whl (37.2 MB view details)

Uploaded CPython 3.7m

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

grpcio_tools-1.45.0rc1-cp36-cp36m-musllinux_1_1_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

grpcio_tools-1.45.0rc1-cp36-cp36m-musllinux_1_1_i686.whl (3.0 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

grpcio_tools-1.45.0rc1-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.45.0rc1-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.45.0rc1-cp36-cp36m-manylinux_2_17_aarch64.whl (31.3 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

grpcio_tools-1.45.0rc1-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (2.3 MB view details)

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

grpcio_tools-1.45.0rc1-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

grpcio_tools-1.45.0rc1-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.45.0rc1-cp36-cp36m-linux_armv7l.whl (37.2 MB view details)

Uploaded CPython 3.6m

File details

Details for the file grpcio-tools-1.45.0rc1.tar.gz.

File metadata

  • Download URL: grpcio-tools-1.45.0rc1.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.9

File hashes

Hashes for grpcio-tools-1.45.0rc1.tar.gz
Algorithm Hash digest
SHA256 d90880a1ca335c1e79ace24459c0bdc95ad5af493ba8f0c89b2a4ea09641785e
MD5 5ee7613ef6e7fcf8b295f7c848b4bdd0
BLAKE2b-256 566628b5d5dc3cf4b2db380ae3740ae101f6457e5b16a956d28bb527d671e120

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: grpcio_tools-1.45.0rc1-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.9

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 735816e7dbc5b80936119b784c87548582b01f1157c7603f296f0697872c355d
MD5 665137dc0c13b7484632d4ba758d1863
BLAKE2b-256 807ce85bdb78b5e79e14fae4eea169ea5bfe1afbb3b13a342147d04d776d9502

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp310-cp310-win32.whl.

File metadata

  • Download URL: grpcio_tools-1.45.0rc1-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.9

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 29a09232adf890c63b3149205e02bae5aea893b6e91712ac86a0ba25c4cd64ca
MD5 e744b2ea36ffe060fd3ab2a263e06a56
BLAKE2b-256 7fece6bd2c8446da4f0f6649db3f955d84aac019bf5999ec765f0f9ff8bd7a82

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.45.0rc1-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d396bfbeae176f7ff328d0abfc994c77ee069cfcaf0a203bea7119099d24d681
MD5 68a71beb1606656066d67f1160e3d1c9
BLAKE2b-256 897dfe2f955cfe5ad8480140566464418bde25fb010c99d80508e2025608ec42

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.45.0rc1-cp310-cp310-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 404a3b1e6bdae272ba9b04df3699edac50139b981e77ae8b6975d1894c3b7d48
MD5 434c1888d2f54a632f07f0e03d134d3c
BLAKE2b-256 a9a6068521563b47b5e4d04a6dabfc5e80c5867e9baf460ac920b2f7debf2520

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4af2d275d99a5589504060b011ea4288e116e7fdff1e8d0b0e04e37f2f5515c3
MD5 71024f7a7712bb5fc3f9dbbe4ce6937e
BLAKE2b-256 54237fd22edf7f9de0c70ad72d718d8d1ec0a2b51107b9d0beac36879350945d

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 faabc1c0e07db8fd9c7b15db0bfb91faa8fbce09811ef3c179635483e26b3945
MD5 1e7860338d58f79ac5aca933d06b881b
BLAKE2b-256 dd623cf981005f831e27b66542658faa025cccdf6c1edfa022f0659b1cbf0f45

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp310-cp310-manylinux_2_17_aarch64.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp310-cp310-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 fb99fe4e5fdf0b32a92aa94102428c73a6397e74f0635ea482c1a9f88bd4e938
MD5 e5f8c9b12c9780cb4d83093c9775ad31
BLAKE2b-256 3966473a60c80ae818523ca5668f7c45b77d571aa9ec0a3a49bb034fe9af46f5

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp310-cp310-macosx_10_10_universal2.whl.

File metadata

  • Download URL: grpcio_tools-1.45.0rc1-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.9

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp310-cp310-macosx_10_10_universal2.whl
Algorithm Hash digest
SHA256 29284d4e272b0f87a6ab73df99fa97b62180876caf094dcdfb2eefdc0845f0c5
MD5 68940be7031f71adb73e1d54c6027d5d
BLAKE2b-256 deecbabb5978d14f0b235fdfbf5b2e1e7b9b69a4e7821e1a928fc2dd72301f91

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp310-cp310-linux_armv7l.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp310-cp310-linux_armv7l.whl
Algorithm Hash digest
SHA256 7a2569a8899f346368a8a9768c2c22accb471e2605710c3155ec1fe23856eb25
MD5 d76893be8e3183746b783a979477b64a
BLAKE2b-256 47387c1155e013f594f402dbf4b4ce08e57b1eb81375a08d709346bae707f6c3

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: grpcio_tools-1.45.0rc1-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.9

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 131a2a20a9b4158c1db7fedca1fa72cdf77d7d539498a6eff8d7dc2312e14e18
MD5 8709be422f55f4adf3b5569e12230ce2
BLAKE2b-256 49cbd40156b8749933c3cb55f9b55b25bff2a1f6f0ca1182e3c749b54802e0f6

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp39-cp39-win32.whl.

File metadata

  • Download URL: grpcio_tools-1.45.0rc1-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.9

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 bc5bdf27c22a4932f19d6ef34bb4aea0b64382cfd274201e33328faf04657420
MD5 7b9c4bbd3051bca97e5c3a7940bb402b
BLAKE2b-256 f759be9a5ad1f7f9bf2305ef476e8aabc77de6d37fb87a7104035410b647cf9e

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.45.0rc1-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8f850e2ad053e502c14c8ae0d6354c4588713034a97e148862fce5707aaab772
MD5 35cfb0cfaa002a065add9c1566324459
BLAKE2b-256 c0f0f51d1085b85bd511a9b655f0d02af45e65ebfe3d90f467182016427f9363

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.45.0rc1-cp39-cp39-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 eeede842fbb54114b1b19db1be776fa58739a45eebfc34fe18f72bb3b90fad0d
MD5 bfc8f0a065c6fa9e2b1ee1edad8fcdbc
BLAKE2b-256 ca254bd4f1bec324be888f005e2d966fc58f8851da3b8a542a8a276ffd83ab91

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d091c8e5a00d5b2ae59082962d4975f0cb4da1d0f17ffdbe473c3aa06ecb11e
MD5 76131093b777b7cc86a14e2396c249a6
BLAKE2b-256 654ea5cd58e541ad08fa3fcb8ea22e512c2480a573aba390bc69f35b61e6e504

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c4a3f6d6ceabc5268d2d6ea48118f4d69b2c8f6254ccdd263959f6ebf9a981e3
MD5 aee05cbcbfd8eaccd733a055dda3c584
BLAKE2b-256 a6ceb880d962cad61ea04d5301c311f186c1abe38e795dd81ef544968b02228d

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp39-cp39-manylinux_2_17_aarch64.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp39-cp39-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 3fa84fc07edc3f87324b045c8835cffd7c3c8d72bf60532350653bc840d49929
MD5 0bda619763ac9ac88bb06a28bfbd78c2
BLAKE2b-256 7c893bd19d99d6f1cf6eef0d8c197937612c83693a584fdcea97c74345a221bf

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2da8ecc74c8facf5e82c49c3091d0f5cdb004c924b3207c0e53265d5236ef386
MD5 8cf002a330f3e60c8a067c6de6c7b4d7
BLAKE2b-256 196f8ef7ca9083a597cab653f4d9083e9cec1ee25cc0ba9a551b45531248793a

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 53c19ceb3b4d8555f199b32c8f1ebff009918652892afe291697df025f5b9c6b
MD5 c14c660fb75fa47b121a6d33957de58f
BLAKE2b-256 5b490e29536872cb8dbabf2009b0bdbedcde3d2c352c70961ab848a2ef378f42

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp39-cp39-macosx_10_10_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.45.0rc1-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.9

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 f586ce363ea610580a3069f7572d7d2ca3216dd47646597c551e18c268498bd2
MD5 048ac328829d29bae9b9e66177a550d4
BLAKE2b-256 3e4e7044c76fa378645618c88779864007a2056f1a0642729a0bd3e881153e13

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp39-cp39-linux_armv7l.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 51af76797ec9c6ea5a74981babe619b9046436684c36d64e5369e392f9430ded
MD5 59d23aab62b3029d7c58566e2a5e2a77
BLAKE2b-256 f91344b9a2b062c5478000691c1e3b78106d76caa45992af14451971be42aff6

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: grpcio_tools-1.45.0rc1-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.9

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 eaef019b059ecd04ffacd36fdeaa6f53b7a14a1e625ecdd328e512a16b093106
MD5 914ae4ad97fec54cfa184e4bbc275665
BLAKE2b-256 ad8f496b179afa6b197c568d8c54f14ef4146d74ddeec6743ef44331b5453c7e

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp38-cp38-win32.whl.

File metadata

  • Download URL: grpcio_tools-1.45.0rc1-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.9

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 8d07a5371ff3640aeef8cae9fb8ccacf9f2c5bbb514acb3752038dc31818d23e
MD5 8d058dc9ffe742b0033273dfc16b088e
BLAKE2b-256 2c7a69d57270dc64316dd3ca277de45fa71220166e7d82e149aa9dad627b687d

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.45.0rc1-cp38-cp38-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1960c37b62b65d4314e008992fabbcf28dba99c997f7ad3fa6cd250dd2aa23c0
MD5 570241d2c1d2852011335732c0132823
BLAKE2b-256 7d98c63d7dc6be82c0bb0442061231a87459521be700b824f00ba856c579e547

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.45.0rc1-cp38-cp38-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 babb9c16e013500b8ecabee890fab0913df6b2019962aeea54c5e9205207d869
MD5 57afeea45c97ef7d2e54a6a239030089
BLAKE2b-256 58659ea79ca5593c497f813a6d04152bca8869a20d16bd63620dbc5f142b5b03

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b49a678f4318287a800fb5bf87af62ae7b2836306b433ae73db58851a6861625
MD5 966c606f67c0832d72a0219693603832
BLAKE2b-256 ab121ba9ac88f3c6b4118d662b9e28a3f80852d5212ab5a8703fbecb8fa46477

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 951aadafed45a1b959a365ee05402f272cb3e8b44896774a05182442add9e232
MD5 983793fcb9849cdf94850b7e700d4a7c
BLAKE2b-256 ff940d383e580d0050cf72966c5bc6172874c3ffc396475dc1712f9d4865afe1

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp38-cp38-manylinux_2_17_aarch64.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp38-cp38-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 f66df3eebb22a8f8e7c77c37fd1462807c52a9ef8af46bc2fd5290f830150061
MD5 efd68fab3e7fb1016350168f67fd3b4a
BLAKE2b-256 6795a7f1785f31ab3253a5e52347108f53c7dcf3d6c418764b9efc888fa91043

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 96ba9933da8a4fc38a35c66e749c7c04a2a6f18d38b6f58e97fdb7fc3b3b935c
MD5 16ca65095baea3a6845772d7c570dcac
BLAKE2b-256 6da7e5bbcc5eb13bdfd3b83549eded9b7347dc0a3e18e819224b5e3d135dad7f

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2203b15354e2a8ec6fcf52fa6742808e777489fcaad409697aefa1183a5a2826
MD5 0cbe49a7abe676a3065a928e086f1a81
BLAKE2b-256 a1f5c7809189a11fda759bb2fc37a177ab859ca83c927379d8490290e4fa9bda

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp38-cp38-macosx_10_10_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.45.0rc1-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/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 ca9d013f49b2698886078af351af1807e50be5b7f12ddf2792c472f79d2e7341
MD5 03f4a34ae9ec0b58128860575b0d5c2b
BLAKE2b-256 e314844836d74856ddc6bc587d8394bd47ba4fe810742fc11c15975604149bcd

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp38-cp38-linux_armv7l.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 30a3fc5e74e4e2266f425cd89955a4af71089b1be66d0677cfb21785fbb591ae
MD5 9db366ae4e01f2b9bbda9ce7b59f6c9c
BLAKE2b-256 a43ba78ba0e4c8b710ad60f7d976a665a6b532f86f0366894e39cd64c5315b1e

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: grpcio_tools-1.45.0rc1-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.9

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e242cdbd7a3500e4fe92d627dc2677869a9f9aef08dc2f5fd0df5885ce797a03
MD5 bba600218dbb3821b5a96c2954d59dc9
BLAKE2b-256 f282e8577f8eee3599b0266cc52ccbcdbca943e7cd02eba47180f9306acad370

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: grpcio_tools-1.45.0rc1-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.9

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 b8659b094643962789d98422698882fcd47ea460b1c0a28725a65fd1a801964b
MD5 4dce8d9672d309b0aa8ca2ceee3467d1
BLAKE2b-256 97b90e3e34abe78121ea521a9908a427fbf610576f9d963e16e415608dc15c2e

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.45.0rc1-cp37-cp37m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 764d334fad2fb75f46a4eeccfd1e02f24e72833c25f4d9f2aac7ab1f01ddbd37
MD5 4ba5e1f89901bdf417fdb121e8fb28e5
BLAKE2b-256 bb9b5266da1e04fb3b171e9459a3255cceeeb5ccbb58999e244bf30ed8dce472

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.45.0rc1-cp37-cp37m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 0f72397079afec30a5e270e2f5d4b8d18180070f06807a89851b29f55247dbb0
MD5 226382d31c3aa2474b89ee02afb56624
BLAKE2b-256 a203cd4dde6d825a6c5fba146633bc93237addfb0446e19c8dcea8ecdbd122de

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6e19887d74d5569940dc89bd84c04a8f60c61418b582b5312ec90d70484c41f2
MD5 f466bd6d82101ba1433566812460c923
BLAKE2b-256 6fdb2b7b50d20ed59b8aeeeb6177d14a7c97b427471f8c567cb0d7f48bf14762

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e795dc080d2dd5d6bc83c5e17221acc900447cf9c9145163c9ce2f5f7299b459
MD5 0ab51b713f35e1cdabc311e95e6a8870
BLAKE2b-256 8fb727d9cd53bbf3d060bcb3c5d207e498d1ef9cff5d73956495d42fd01711c2

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp37-cp37m-manylinux_2_17_aarch64.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp37-cp37m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 6ea8803aefb58f29ef62d4677971715e0e06357705147b9df4aa1ce9a19f4d43
MD5 4eaab9f5b82582ef0c06340401c941e2
BLAKE2b-256 51b2c47c8d3c95199cae4b1db039cb18b1a84f1e95c437fe8c818129ea1a883f

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2d316333032564eb0ce69c98350c6aee540f7edd3b5cfd00579e80d48f66f4db
MD5 f0a3d9c9ec2c0345233140722150884f
BLAKE2b-256 ba019eecb160b1f63f88b37da505c2e136ee376363c501725c05525f69767b22

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5398c1857dfe5fa5257acd29ed14f42ffc6ea6cd0528552dfe3c024fc69d0ec6
MD5 6349d344e30bfd61270d1d7c202c191a
BLAKE2b-256 ab8ffbec731209f44749527d9ebd8bc35a45e41ed222aad073433105153e382a

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp37-cp37m-macosx_10_10_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.45.0rc1-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/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 8b6b1a9c786a704e3685229620ab6ecb270fd74064d3f3671a5d758536a66d4e
MD5 824a13aaf1386ed8d618b87646d47de6
BLAKE2b-256 731a947d0b9d89244ffe379850ce7b7a79ab7989d3d53246e49aea4d40de23ce

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp37-cp37m-linux_armv7l.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 2c4da0b783cad7bd0a5bb0b152d4f6d56651d59ef156902077054da7303516ca
MD5 861a84155d5c08014b87f72e52faca35
BLAKE2b-256 e62a60bbff8d66d441be3d002f089641a24b600055e065c62c341254118242be

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: grpcio_tools-1.45.0rc1-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.9

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 0c27783e9d0c96cfab8c1189c22a20ea6f3399b837fffbf85fbc54ea217b85f3
MD5 d8e85e0ebadfa6a893b7dc380ac8cc39
BLAKE2b-256 3e6505f22095a1cf5c261830c5c8c8428e40ba09e66729db781a0d1c3a978138

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: grpcio_tools-1.45.0rc1-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.9

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 67223c8467ccd8997f407661bba36284323fbf1cf4ea8adf38d5c3c3bc6f3664
MD5 fcddc744212e78677b40f7313d051176
BLAKE2b-256 e1fd5e012314b05bc00378f4497cde5c65e1acbd0ab22f13857d6512e75eb44e

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.45.0rc1-cp36-cp36m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 50dcce7e3aa15025a03d9104e1d7b9a2589f029da0cf032b9c0873fb7f7f74d4
MD5 c2f3e0bac06efb30eecb67aee127a1e8
BLAKE2b-256 e87a81cbe8d26e2e26e51c96bd945b3f0c54d5fc505c47a54eadd4a609c7329f

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.45.0rc1-cp36-cp36m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 82accec4448594cde1e77e43652f99f26da7c08a284e68b3749b6ef46bcd68f4
MD5 a81fe71426b6623dbf233a141dcbd0bb
BLAKE2b-256 774c12f1b959fef7608d18d1e857a41be75309eb1c0117c5003b69c1a5ba56c1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 451f96fda4364fe1362db61c8f1f07f602814c922ecd7ede432b29bfb6ea64e7
MD5 0b86fe621254ce86af4a47664e6ea25d
BLAKE2b-256 efb112deaa1d3f8a759c7fac5bd0c526666077862916a878c5a9f5fe1625ed3c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b9238434d853b4124a357036634aabe606236c8be6edbae87a312333a672bb0d
MD5 076b4a103c698f8b3abc5e553c969726
BLAKE2b-256 366df27a72c3d41ad34069d5b683f151f1c446330c6320ba371ae485db024d16

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp36-cp36m-manylinux_2_17_aarch64.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp36-cp36m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 1774d91171afd3b9c891dd577eb5b000a2ab8920fd306fd2b741d327a65ea653
MD5 b281c2699a16412f8b5d66b598efdbac
BLAKE2b-256 9dc3f9434c8d31a9b3b225c24532341bc2be0690877bf8fe876a903e45be125b

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4991c2e52775721bc1079bfcba42cf8d2a98f7c820915548e3cd64af66c74c35
MD5 7d177c6e06a74292015f194b9bd39822
BLAKE2b-256 420a0f8706b4cdf5ccb989ce5509000751e4a37c1f0b5de89e99bfef173b8dd8

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4708e713d3b265651391509342d2e87db39e64ba3ddc60bc3e2ec8bfb4f16b4b
MD5 7e806e06f7dbfd87b4c661b5673c9a97
BLAKE2b-256 e35712ce3dcdbc438fb4271fc85c87dadcb32bba79de9f1268dff8a3b6f32674

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp36-cp36m-macosx_10_10_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.45.0rc1-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/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 4be0b8872e2bd4763d98e5403b4253b960734e9d26b511806b3be913a64c6518
MD5 21d8bcfd7105cdfaa1b8e3ef1386d378
BLAKE2b-256 27f495e0b6006b86a7b8234ae031ac8379263b5df4683ff86d843d7db01a59a9

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.45.0rc1-cp36-cp36m-linux_armv7l.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.45.0rc1-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 694b85fd047dea47247fa7faf2bac41d3da60ac96510106299acdcca602e8b47
MD5 74350c2087d24c23464df35c77f8e856
BLAKE2b-256 89929cffe7334dd39f10b82b8d320ba64036a633ff79300e1c722311e2c8a084

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