Skip to main content

Protobuf code generator for gRPC

Project description

Package for gRPC Python tools.

Supported Python Versions

Python >= 3.6

Installation

The gRPC Python tools package is available for Linux, Mac OS X, and Windows.

Installing From PyPI

If you are installing locally…

$ pip install grpcio-tools

Else system wide (on Ubuntu)…

$ sudo pip install grpcio-tools

If you’re on Windows make sure that you installed the pip.exe component when you installed Python (if not go back and install it!) then invoke:

$ pip.exe install grpcio-tools

Windows users may need to invoke pip.exe from a command line ran as administrator.

n.b. On Windows and on Mac OS X one must have a recent release of pip to retrieve the proper wheel from PyPI. Be sure to upgrade to the latest version!

You might also need to install Cython to handle installation via the source distribution if gRPC Python’s system coverage with wheels does not happen to include your system.

Installing From Source

Building from source requires that you have the Python headers (usually a package named python-dev) and Cython installed. It further requires a GCC-like compiler to go smoothly; you can probably get it to work without GCC-like stuff, but you may end up having a bad time.

$ export REPO_ROOT=grpc  # REPO_ROOT can be any directory of your choice
$ git clone -b RELEASE_TAG_HERE https://github.com/grpc/grpc $REPO_ROOT
$ cd $REPO_ROOT
$ git submodule update --init

$ cd tools/distrib/python/grpcio_tools
$ python ../make_grpcio_tools.py

# For the next command do `sudo pip install` if you get permission-denied errors
$ GRPC_PYTHON_BUILD_WITH_CYTHON=1 pip install .

You cannot currently install Python from source on Windows. Things might work out for you in MSYS2 (follow the Linux instructions), but it isn’t officially supported at the moment.

Troubleshooting

Help, I …

  • … see a pkg_resources.VersionConflict when I try to install grpc

    This is likely because pip doesn’t own the offending dependency, which in turn is likely because your operating system’s package manager owns it. You’ll need to force the installation of the dependency:

    pip install --ignore-installed $OFFENDING_DEPENDENCY

    For example, if you get an error like the following:

    Traceback (most recent call last):
    File "<string>", line 17, in <module>
     ...
    File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 509, in find
      raise VersionConflict(dist, req)
    pkg_resources.VersionConflict: (six 1.8.0 (/usr/lib/python2.7/dist-packages), Requirement.parse('six>=1.10'))

    You can fix it by doing:

    sudo pip install --ignore-installed six
  • … see compiler errors on some platforms when either installing from source or from the source distribution

    If you see

    /tmp/pip-build-U8pSsr/cython/Cython/Plex/Scanners.c:4:20: fatal error: Python.h: No such file or directory
    #include "Python.h"
                    ^
    compilation terminated.

    You can fix it by installing python-dev package. i.e

    sudo apt-get install python-dev

    If you see something similar to:

    third_party/protobuf/src/google/protobuf/stubs/mathlimits.h:173:31: note: in expansion of macro 'SIGNED_INT_MAX'
    static const Type kPosMax = SIGNED_INT_MAX(Type); \\
                               ^

    And your toolchain is GCC (at the time of this writing, up through at least GCC 6.0), this is probably a bug where GCC chokes on constant expressions when the -fwrapv flag is specified. You should consider setting your environment with CFLAGS=-fno-wrapv or using clang (CC=clang).

Usage

Given protobuf include directories $INCLUDE, an output directory $OUTPUT, and proto files $PROTO_FILES, invoke as:

$ python -m grpc.tools.protoc -I$INCLUDE --python_out=$OUTPUT --grpc_python_out=$OUTPUT $PROTO_FILES

To use as a build step in distutils-based projects, you may use the provided command class in your setup.py:

setuptools.setup(
  # ...
  cmdclass={
    'build_proto_modules': grpc.tools.command.BuildPackageProtos,
  }
  # ...
)

Invocation of the command will walk the project tree and transpile every .proto file into a _pb2.py file in the same directory.

