Skip to main content

Protobuf code generator for gRPC

Reason this release was yanked:

grpcio 1.45.0 was yanked

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

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.1+ i686

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

grpcio_tools-1.45.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

grpcio_tools-1.45.0-cp310-cp310-manylinux_2_17_aarch64.whl (31.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

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

grpcio_tools-1.45.0-cp310-cp310-linux_armv7l.whl (37.3 MB view details)

Uploaded CPython 3.10

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.1+ i686

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

grpcio_tools-1.45.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

grpcio_tools-1.45.0-cp39-cp39-manylinux_2_17_aarch64.whl (31.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.9macOS 10.10+ x86-64

grpcio_tools-1.45.0-cp39-cp39-linux_armv7l.whl (37.3 MB view details)

Uploaded CPython 3.9

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.1+ i686

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

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

grpcio_tools-1.45.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

grpcio_tools-1.45.0-cp38-cp38-manylinux_2_17_aarch64.whl (31.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8macOS 10.10+ x86-64

grpcio_tools-1.45.0-cp38-cp38-linux_armv7l.whl (37.3 MB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

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

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

grpcio_tools-1.45.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

grpcio_tools-1.45.0-cp37-cp37m-manylinux_2_17_aarch64.whl (31.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7mmacOS 10.10+ x86-64

grpcio_tools-1.45.0-cp37-cp37m-linux_armv7l.whl (37.2 MB view details)

Uploaded CPython 3.7m

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

Uploaded CPython 3.6mmusllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.6mmusllinux: musl 1.1+ i686

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

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

grpcio_tools-1.45.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

grpcio_tools-1.45.0-cp36-cp36m-manylinux_2_17_aarch64.whl (31.3 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6mmacOS 10.10+ x86-64

grpcio_tools-1.45.0-cp36-cp36m-linux_armv7l.whl (37.2 MB view details)

Uploaded CPython 3.6m

File details

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

File metadata

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

File hashes

Hashes for grpcio-tools-1.45.0.tar.gz
Algorithm Hash digest
SHA256 a016cfc21e0d91b3b036d3d4f968d1fdea865dfa03524cb1fbeca84719fd45a2
MD5 fd12a68bfd1ac5e3057b3ff5a90b40c3
BLAKE2b-256 23af6169c66d757d0fcf1b84780305020faa895cf85da732e699f0ecd9a1fdda

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.45.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ee423b5ebd1a6a6fa8d2cd4861a5ee758036e4d08f6a9a5eebc4ec2380bd94ef
MD5 4fdfb8d072acf3765cf7361f3bb3d37f
BLAKE2b-256 d3d725c4ef8214f10605de53378d49f0146a8d41221f83a26fd6ee77cff8e195

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.45.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 baceb0da2ada3ec4959beef208c3685d3274b0ecc59ac531658e0d35d8f67846
MD5 7e701f532008027bd68212a4ba41a18a
BLAKE2b-256 2fde20b747b3b92aecf12e18cbd8cb5946866134a4508263d359450d5f0ac97d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.45.0-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/4.0.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.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ad8a74b0626b3762eeddfef2a18944f7cb9ddd80db13997fb4587185c821b10e
MD5 08375de1788314437dad8dbcd3c8fc3e
BLAKE2b-256 a447c2a4f856e4112337a8d6a2f036c0f3e0b99fc5c764929e5fc662ed1abf4f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.45.0-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/4.0.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.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e021b911fde2f86c3528f67f7937a41ef56195f637a7556409a4e88c81ab8f2d
MD5 1241e4824c4c0e294ba673c18ffbff4f
BLAKE2b-256 9eb8ccb2e1c652ce975f8f9d1f5dfd40a16d61e5ff4dc903f36054bd6116bc45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.45.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 210ea758250b5bb4f986713c01dc200f63b122a181a228114906bb99e5822479
MD5 55f31ebcfe3f4452699ecf8bda551d2a
BLAKE2b-256 8e1286ba0cebe2670b35e0e9251d8ca844faa32a62ad088a2a5b9a24ba58c56c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.45.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 047233beb9773f7da454711b3ec029233b494375db03f3fd2e759702b231c09f
MD5 fbacf8061a3a5f85ca3db99cf123ca09
BLAKE2b-256 bb9031b562259c1adce87e830de863df0aa653426cc35b3c611cd4f7fc5e004d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.45.0-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/4.0.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.0-cp310-cp310-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 451e54b490c5d0efcb0ad7a8f7e45ec3cf452de67ee017ccb2bd1e5e45571938
MD5 2ca71201d905a51f30d21d293104bf6f
BLAKE2b-256 3b48e758aefffbcf8dee8c1c61724c2ba39623ba650e564740321b675c21cb5e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.45.0-cp310-cp310-macosx_10_10_universal2.whl
Algorithm Hash digest
SHA256 52a801063894a85f719108b438b8e71f86ca8059c25824944867879a4e8f6d2c
MD5 6d6819efb7950ba5df7a85917090f113
BLAKE2b-256 dee325530eb1225b2840b393862f1c2496c6b4e08895ca926c4f4f0664aebc56

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.45.0-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/4.0.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.0-cp310-cp310-linux_armv7l.whl
Algorithm Hash digest
SHA256 0431410ba4463bdb03051a6279c040a1bae1d1b12d7dd533ecfba2462725cf11
MD5 542e7216d46b00a6cac2062fda01df8b
BLAKE2b-256 dc9bc8c5a69e332c0e92401869d5ad8f4e8b9962b6ff14552d1e2c21259f469d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.45.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 54dfd7d777664973b794b2fe585748f87f1066a4d6bb0af4f918b353b91bd434
MD5 6ced3ea57ebb059bfaa9dca3eb424d9a
BLAKE2b-256 c191b0031d54cefa010b423db1d2d72257916cd175578c969b3692299da98643

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.45.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 63d66c90f816601385a085726eb678c6c872aed7911df4232d906fc240159c83
MD5 62f93f8fb85cfaaceb90df3636a32432
BLAKE2b-256 9a4f85cd79eab8c6b026adce3d00ae250fea29e898879895221c103a7653f150

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.45.0-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/4.0.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.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4b6e5c48eb28a215f9d6e76d646406d2505c1a5ae8864273960a73e5c09fe982
MD5 34b75e7bbd456a0fdec95ac029ae69ad
BLAKE2b-256 ae11df17b83e18101412364993782a1985f18d44d7fc7c83cdc02bdaa0e5e48c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.45.0-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/4.0.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.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 737d1c0e359b83f45b5d7170ea9bb08e5f90dd36126097b7a8e7ad62ade867be
MD5 2d6dae6decca7755b172fa7ed8bc403c
BLAKE2b-256 f6a97c0a17549fda4edf3156b972d77a5a818462059282f8cfcfa6fbe8ac6a05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.45.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 79d951338e18c90f9e412cbe3e747530c94bd7c71963574e70cf7cdb7c113c01
MD5 571f4b31ba895d53bfc3df1cc6d0edf5
BLAKE2b-256 e6a8e658933ba150487686bc5e7e728947e84ad5be2d19f22bd87085ee8c2d78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.45.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b6437665cd46e4dd39343c69da4c18f761868c632793ce6c436942d1b33fd930
MD5 3bbe50fd6bfc81729e71b873561d0fed
BLAKE2b-256 31a9c54c2f3c80c211685a3a80dcd218e2bf7e77261ae8e48dac3c32261eaa5c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.45.0-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/4.0.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.0-cp39-cp39-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 5cfd3e7c082a3a01f65fdf3a3ab9168dea36102bf7326edfe03a1f592fe244e4
MD5 5b2d9d3761418ff7a75bfe18ee78af41
BLAKE2b-256 781f57443c34e054d5c091338a8fe5b0f75dc4c13ed97445b284fbf4428a5aee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.45.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 bf423863263933a98706e8a8b775c81d62e911222dbeb2b62ba60da815394ae2
MD5 d71e766da07ccff36b90a1b41c6d1232
BLAKE2b-256 4ccd928b230b67ae83e912fb8ba5960a288f5a108c25aef73e1aa9dbb1e0a5df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.45.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 713ffedf8c01dc34c1d69121c0b3421f557674681ffc0e004205d9bb0fc994b9
MD5 271c4cde1912a8efc048bc1daaaa1b40
BLAKE2b-256 37b97ad9ceca10ad7ee78b1bb7175c7b7c37cfe47bfec23fbe5ef40bb2eec40e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.45.0-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 ad49ad7f6f5ea305d92ce33f773f7d9a667742010d1ec02a1a0626b735cf57dd
MD5 c6b468c9f44b4afc443a3d211c133671
BLAKE2b-256 220828dc50b1387e74cb8227aecc7c1a4e10fe7241e428ef2459bc1b32ef59e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.45.0-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/4.0.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.0-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 6e7b53a8a605f91e0f9584481b74b008f321ea22461f075eeaebaf98b2de372f
MD5 38f8b10f3aa6595285d0029abebc759c
BLAKE2b-256 424a5fba73753effc59573739ae51acab26669dd6d557b2e19ef55146a6acf18

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.45.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 115ae6a8df239987b662b228771ab9c1d4db3cc4db3da6d184a1b95bc9759d91
MD5 4862662a9804947c642734ba88c6d5eb
BLAKE2b-256 ba03f41348581db8aee8c3d173eaf2b75c410a588b3799e76c3e7fc88ea5f8b6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.45.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 367dfa639abc4538843043ab2dd6bf5b0232ddc519418f1e1287e855e7cf27c4
MD5 d6f94c7d8ecc3b772d385a8af68e2cc2
BLAKE2b-256 11f2b2ecbb187737deafd18b33c5a8199518d9b3bd39741709971b9a7fe9a24d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.45.0-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/4.0.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.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b7cf16c448e19b10f9fb13327d930925ef053bb21dcd858a20184d2a8f55ce18
MD5 e5723e8bf04676e1d7895df37fc8badc
BLAKE2b-256 a2778cabe92bad6fa68dd6d0e30553188493b653ea0e3237c138fe457f715cb4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.45.0-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/4.0.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.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e3729ecd8bc42e783faba7243d315b1beb44021bc146afec0537791b47980878
MD5 437dd1f253dbe24f2a1758390d68a125
BLAKE2b-256 205ac322f942544db24a1ce9ef9324f96390260db190df9d8233f4564e579ca8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.45.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 19ce25a2d573b2057af7d57aa7c80819db90cb92d20eafc8e8ae1448fe9941b1
MD5 b029dd82bc411b5114a96f10a9dcc20c
BLAKE2b-256 8266e04c860f90fbfa5de627ccd99b7f93356373d28d4b8f6fdf10e8d1dc0822

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.45.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ed8306de5f8076d2fa0ba2a787c7fd1aecc4b901b2af1113acec21cea8178caf
MD5 499adb423320c05ebd865ab4f3143472
BLAKE2b-256 0302771d3ea1adc97ce6542b71aa8d42ffa571ba8269a6ff712a7d1813c95de1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.45.0-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/4.0.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.0-cp38-cp38-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 1b4a5dcd433377cedb18cff3c79050c638ce7d6223de9ad9119157994558e37b
MD5 70ef540e264c28c5e2348d6850c7467d
BLAKE2b-256 cff11258640ba0937d13c6d963c66f431ed81e70c30791abca460fc0dc285330

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.45.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b2425c9cbc1c400a4fd7adcefde7c524c46e7f42f3f2cb52a15399bc559d4fe0
MD5 7607dd7ef0a1991ef076ca61119b1841
BLAKE2b-256 b870ef04695b7c5aa24cdf275ae0b1f62058e50eb981dcb64016d7bc8846dc82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.45.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1b4b1727cdfda8854089f03df2d2b2b0171243c54048ac1359dd89ab5c211180
MD5 f41c5d93cf711d625608162ade3b452b
BLAKE2b-256 fa6b8e2926f390f4f99e484fe2497cb8b05beacf886eb8470cdc5c6fa311405f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.45.0-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 36516f6f9957f6295d81766b1855be858055fc17cebcd4076471d697597cb2c6
MD5 0fb2b0b9ab8f973261003f7454d3285d
BLAKE2b-256 8847e218d27ad55b845f38427e12406c7851eb95e3748596afb52a85740a6fde

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.45.0-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/4.0.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.0-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 bfea11559bec0935b84174a2bb10ec67ca97367d71d11facbbf9bbf8f5693067
MD5 27b4b767ceeece51e0b8848576e52aa2
BLAKE2b-256 783714fc581fe4836ac6d1bbaaa1fe08534ccdeb8e4bd691daeebfa170079a1f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.45.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 47c6f5c7d9ed33726ed6ed1630767a8e08e8d10497cba07ba9001b54a599d486
MD5 93775693d1906018ec413c7dcfb1ef11
BLAKE2b-256 4e161072436616eb2def120e85ee7446c7f36a00e243ba13f977be8723195792

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.45.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 690b520660008687af9eb956981f6da2134f8ce299434a22314c00e9dac29fcb
MD5 dbe0e6940268b0a3f1d17e5a46b834c4
BLAKE2b-256 0e8d277d7cba501a7a506728dae6dde8903fc81e9da4bc01100164970241b3b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.45.0-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/4.0.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.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a33edaa319bafd7542105d25abc6d9a8a331d4684fb5886863d1c9a6cd47fa67
MD5 f2c4cc3e4afd23399c56f5133000c598
BLAKE2b-256 32f0f81b95ac9cd1c376304a6323eb94462791f422d8cd34f76e5fe005adf5c8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.45.0-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/4.0.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.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 477230d6d5054fc949928cbc1d50db54a5cece5d233b8ef3e0aebbf60939bdd8
MD5 82fc5a877e3ce889520b1f381226844e
BLAKE2b-256 1c5550d3d2f8adc104222ecedb6d051b993ca9044d9c9e1846048534c358afba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.45.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7db11a65e07410db1c31cbeb9afe344a6bd88a63dcd819557707ca7318478727
MD5 098849babde108f7f5bda096a7255b3e
BLAKE2b-256 bee170dac693e6df7e4f3108dfd3a82f86f0cd3742d9afe98bb2fe4333a3edd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.45.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 319f4905e398558c9c0d508b685976b2728ff5c6629613debb6c153e49e5ad18
MD5 d9552c8b1c8d2988f2426f46bf588953
BLAKE2b-256 bfe600088aff0b3705e845d7abcfe2c819a22fab56af67e4c553918d0b677cd4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.45.0-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/4.0.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.0-cp37-cp37m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 8d9be3e3bf85820ce43ff00d800b6ad61448ab8c458c12c36696f76b81808aaa
MD5 8cb87ed61e5a48c8243eb5d0f8d095dc
BLAKE2b-256 edcdd29ea2a15d94ec64036c79b073a2ffa554d067e3c13dbf196432e9b5643f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.45.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0c1a1f1a794046823aac6ae207746b503b26db992837e7b06cb4bed2dc8520ae
MD5 176a39581077d9766d489d61058660fa
BLAKE2b-256 1a7e0a3f7250a8c90a9095f30cf0b05cfbcb924251e164216a31b6b0071f8e31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.45.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ebb17cb82cd921b8950ddc080ba5ed9a3fc06e45942050f6127872bd6fc46325
MD5 803747772ccbef95ce993646455b7a33
BLAKE2b-256 a94355474df1d22f74fefac02d49e42a494f53fc78ab612c4a1d29448e81d29e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.45.0-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 e8808de2aac8c7b2938602cd121b37b3c44e1e80cadb4b48dc695f205ff71e2c
MD5 e37ec661c353d0153218a5ec04a5ae42
BLAKE2b-256 028fe356bc84641a084f478940dc7dc96c53cc277c64916ece8f614e7e4cb4a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.45.0-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/4.0.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.0-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 8f64dd3098edcdc99a0ee9e680ae674a86f40f65c125a88a11610c28503844ec
MD5 6a4fe33f334b6ab4a9fa6133ad30c980
BLAKE2b-256 8e37b983d78fd418e49eee90e6555cb7ed6e223a2545d55e71e483fd2fd64a0b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.45.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 31bd8e8e5b383943e72b5fb8e157ee730aa6b52e8a15bb13035166e1b5b9c897
MD5 5548462fdc6bdbeabcbfb4c24185f32c
BLAKE2b-256 b58e8aa19404fe53ab325d8f94824fcf1beb9d32f093885576089872c29eb76c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.45.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 527aa1105cf2ef8e979ccbb08b0e80330cbec736b67da54d966fc9f3860d7145
MD5 194c5a118999799324e3ea7f0c049428
BLAKE2b-256 bad818113a30357aaedcd41cd51c31e56a7065f0a64230213c944cef5742bf6a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.45.0-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/4.0.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.0-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d8656dca6e4f729a77a156cea16141dd7206657bf303b67c157530c7e7741216
MD5 718594c8f04c89ef9def6870490da2e0
BLAKE2b-256 c03deef50d217182f9ead9241973a081f033874546f2bb0c77afebfc3f57214a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.45.0-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/4.0.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.0-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 57e79e34ba8ff1d7594dd5556fbeb1ff7bb985a9f34b54da65ea6c617c02969b
MD5 31c45f98a88c18acc04038642a65681c
BLAKE2b-256 2bc3a177c46ca3d7a7d45ca32257414ecaa7b330914d00f1c938c9648fb8a5e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.45.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 71a3beee3526b2aacbf19ad83a7737a1c9e4f8a1fad3768b644f9d8bf45f29df
MD5 9a2a01a40feadf0dfd99336386cc070a
BLAKE2b-256 1cd16f6ca893757f61b2546c848659c86c8c552e13e815c8d88e8c30d4e0ef4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.45.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bbee84e4fcaca03fbfb1b1defa7b226999d6fa468c72578ff900e46caf01a55b
MD5 0cca7e00234872c02defe4097e6d94e4
BLAKE2b-256 da6a79370a2c901621e02964a64187d9dc02680d75dda5f81f8850f7dc64b65b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.45.0-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/4.0.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.0-cp36-cp36m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 b7de099ae16938aeb7c9e0f5178b9ad2be500731847e3a168be7dbad25d70dee
MD5 44bbb60f34dca95c3eabe39acffa626b
BLAKE2b-256 f24d9031102601d05d3240c75e40265598c9c56c65f901dfa6f518e5ae3863ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.45.0-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 64ec376631be21e39a631b940dd833273fc709a19ad08d993089a7bb2a958dc0
MD5 6c07aac8c096251fec0f382a932302b7
BLAKE2b-256 1c111b9837f572e194b15d4243b58ebb9417b1846e075f7e602cf6556792bd68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.45.0-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 40842f52243c0ada1d6262a625bca31dd217e12ef7e7b3dbccaabe289d8b24e5
MD5 1b6571435aaa54490e575751915ca70e
BLAKE2b-256 92776e3eccf1706cabc5ca74873af85935b8dd014464e3bed17a803c08ebc32e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.45.0-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 f535902209809acf5d1de59e287dd43c81e76906d4e2e51f8068a544ecc84301
MD5 69d416ce265798bc3590426fcd3d32c9
BLAKE2b-256 f5b52552fd45cc6540b997b105f67e89ae5145ed777ee8508c879d15236ee3bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.45.0-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/4.0.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.0-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 e286083bcf32e7bc26b67c8fb8d59a385047cd1213e205a3f0eafee50c171cc4
MD5 7686aa430d91fe729c6282d89a1451b9
BLAKE2b-256 39331493406dae2c7494e2dc02c473e69f769e168a87944d36c4fb87b69303e9

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page