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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

grpcio_tools-1.44.0rc2-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.44.0rc2-cp310-cp310-manylinux_2_17_aarch64.whl (31.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

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

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

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

Uploaded CPython 3.10

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

grpcio_tools-1.44.0rc2-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.44.0rc2-cp39-cp39-manylinux_2_17_aarch64.whl (31.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

grpcio_tools-1.44.0rc2-cp39-cp39-manylinux2010_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

grpcio_tools-1.44.0rc2-cp39-cp39-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.9 macOS 10.10+ x86-64

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

Uploaded CPython 3.9

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

grpcio_tools-1.44.0rc2-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.44.0rc2-cp38-cp38-manylinux_2_17_aarch64.whl (31.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

grpcio_tools-1.44.0rc2-cp38-cp38-manylinux2010_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

grpcio_tools-1.44.0rc2-cp38-cp38-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

grpcio_tools-1.44.0rc2-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.44.0rc2-cp38-cp38-linux_armv7l.whl (37.3 MB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

grpcio_tools-1.44.0rc2-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.44.0rc2-cp37-cp37m-manylinux_2_17_aarch64.whl (31.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

grpcio_tools-1.44.0rc2-cp37-cp37m-manylinux2010_x86_64.whl (2.3 MB view details)

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

grpcio_tools-1.44.0rc2-cp37-cp37m-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

grpcio_tools-1.44.0rc2-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.44.0rc2-cp37-cp37m-linux_armv7l.whl (37.2 MB view details)

Uploaded CPython 3.7m

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

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

grpcio_tools-1.44.0rc2-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.44.0rc2-cp36-cp36m-manylinux_2_17_aarch64.whl (31.3 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

grpcio_tools-1.44.0rc2-cp36-cp36m-manylinux2010_x86_64.whl (2.3 MB view details)

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

grpcio_tools-1.44.0rc2-cp36-cp36m-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

grpcio_tools-1.44.0rc2-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.44.0rc2-cp36-cp36m-linux_armv7l.whl (37.2 MB view details)

Uploaded CPython 3.6m

File details

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

File metadata

  • Download URL: grpcio-tools-1.44.0rc2.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.44.0rc2.tar.gz
Algorithm Hash digest
SHA256 2c7ee38f9387640e28da38ea323a22227d953e0bfd3e6035dcc0940d4ca07dbc
MD5 52cb445a74845846b23af2fca8b3275c
BLAKE2b-256 076c956442228a046e5eb9d88317736d31eb0fad1b0da9e9b4d4cc59d034661a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.0rc2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/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.44.0rc2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b7cfe9b1d1a7a209b87e5c0d0e3232f83d9049b6d1584efef47d4947530bfaad
MD5 016257106cfbdd3a4c2650b68b27f1f5
BLAKE2b-256 ea1fda62bd048c0b6c733af44e1d0bd5ac39689ee68511bb156d09372d8f0284

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.0rc2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/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.44.0rc2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 58f058a8a302ab273a36eb51902929d241ac2e43431cf5a225fe3c73db927d26
MD5 2599f3993ac34806ca0de06af7d10c64
BLAKE2b-256 c5cf3af0056b851805e6d2236e10fb82d35b4bda9a81873f40f8150c27a68401

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.44.0rc2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 20b5e07b214bb46e846cffef1c0a26e256a07f57fe6df5a06d884c09622cb1e2
MD5 ebf56b9bea94e964215f8c4e36927222
BLAKE2b-256 14de55f784e2b9f10231e1cf13e8bfc5ca3f2647bde8e23b912895d04e94dfa2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.44.0rc2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5373977ce4eebccf7d027041d66598f54168311ee1946303ea74a4efd344f6d7
MD5 41a6d994de5ed379bb6af9c2627d357f
BLAKE2b-256 97c5325e731bb8fd23a0e3ca95f1215166c80c3e1c0a14eae1433742877cb429

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.0rc2-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.44.0rc2-cp310-cp310-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 651c4746d9e8c4636ed4a92fca88ee4f37eb980b03dafe390bcc3dadd3692652
MD5 0d3495e071b79dd093cb23fce44f3e68
BLAKE2b-256 5348db30f1adf560cb4e65cb9b1e9c69d3ba427fe94245d9e224e3bfbfb9aadc

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.0rc2-cp310-cp310-macosx_10_10_universal2.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.10, macOS 10.10+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/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.44.0rc2-cp310-cp310-macosx_10_10_universal2.whl
Algorithm Hash digest
SHA256 db1bb8f3eff964032a9e9ce0b3fe3629cbe80bf5b7240a138fef0c9ac701a8b0
MD5 173b6e34fac5adf2b0d2bf245e9d9b1e
BLAKE2b-256 81b6c521607259a18a021257d6c0daa9436f9341f20b578fbd011c013c281d3d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.0rc2-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.44.0rc2-cp310-cp310-linux_armv7l.whl
Algorithm Hash digest
SHA256 a21ba09d30aa052e056993826af6ffe71c3efbbd6717db289b9ede121660d504
MD5 1dd9c314296860f50ab495da79e2ae78
BLAKE2b-256 e26faf8f9ae72623f0870324fbc40faf58f81567bdee98fd3baa4a7998738640

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.0rc2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/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.44.0rc2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c82d8eaec211dd29dcd9729bfab4a208afa3880e8c38b2f10a9ec8a8609d2448
MD5 d626cfa038ddfd6277965c5b37e96aec
BLAKE2b-256 7d0be6de494134a3d05a75116cb244870d0611413357552f6d1e1604e7292466

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.0rc2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/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.44.0rc2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c91b0e44885cac1d395b89445f20d34c7d52caeacc44a71b7a8f48c9be3c3421
MD5 4d3cfbabc39635fbb0581ec8c9832e60
BLAKE2b-256 28076dccb0efc684fe859f3b025c7ff1e62a43520d2ea6e7a330d8360575c1c7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.44.0rc2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 993d4c097514d4578c8fa1cb4da7bf772f111436487d9dcfac54e3889b44ad61
MD5 56d238bd0aff7fc3bcce5bff987dafb4
BLAKE2b-256 c0064fd2b21aa0b92c9b3b16a69d0dc26ac03eb27b6c10184fba82e526b78d94

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.44.0rc2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3c335d16d4225c85bc5c0ce3475170e92865b399b15549886c1b0caa73e2c67e
MD5 cf37b3c01bbeb09b96be062b287ad0b3
BLAKE2b-256 1defcfaef474a9499e2be44f1c96c10ceedbebeb21314c336c632d9bd9bfe467

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.0rc2-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.44.0rc2-cp39-cp39-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 dac60ff5bf10be01e4d3be523c6528ebbc50bc857d46ea9c337c249b2646942d
MD5 544cf885d90956166a301e7fc727279f
BLAKE2b-256 a5f3f7652d8c522363eda3b1c24f291f970b766150eab1b2b2d735f0edb73942

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.0rc2-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/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.44.0rc2-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a5114f5b82650685ab8030f55ac1b4a870eeb2e2a42d307473cfce1cb998c22d
MD5 d233d53ab00bd8e148a5a25f36012fa9
BLAKE2b-256 9d78a1d3f75d3704d7c9dee5b0b30a666bab15d7022392998da3e50aff82823a

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.44.0rc2-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d7233725a333426d31da485ddb3374665ffd2720f031f9f057a9dc5cfd019176
MD5 e4814113e5c9320b9d0758d4760d1b65
BLAKE2b-256 00337379394edf30bf1a60fb975ffb5df3ce429656ac09574826bb269652a4d5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.0rc2-cp39-cp39-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.9, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/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.44.0rc2-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 481043f3aede7f6dd2fc0b4dab37aadcdfe6dc3140a80e3da89ca2f93011ba85
MD5 24a76e23cd9149bac9bd00a60a827b5b
BLAKE2b-256 c61543d0cfd29e19ac92d01ec8025b989bd540ce4375121ff8e2a5935c8c86de

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.0rc2-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.44.0rc2-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 bbf8c3f09cf344cf2d01996d2f7ed3c491cfa04c5162fa3a9c5c6592d120c81c
MD5 2b34fc79ae22f54aa6f0a0484733d15f
BLAKE2b-256 c2fa78c2b03963533272033cb163c605b73368dbd88938ef28aa5fb5a70d9588

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.0rc2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/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.44.0rc2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0371c0b54661a691e2c968f41ac93505f0276c5dc12212474f4e8b685f121997
MD5 097d31c8f00aeecba6097ede8c033c5e
BLAKE2b-256 e07af734aa21e7e5e9bc4f471c044e4603aa99c48bf11e88436d10d5d46b1751

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.0rc2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/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.44.0rc2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 77e8264537bebfac60c2e0d16b35cdf8254954585d9439e26a9a446da823cd02
MD5 5cef84509bed84f89cd01f9cf88bbad6
BLAKE2b-256 3e327710bd3dcfcf40b439b11699913344f4ab6e919345404c780d8eac4612a6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.44.0rc2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eafffb74008a36ef229dda3cee0382efda6773fac58cf6a288f0634be5312d77
MD5 6848534eb2ef47655e9c07e0f6f72260
BLAKE2b-256 96c0bf45123009470c9952e8732e3d8d732eaa1a423bbfbd1fcccb019d15cb0e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.44.0rc2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f3120d54d50c1a2b9bb25de788f259dc1c9d788fe366e1a0bd490ae1e1617128
MD5 3aff7cf2404e4dd53c2fd05fdb03c1b5
BLAKE2b-256 e24f82ad7560b7e0068b03aff51c33bb4b3a16625d765e4594f83464d4223e98

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.0rc2-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.44.0rc2-cp38-cp38-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 9519e79aee4e53a9fb1e37dcb255559d245cc1bf5500cfccd77db7c92fa012b6
MD5 95da0fcab920ec113d2905b32b15f99f
BLAKE2b-256 5a88e0ef471d557a75a8554cf83deef99b1df2e89739c32b5458ba3a45a7c538

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.0rc2-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/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.44.0rc2-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 be7452d72961923b534351b208c04f9db5de9ef58454618e1c6655e1b0686f11
MD5 43510a5e693257235678124620d3fcea
BLAKE2b-256 751826853c9de46c5ae7208363a12dcd612d11c85b5ee3055f25ea57d967e1b1

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.44.0rc2-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5d692cac683741648159d9fab7ec8be746ef8fb1c194225f0f057202b225b6a3
MD5 929c06b0f30fe742373b95661f1b4b19
BLAKE2b-256 de08c5be08a423d62867b3af822ef58ee6d5516ba0b19a42d908bc627720c3aa

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.0rc2-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.44.0rc2-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 2ad57994670fff68c0bb6e79dd74b769310aef9c1b3124817fa4b65f9b1e102f
MD5 60a7d777ed1d380c0fdb1bdefd3dd70e
BLAKE2b-256 6aa4ff1d322bd8343a32e5b8d2f50b2ac7522f166f5746da763548f4c341a81e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.0rc2-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.44.0rc2-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 0fcc47de5e208b5ae353a372102b6e24bfff18a452a3c18d15efac7710ef25e0
MD5 279cfb4a6bd99f2da06639775ebf68d9
BLAKE2b-256 aac76edf6dac53ca5b30de71770da864a2eb98f7f27a510a62c405f7bd4ebd4c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.0rc2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/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.44.0rc2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 2fd6cc5ccf29d372d4b3064f98733e6066d11a3f6a9c25537e6fa115f9e75a10
MD5 f00d54e701a7927f91165ad77aa4a990
BLAKE2b-256 195f0587ba332bcce5e69b5ff2bede10e8c9cd9cd1affa19c8abaf777e554723

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.0rc2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/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.44.0rc2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 1f74b2c2d8406c95576a6225472a1345fcc0b93cf406b7f1f32147c632116134
MD5 a078367a1b59dd120799e46881a19b82
BLAKE2b-256 6a51a0626007a220b19d8f035505dbe69d186c45ebfbd3981790343fd8c4a820

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.44.0rc2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ea631bf5dcca9fa2647eb7f131f5d8be25b889105da56f0f19deeba253b9d5bf
MD5 b9d61f867ba4580c71c585bd2e96e0ba
BLAKE2b-256 eae49ab5a63b2143d16b1598b2d9b1ffe77082101b28403895e54cd04d7281ae

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.44.0rc2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9259599227125464270a8619f5e9dc8d1233b21e91d950cced6b0bb6eb457d5a
MD5 8e655cb08c0632e6f4d862b54f00c73c
BLAKE2b-256 b574ebc9c95f5818bcab5ce29e7fe70d3326552232e08b3fb40e6d486badff1f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.0rc2-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.44.0rc2-cp37-cp37m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 22adbfd50c9fa8e9a2d1cb3c32663114cc6b4a0c4693490539fd0da27f6053c1
MD5 5c29cc27d6ac4619bb59e0fe6bbe9c4b
BLAKE2b-256 bab06d0fbed375939ed9259d8615250f559543e3e83a78ca7306a3f5e9314ffc

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.0rc2-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/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.44.0rc2-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a2c01044c0f869c2d9d2ef0fd8fd392975ff8c0d58f5304e955eab53cca32a3f
MD5 d4cbaa4a2c142b1407acf45b6372fae8
BLAKE2b-256 ec037dbfd533cc974d29dba4ebae02135055e63d1999770daa40ebd5a3e139e2

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.44.0rc2-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 932ecf5175c4c7c2c97d57731ab488f0c014d9e3adb561ddaa3eb5dc7c035b86
MD5 884c585ae98263389ee21aa541896fbe
BLAKE2b-256 445bd914a1e98af70cfebdc83f66510534e6283eec706492901f2cccc41dfbc6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.0rc2-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.44.0rc2-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 4f19353c03ce91a3364daced9debff5b75a0e6df753385069de9ccc23cee2813
MD5 fdf0d0dabd624e1317899a270ca0def5
BLAKE2b-256 cbcca1fe88958c7e345ac471e159e3ec9abb01a53746a65612fd5880315566e6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.0rc2-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.44.0rc2-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 12a6e762b043cd6bbc147f49bca633fff845006a993d48da184e098ede65a1b3
MD5 c66ec409b34509292e1d3f8cb29ad752
BLAKE2b-256 93cadc2fd8029767149b0a68cb1dbb618fa4e8c9ee7ef181fb25014e7e93b735

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.0rc2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/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.44.0rc2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 f58fdc0f3eb5d61301345ceeb287b37ebe22a3572b59f02e8bd7e03378ceaf44
MD5 1fa7712821a02bd34167310181fe10f6
BLAKE2b-256 dbf347d737369671d599270e46a795ecea47762a1e23e3153f398bc314f7577a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.0rc2-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/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.44.0rc2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 9ed6155ee0a29a6c488a081b9e2aa99bdc207bf3cee5d05e8a4d303b4acff1a5
MD5 123985b917cb34e7fc924afc04b3e776
BLAKE2b-256 2ffeb504d9a91468244e3fe81f28dda5bb4959874b172db4aa8ce094f603941a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.44.0rc2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac0f09b5bec6ec6808768fa7151138fccd3ee0a8fdbc2ef5a9cf20ed38a4a793
MD5 74fc35d4b8206775e5b8f3d080b8e318
BLAKE2b-256 3d4121f45b5bc9c822d8094e1cda9143d7f0b87e44e4fe53b2d664f4e09f5143

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.44.0rc2-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dfceb182451f42b6cb790e6e1694d56ef44fa63a867dcd64e1d67dbb93c75c98
MD5 16efafabc0e263bd3df69c5e0e4861db
BLAKE2b-256 fdbc8bebce4cb11dbee0114061fd345238b8e082cbbf42fb42d85a61ec8e430f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.0rc2-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.44.0rc2-cp36-cp36m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 dff49c80611ecc47d5eb82857d40d1d59847ecb9ecaa7d1dd679918105facfcc
MD5 bd0b6634ee700fb7962fea8b056167e1
BLAKE2b-256 5671605303de38d6e8e220636a4ab1e3fc253cc28ea8d7a702213f95ccfdd5ad

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.0rc2-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/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.44.0rc2-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5a86468c1d24780ae0d52cbaa1e51ae9b7ff2e46c10c665dd17031337bf19f53
MD5 d92c4076e797b04544c123dddaa2a0c0
BLAKE2b-256 78cee3fc47312868130c133f46ea7c5e3facc09b745debd4aad454d51808a221

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.44.0rc2-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 788653d05b35a2f36df671136ff990f4e3386dc8bbca1f89b7c41748f6e74f28
MD5 c9f7413e807ef73ef3b371ea99569f5a
BLAKE2b-256 95ed4a47adcb613af4258a3cb2c9bca5811582ce8a7b68bf4062f73a5fe26b71

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.0rc2-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.44.0rc2-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 162a2bcdebfa4b08f8be29006315d29f3660015b145e09b7c1cf3ce1c802ce98
MD5 39d702cdeaee8edc6b124808417c885c
BLAKE2b-256 eabbe8e1c4baabc1e61108c950b142b5c16f9ae5e2b9427c89ef4201bfa7be04

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.0rc2-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.44.0rc2-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 547cb532352370cfe67c41f067657030b6ff164a4649ca00c390ea65e170afa4
MD5 a4799f35e4a5990aa9f1afe3d3bd6d5c
BLAKE2b-256 741e38ad2060b006da466180ad27b0ae0361ca658975279e347699fe9ecb366e

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