Note that this particular approach requires grpcio-tools to be installed on the machine before the setup script is invoked (i.e. no combination of setup_requires or install_requires will provide access to grpc.tools.command.BuildPackageProtos if it isn’t already installed). One way to work around this can be found in our grpcio-health-checking package:

class BuildPackageProtos(setuptools.Command):
  """Command to generate project *_pb2.py modules from proto files."""
  # ...
  def run(self):
    from grpc.tools import command
    command.build_package_protos(self.distribution.package_dir[''])

Now including grpcio-tools in setup_requires will provide the command on-setup as desired.

For more information on command classes, consult distutils and setuptools documentation.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

grpcio-tools-1.42.0rc1.tar.gz (2.2 MB view details)

Uploaded Source

Built Distributions

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

grpcio_tools-1.42.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.42.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.42.0rc1-cp310-cp310-manylinux_2_17_aarch64.whl (31.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

grpcio_tools-1.42.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.42.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.42.0rc1-cp39-cp39-manylinux_2_17_aarch64.whl (31.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.9

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

grpcio_tools-1.42.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.42.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.42.0rc1-cp38-cp38-manylinux_2_17_aarch64.whl (31.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

grpcio_tools-1.42.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.42.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.42.0rc1-cp37-cp37m-manylinux_2_17_aarch64.whl (31.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

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

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

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

grpcio_tools-1.42.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.42.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.42.0rc1-cp36-cp36m-manylinux_2_17_aarch64.whl (31.0 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

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

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

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

File details

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

File metadata

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

File hashes

Hashes for grpcio-tools-1.42.0rc1.tar.gz
Algorithm Hash digest
SHA256 a70f5bc1a1e08f5318e30ea0fde93da02a9a7c6f6a7cd4abfd6b88f6d6fefdef
MD5 9701ddf6fb8b316c735ad232c157fffa
BLAKE2b-256 5d8b6c93b697a62589470d41a39bbce2d6a11bd0e3b57d7a80d0d93e06756636

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0rc1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8eddd1a64966a498c8be640b4340fd626a63d74dde989fbd66c6c9a388d83f0f
MD5 d2f12b04da1d4e84a488a40315b902fc
BLAKE2b-256 dc92163e17b5e4e30f75139516691790eca9c12e607e82f261558cb46c44cce3

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0rc1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 fc4c16e1f2e22b28d35b42e85c4e3b0b719e7271a673c2f257502affb8616cbc
MD5 16687f24aed9fcb2ca9332174eb7e07a
BLAKE2b-256 a6e362aa4bcb1872db1578a3a961bad847481bd6302daf8534184ae72e779e3f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.42.0rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba1694997e4f3f54d4e5270286f18bb03ee393ee7c0f73157260c301edd19e24
MD5 dad1a361476e541ce4b181385a0d76d5
BLAKE2b-256 120749cfce711cb652abd8fdb4ef8f2ee64e3e9f3d29bd1a199e8fc9ed4134ac

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.42.0rc1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d86a3bedc8b53a66afbf7b95546db66694bb9346a2331ef5bc69b80e46501c62
MD5 8b7029dc6144106dd453d88fc9c107ce
BLAKE2b-256 b5f897a3dc56ebea0839726ee080d5b340b86b978e5988035d7d8a1bcfd85bcf

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0rc1-cp310-cp310-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 fe3d9e1f848df3cfc55757d7ef781f34760cb386e9e482589b74c6d90a460f55
MD5 b003000c5d98bc024720bc4106763aee
BLAKE2b-256 caa5a75735d654c86114bcb390951ec4b66c41c5583ec291c757019a2b2a0c84

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0rc1-cp310-cp310-macosx_10_10_universal2.whl
Algorithm Hash digest
SHA256 2f137c3b7aa2dbed7a00c121ec9a7c73495b015731795e336a5f98a86f5f0dfb
MD5 8b17f93dc5bd8aa3497151fb97fc50d1
BLAKE2b-256 ef0b7955ae3f9efbeeda16366c7726b30594ea28ada6900e29ed27e990c7e240

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0rc1-cp310-cp310-linux_armv7l.whl
Algorithm Hash digest
SHA256 dba6847020724ea4ff4d7732b354420b093c4a872ca5e069ac03a4d4f38e8a62
MD5 2908838f96c960999f8a0ca3e6c8cb97
BLAKE2b-256 c648fb4b929176da63d34c80fe170d2ae23c56f89650983b9df1aafb876e9c0a

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5b212536263de25d898fbc216a8860d107d1051f12fe3f12f136d61b0ab56cb0
MD5 80700d201c70b094102bd4e9321b14c7
BLAKE2b-256 3cf3b99e50f4ca867c6a359845c38fa96ce11f563408b20232f0fbf4b98e26e5

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0rc1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 25a08236f1f2702b565188a7e41778d8774061118cd439e8b6d8663fd439a1b7
MD5 3027383e8f8e3f812083558603676527
BLAKE2b-256 180cde42d2534bdba6b77bed1a3ab73cb0d0506526f3052b90408d429d67b449

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.42.0rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 784935610da3e62aeaca3dd61881d98a758459e503a653d50227e120013e6a61
MD5 8fa5bd0966f105e28c7e0fb830f44b2c
BLAKE2b-256 0d1738090eb948e88d04baa0f536f3e3a34711f461b65051b4eabeb0153e73f0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.42.0rc1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3efebf5400c56bf73d4887f095d2b72ce5bc064223ae2e5f00ed3197b9072a7f
MD5 c1366e8350f93476d2b2d06ed49a3d5b
BLAKE2b-256 58da7a451fa5ca1060a53516933868de4e36419c11b8a047b29f025e36722c57

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0rc1-cp39-cp39-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 834842a2df871d2e797f94f088a38d2dab7b2eea72d066795a23a8eaedd0eee8
MD5 2c07c657e311bd6d6566cd150d67d294
BLAKE2b-256 3e85aee6aef6a61b0566536ee9f5ec598f918e5753e0e873d8198da622c63ec3

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0rc1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1f9cd87aff239393484e809e75cedd45fd17c709d69be266bb704dfaca98f07e
MD5 4500ea8ff10348232d03eb5b3ba357f5
BLAKE2b-256 f5f596a74c2d817f935e7537badcfb00485bf94cc6c163b41a147d8197c2b318

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0rc1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9987e1a74fea0d42e946b1fc162b746c6a51dd5a5697c3e0d7f1ad6896d3913e
MD5 57755e633183adce337051da7cbe0bb6
BLAKE2b-256 72078fa62dbd1a7869fa326ef98b4427a3e97eff3d02e9af3e42c3d3f45954e3

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0rc1-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 b59f5ee39febf6ce568a843e98db49fb4d4899821fd31f264a01b933b86b70c5
MD5 e28e0095550bc40eb3f47a0346d9b8c9
BLAKE2b-256 80cddbf9157b0494e67d3626b77000968a1e60a18c0ab33717bd75e063944852

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0rc1-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 915da8e62a06fedf12ac73c533dfc7e96a7a08a6d0015ae601388c491825a274
MD5 19c915df91f05c139d22350152568ca2
BLAKE2b-256 be2d3082842d7ba35c204ee8fb4afdecf402b91cd7113d12bd6a59477249d87e

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d4231dc6f5603648831edbda88464311d9cf3b662e9e58e04be269d1e3516c3d
MD5 aa8f9bf3c93340ecfffc093082bb88c3
BLAKE2b-256 4a1931d128379b7d1d4f55f45e7cab2663bc1ef5f171fa35bd836c8cffe7fdd4

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0rc1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 7f1f32bf20f56230fc78a16fa97ff3675568597585ef9c91d81174532efd6135
MD5 1380cce0ec56417c03b1438e7c63901f
BLAKE2b-256 28cafd46e4de363147bf39c74d0dd81a005256f4d1213341c94337c4a006e82f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.42.0rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d5fde1ac3d56ddf183771b7d9787ef7811951361bb131f9061a44e6858c7fee
MD5 1c6f4d0877faa3643208846c0d871aac
BLAKE2b-256 7f0540282f4796a3b9506e4cea4760117c95515f9ef31308c460cfc3453fffc9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.42.0rc1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 31d86768b031a9409d1d2d1b8db1394e7567b24631fcac296259dc41408efbfc
MD5 c0f89e52c46084daa884820ad7161b79
BLAKE2b-256 acbf5f56b821b8c4f90b410ab9af887411add9ce34f760e81fb62cb306b5e2f8

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0rc1-cp38-cp38-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 48196e3b468a222d321a1165a5274753797368d45ab476000b29cf12826b5e10
MD5 26d3cc095fc5109d9f0a00cb6c693e11
BLAKE2b-256 f536e1a0e3ab209094bef9acf19f0b91698173aba4102652e158e753d3e1ada8

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0rc1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ee328e0c15fd9d64795c52bcb9ddce6c430f1ab29f1e4ed0c5038806ab0ad5d8
MD5 c76959cbc0643d5c38527286b2452516
BLAKE2b-256 5d026e4992054c4534a58574e8b76281ae5eee67299f1897a57f09ccaacd326c

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0rc1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 32a7b2282306637cfa495095259ccb7b1ecae1b6fea827559e52334485c77a5b
MD5 23f7e04cdac769bd8c9cc1e3ddcfc12c
BLAKE2b-256 edfc1fe369ec415eb179b7037226eb9ca579cd019babac135fc5f193bbfd8ad2

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0rc1-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 459b389dcd69cd1b52398ceb44c12656d0b8f0240dbd885dc695289b800b14c1
MD5 9a2338fb85a1e380919ead45e3a3a70d
BLAKE2b-256 55898727f52927d4013ac18cdf2ca0d564e6aa086498a5b8c8a6b80f161451a9

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0rc1-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 4802a0a864c66f3084c83387a32549ba4c8f1a0f3e0e62383e3d9aa100eff143
MD5 37f21cc7f1fb335b1698510dc98f5fa0
BLAKE2b-256 42ec0efa9f1dd548acc07fe695c5964bac89d17614fd53424280f6cbc30e8e10

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 f588ca8ea8f06a591e4a83b960d04784effb326e3a74f3a9cbb3872671f0fd58
MD5 465ca0f385f6adda66537fdfbba66d68
BLAKE2b-256 4e2cd7a3b2d405b6e0cf9ce78c56c5549887daf63cf544ea1f0eb120921338b8

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0rc1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 01ad86e0581923298df7b3318f8db036a8c954f385010143c5dc486d3756660f
MD5 0bf4731e15e90232b452bf6469beb487
BLAKE2b-256 de43a1732cbbb64a84286f3a0517fe966d68b16f4adc42d76e96fac8dd82d1f1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.42.0rc1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4256847e6bd713a84f0faa6930a0e62090da2364265da752b8fd3eb4b2188ac9
MD5 4e263e4e9757132272b828351a5e15f8
BLAKE2b-256 37947593dfb39dce833abbe0a93d9866c5ad77f9f52aeb1f9fbdfafe23d00781

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.42.0rc1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a2f127ff7d84795ee19a63ecaf4efcb2e2308b5236f3e7df596171771e03a5c0
MD5 73ad2fc86bb2b92b96b5c515330a83bb
BLAKE2b-256 b3eb9ff359f374c7300a5a8ea9c5fd6eb6b7a8319ad5893aa5f5a4dd0441e089

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0rc1-cp37-cp37m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 125ef0978469a471cedf16a9099128b04eef17bdb3e47dcf539c3dbc2f5e9383
MD5 aca71cf2e625f62af09eab66dd34b367
BLAKE2b-256 c02ec0a5badc1eab61a980c2ae4ae91c0b44b9f9e572212ebecd420e8890d9c5

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0rc1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 53a416aeca3c1f8c4a0bdc405fc3eb1685368324df5fb0f73bd773bee98a8f18
MD5 70cf704f685f56a36d28b55f1a57c26a
BLAKE2b-256 b96c95f2d773dde89313474330673d7e492c9a72314992cfc030d3495a85d5f7

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0rc1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7bb8d3d8643fb6d517719f9e7e01b4af6c4277e8f0adec00c815b4a019708fc1
MD5 be16e92e110a71a7fe4a05b9830fc6b2
BLAKE2b-256 9cec5303c3d26be6fc197c2f923b76da9c37e046b67b85ca575725f8c4e1f614

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0rc1-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 64dbb23edb4aa87255263a7f8eacf6d410a9c10dba3b6f4036bf56505df1519d
MD5 15ead5df977732bfe7e9d81ed2ecb869
BLAKE2b-256 ebd05ec493d4ae340444b86ceb82461a7a5856b44885b244749ad65fe817ae4e

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0rc1-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 611ae60af2d6c0870f3a391f2504391361fc47acfbce6b2a5e0e370cc97350dd
MD5 2b0934aabfdfecd85679085a29e7ef2d
BLAKE2b-256 3d31799150861e01b54dc570913d7b9ec2bc55818a023c724e5e3ecf2b92f84e

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0rc1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 42b03c121ba847caa454bd9d6106d58a521e320a23eb85fc3d306005318e4f0d
MD5 c860717d6888a26ee4291dd8919922e8
BLAKE2b-256 427d20e1ea00f1d3b76796c15165d39178a87eb2140c0a56f8e16f6b585c6a70

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0rc1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 f3d67b078572642712732d9ddd435eec693b5f99328b8539a565bd997dafd7b8
MD5 f596fd06179ea77d366d5c57a9ab110b
BLAKE2b-256 e0f6f9f196cc3c68546a355ca3711194749a0322017672074e2021a3cc47e286

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.42.0rc1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 966cf4a6fb9ce6a7f608f9c2096e7090c6451daac9c31863e2aac853f520d7f0
MD5 ac36d9e2c4cc46d5a7890bd27f6fd2a3
BLAKE2b-256 4a8cfca88331dfd8cb2498d6e77060999a763cd5ae371e66a81bb90a253d28bb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.42.0rc1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 21b3a890217c9704b852eea100b49b178c1aa0397563537ba48d415e307695e0
MD5 7ae65ae72c67791cc50ce42b4a88f0d3
BLAKE2b-256 c775710066545de6f4ba32e49bb62291f234757ba7c4f6e18d44d5c9f3837ab6

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0rc1-cp36-cp36m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 d1cb1903c659ef76fc3175b08b6694d0fbff165df29dbef5cf3e6c1bd5eab3e2
MD5 5f58d7b12139bf5f64f06ee375344c97
BLAKE2b-256 3ceb67c447ddfb8ea5d98bcd9ceb3e8289a66243d476cc48aac2eff74cd1eb47

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0rc1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 193512fc27112096c8d68d52d0791b9dcfb0119e2bad884cbc90992122cd9514
MD5 2ca09859bea24610dd083c3f04ed8984
BLAKE2b-256 2acffab093385c1d35ef0396b767d9e2853c3a3713f283dbd627a0d54134d03b

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0rc1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9f3c34983164b6bb147b1a0bd5eb7d1cbc1ccbc5cfa7a7e432d7a325acc4c1bb
MD5 477a2f44b02c1bd71af002bd55f5d6ea
BLAKE2b-256 58ccb7c035a8b5d372c9f0e6ee43e01116b8f4f248ef991c983f577ebb40b697

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0rc1-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 2fca72914c6b662a1281478730b705586fae290bec61ba83c505c07435b92a9c
MD5 c95457852cd82aef7204e92a9051ed26
BLAKE2b-256 14c6d47aadfd70e6a7938be289f5fe471d97a5a4d43460c79d2f50ae5e95ce38

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.42.0rc1-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 465d42a3106c87a99c5d30180987c7972de7aa4b7c55765b2e352f8222d004db
MD5 13ace5c1e17701c5cfe1c2535ffe3bfd
BLAKE2b-256 019addd73becca9b6ad41baff5ce02fbce86ce776f6a532bc24db1cb0317d523

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