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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.9

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

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

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

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

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

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

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

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

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

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

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

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

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

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

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

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

File details

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

File metadata

  • Download URL: grpcio-tools-1.46.0rc1.tar.gz
  • Upload date:
  • Size: 2.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio-tools-1.46.0rc1.tar.gz
Algorithm Hash digest
SHA256 ced6d47978626a7f342e7fb808f3cdb035694b489ca4a138edd5e1dd137ac007
MD5 9cd7a567699cd492a0b0f7e94f58892b
BLAKE2b-256 c9113c2e067bac25179252db4cac49757820efd29def4084b1d99f18ba0fee60

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.0rc1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f09ee90ddc390ed8ce6b360663b794a1aaf2c6e5038ec83e37c3b90b9f10b213
MD5 b9b16f13550fc24dce5eec0d34a4d392
BLAKE2b-256 18349576dfb06a009f6854233d2546cd75c3d01af788c59a86394d9ee4fa593a

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a6e4ac3834234016d14cd8d28ab8fd50415578c6609c07acc8675abf995c07e9
MD5 a08792ae408d2aedfb9121c20b4611d6
BLAKE2b-256 a42ab7de7d3c55287dd5970a92d414fd9e733d971e067ca1b8f56decf369ce83

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1b73a4a12cb9bd91df0e1d062e47d56ec41f8625028a2d901643d757424e4995
MD5 7bc68e81edb435dca5cfc8661dae675f
BLAKE2b-256 bb888ddd3a5858b4bfd27a320eae9d23feea6327edca263d5be0abe312bb518f

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c5f4b32665799d4ab281ce6c5ba4b637c519d18bac4553932f2be7532faf963e
MD5 067b32cf0d68e583f10c88b3bd9b9a1c
BLAKE2b-256 830868fa4a4e95161305393bb22a131953732838826279f9600c9a292c4bb1d5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 05e9d216bfb752ec436331dbd89fb0fba11e37348e73ef27c163d0cb48a006e6
MD5 2a9296da5585c7732bccad38136e03dd
BLAKE2b-256 ac8a79ebe2bba0a2c3aaab6107ee6570f0d599f7a33f975aaf9639c7b7e75a93

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f531324c9eefac2c13ef2385891af5d10c48aa2f849145242ed0f2e143e14b83
MD5 6cc6652e3c01d823124a8bc8cff79d70
BLAKE2b-256 d16b75cd7b9a70b814e17cd447f0cb6b41c8fac30b93d42717a5f4a0f192f3dc

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp310-cp310-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 c0d0c008ae8b89c52a7d1a962a83f51db443d1a7914ea29df4ab0ef96cf49439
MD5 4b881df2f85b539c5b498ba2b4d98827
BLAKE2b-256 303cdc7afc065ec2708a2d37192b64518780660002cf70732c35433030e4b6e6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.0rc1-cp310-cp310-macosx_10_10_universal2.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.10, macOS 10.10+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp310-cp310-macosx_10_10_universal2.whl
Algorithm Hash digest
SHA256 8a84881a616284b2ad5b1376e59c0a6f5100cf25bf677be928eeac74243a7e83
MD5 b382506a66d1d0c7b0ede099ce084d19
BLAKE2b-256 7f380779bf6a1f7315e2a6c1d57fa26ab349e36602c3a662784f8bb0fa550e61

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp310-cp310-linux_armv7l.whl
Algorithm Hash digest
SHA256 a40c5d7d34ca4cb773fe3eb646228c737f5754d8afff50d22af71a4413b8d517
MD5 9ca85c4c7d13761d8727179a6bdd2726
BLAKE2b-256 79c83ef1e212e519c178a0a2b686cd99f378400222bd2b12cca758c1cfe745c9

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.0rc1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 be13256a139af7a316fa2793419611c076c4f88d87d4ad10cfa963cf818c44ce
MD5 d1b9484f1748244ce5446f084b78675a
BLAKE2b-256 2d62f1486c782576036d01425876cf6801d47e0c6d88e647eb1dbc7e937004e9

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 bc53e03bad99944533acc588f7b76c90c93e99d6f7247b4f728066f84b448789
MD5 0511db2f43ba7da74acbed25100fbd2b
BLAKE2b-256 84ed736ea3cc5d8e6a8ba2093f773d7d62c21fd9676f8e54d878807798689333

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1f4207ef5bc7ef96b76140bd4f0931004c428026b0649966296eb41dfd1152b6
MD5 09c7dd5658ee849726934cad9cf4024e
BLAKE2b-256 9c8e2acffd63692cd71e547dd952f3e30e9d53040408a350c99f176f96522df4

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e9c70c9c870ffa40b23a3c0ca4c8189df72b2dbb49459ee159bd65a6b6476fe0
MD5 50f0fb4e5fa2fccff0de3f533b3cb931
BLAKE2b-256 c3461d90675fd07ee9dffd78fad4dba8dee9ad4836b23fddf1e95ef270d06e27

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 200ec99f1469ab8d92064897b0dffa956519240f27ed0fc9613fabc1d91a3f46
MD5 31236b8a93ec783a69c0bed8368c7844
BLAKE2b-256 1e4314672071541bec461a6eb472e169a3d4b8bfbe41c6613d726cc117abb09c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 661520fe8bf89e005422b0653c46799af3c3beb1afaf91fd08d98c9b2ff15f85
MD5 c4b4c0100f34d9de8e4d48c1d1992f01
BLAKE2b-256 157688327a755a71b56080223391262f8399cb3fce97975565218a35cc1c3009

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp39-cp39-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 45e26fa9e9551c0f143af3e7ba6e54fa4a9c6ea4b05b173976e4069412ab8237
MD5 2d2d3185e43063c68eeb7344e4c064bf
BLAKE2b-256 282fbf9fcb3c87091bf8d7643d023cce4956e9c2c234d48994c76504b74e2ea6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 786000779a03fa1fc504ce4a251c27570853491051656d2ebdb8e9b2b5dd6560
MD5 9dda33004eae53770c9b1ba38f225517
BLAKE2b-256 36518666f0fbce5e1e6c52186f3cbf6d242f0a850f3900f0552a522d1b115ac8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c4bbc6634a35642c6e961c00cc505f25b447e2b066708bb344ca2570aca41175
MD5 75de2eabe1fdfc4ed8fa3a23b1f8b1a6
BLAKE2b-256 2647ace1284321d3b209ef2cb17e0c576396e659ba7dcba26d09991de51fe334

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.0rc1-cp39-cp39-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.9, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 bf9c8b306f00839bdc4f2c32316af4a7dc853fe7c6b0a3089d69219ba25e7d4c
MD5 dd687fa8f52b3df3f6618c591980f26d
BLAKE2b-256 844140a01706129bb9528dc702f543727aa6e88b2deff72aeac38392ed995c04

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 486445a7c677dac5f02773f88cab3487bd6584a5099e0c4c72b9cee986b9e34f
MD5 b890b652f9cf3ecaab94b35c62a17386
BLAKE2b-256 f6002999cf877e574c91f242fa225695cc4af2f538cb8f08fdcfd9b5649b9141

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.0rc1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4d79c1862545d2f263664b5d0f2509ba6bd70ea3ec9187eb20ac514d18ad3cf1
MD5 7dbc6bdb80a654fc0b52ce78f9ab20b9
BLAKE2b-256 c9c7456c712f22eac8d39c59ecc845f1b42a415f9cf72501dd9b3064e078cf77

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a9e77e03a27dc98d246fb75df6e2304fd6b9c3588dd2c7fc93d54a21567863a3
MD5 0304dd952b1413387290c8ae4f226785
BLAKE2b-256 d9c3ae4c45e7dbfa96f8e78430f392e010015891370496a1ac72c5a52f96c54d

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 362478bedd577a0475786158e89648ae325b1b3b54aac025fcc0b06220dd9da5
MD5 da83d1632eab4fc0c71fdec6ab88ac53
BLAKE2b-256 527df3be2b518a0093760819a93875188e9fa2808dd7f5cf989a2c9e1dbf41e1

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 bbc19d82a915fe0baf624ec561150cf69514bb68222e4de8d00b41c22fe8c59f
MD5 2b46e61108ce7b1afd06c7e07ee8514c
BLAKE2b-256 b62f58127b2f489a405cbcf31fa40a82e3a2db97bfbc1b5b975031a93e2dd55d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 57e32ea96f98b964267287bcac8f4f4562087d3b3212b58651f77209298563dd
MD5 b5cf45406efcfb9f6cfdd5034e78a582
BLAKE2b-256 9f27ccd00920aa4ca1cbb29785b31a985d4dc9136c421c14493c086174a230ef

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 810446ccbfd75c1fea76f44d795d76437d895b4ac1d6ac692c988dc839fbba60
MD5 c5ad5e66e59e11e44614e3382686eb7f
BLAKE2b-256 a05da7934ea49bc2ea60027842886eae5d624e06e6c21748ce46cd34b882610d

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp38-cp38-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 4990fd148dab7f43044b4b7f4652cf6a78ed0b69b47e68facbfa4a27a912db6d
MD5 1bb921a88e8f17fe318cf1c5ce5c1994
BLAKE2b-256 4b6916711b9f7bf69ed0c372455dcc2e632f9e527b57da05c70741a3c8303c0b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 40660fd4b49ecb2820d4271547e7a84762d0d70ed2e4ca6f6ff555e8ba02f350
MD5 786371e56f1c9320acf81a78ce2d9a86
BLAKE2b-256 881c8276dcad7da83006654b7ac8673029fd4e48b63669496bfa26f321422561

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a76eabd78f7853b4e2e8d3eb2b0981c499966771e707f88d692ad856d9312568
MD5 039e9d98219b11adf35911e4e510bf9d
BLAKE2b-256 1ffc42b4fb27c21158e48b13d328d96bd87cac0fa1b87d32fd2598e8c5f88113

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.0rc1-cp38-cp38-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.8, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 859f074c3adbeb9d3698111c5cf89bcc92911f2014f48dce6aa824c2a2a09ad0
MD5 c3c4bb76582ba54607139b15fd097cfe
BLAKE2b-256 dfd039f3fc8bb0f63b3adf965f82a00e32d8130edc04b65d6abb1c1b945beb51

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 dd0b7f4180e03eed7bc1384cac095afbbaff9a63370e1dae631c96085b62d207
MD5 3873774aefb7128c68dffb45abb63d71
BLAKE2b-256 8e5f0935bc98c425cc16603caab34c8aec289b33f246a1e8891e9b2a5c8f5bad

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 8aca8462d26792ee0e135bcd63af60ed5bda3f674ef0dd04cd88dedf118d5459
MD5 600ab735f55007a7775533b4510c093c
BLAKE2b-256 4b673de65f631b64c3122933d7f1f98ff95eed57ae2dd7183ee635afa86ef387

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 cebf22a7802868cf618485083618233f73a265e61da68515bb51cc887ebfc82b
MD5 76cf5b82f004fd84b433c8fe9c120126
BLAKE2b-256 02f4ea5b8e86e6232e556b5fb4bc576855eb92275a7c89b140ce75975cb53475

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b1af69d61f24f986451d68d080f974d3c20b815597cad3eeb90c0c89e7445a64
MD5 61a9d032e2337db3a50525c9a0870540
BLAKE2b-256 1e470e50c506748b577f0d4ada6fe527ffcd73e006684b85b41ef8eed86a4a7b

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 cfb0bc2843d80979230759047ad3cf3de06e7ca0cf3485e6ce3ceac6d0ded74d
MD5 3556856f5678fe6d7846463657e9591e
BLAKE2b-256 37abf11990c586fe785b71736da567b90e55f62b3e108da81bc2eff1b80dfd74

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f4ca319430610624074eb18a82de6c1502a2c728589b296cfe2f0ffac2ef8461
MD5 f918c4525cdebb1fdf9e0a99fde46540
BLAKE2b-256 bd2fc7f729d0be4f97f58e546ee034a4a68ef3fa19d3a10b456e4ceb75af2270

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 94963b1ac85d5859c0a328021134ebfc63ddbe88efd4187f9c1009d9683b0d28
MD5 34e90a14bf5c559e94bbed8a1242a498
BLAKE2b-256 19fa984a99f9902bfb8655262d7e54c4ec765ddf661d79fa82144e419dadb45e

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp37-cp37m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 9410ab5c8eb74818d6e48f6b017a4c5bddba77a9cf87dbb9f661aabc6c3617a8
MD5 21c15496e9e105af62490f9caafdfc95
BLAKE2b-256 d1d8b4667ff6447775b22c93b4004ef6c0235fee6467436630c1aad3fe57a253

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c745bfd9a6a6dc625b5496c20bc55282b5fb1354c07b85b1baae54b52c3df98c
MD5 150d6bfaf301c8aba900e003136b58d6
BLAKE2b-256 67ea327f323752daed19e1b3bc44b85eb43cdd2d29eaedf2519b79be8a64a92c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d80337d3441c5de88180f1dee8ba9e2f0b2b64a932f2b6e2d3b0a7bd053765a9
MD5 d954afed3ce6cf146fb5576b62890ac3
BLAKE2b-256 984d57cbe70142e2381b6d9a791b4506d07741cd424d9825fd74e534f072a114

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 441d036339814697fbceabdf78b14e790ee267d6fec4022871fca4995773b43f
MD5 a7acd4cb053556db99fd548ae21d84d5
BLAKE2b-256 d1fdf84a8f35ad721d38f4229236ae520dbbecca70b6c07279fda21045d34655

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 cfd9f697318ba91b25035682d0eb2dfecd4634659b9300bd086a6a37bc7fc5d3
MD5 8093ae46d45e453fa8500574d7590dfc
BLAKE2b-256 e81e04496b8690f6bc925718a54f4556cb17555a8a5192cad73c1e18096aca3a

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 81c92a58ee65c856bc7b231c09cedd2f0fdaf073233bb7454c8e9f81876e7057
MD5 0fec95e7f5afb2d6e5c893e3d6023293
BLAKE2b-256 253846c840036d79294eabef008215ef600443ceed3ce5ea9b943e138516d830

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 6515a3fa29f2f70adbe7650ea02e7017581b941a4f304d59fe2e3a91f70783f2
MD5 8440deb858bf4621f9081cc3f8e6370a
BLAKE2b-256 0d1d4f0fa2455a5a174702980ff47bec18802668dbb6ec3f66fb607eb29eea60

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 01d3c504296e0c7f00f177eba7812bb913bc52aad8a7eddd0f7e63549102ba24
MD5 eb919ecc1745c9207bebf5e35f4cefa3
BLAKE2b-256 79b2b5b4826df8675ed04f503f1e6a93a56317953f86b59e82cecfa03f52a728

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 a81849c160ff6796658f99a72bda77039b1b29be253b10cdfccff61996ec1b07
MD5 bf60aaa762abed5a3adcf7463379ecc0
BLAKE2b-256 3300e533a4cb1793e1eb0cc616959cccd3a721cf588f06df34d6d32042d9b619

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bbf0c572934c6c4f119f029a1343ee57ed4c39e92cf45242d9a51586cba39cdb
MD5 56ec5389bc28bcde9d78edc26a97c599
BLAKE2b-256 38ea9f3c73bcb119f355950ace9a2e47f637ea3a7d78a4ffc5a36915b6de5040

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fe17c7d56a04bd65b0e0483733e978c2e8c349d3d06b1e34e53f6fa8f301c2ff
MD5 39bb8231dd9ac1a5261dd8a3a3efe82e
BLAKE2b-256 4c22654452eede7150d714816cf877ef29f0c3a2ecdd914cb80f215b6dc4b191

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp36-cp36m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 a4d00b5ba57674c280636bc0c1cae392722dcc5c23e50f0eec184911916ca894
MD5 ef4b17aad3e915c0973143aa20bc9e39
BLAKE2b-256 a50510af391a45c568ec20c3d98d66f632c1f977e41aaebc32a19f17e34de36d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7608eac20739895dec43e28b0aa98a126bc2a8387acc4b15ce753c1f46615318
MD5 5e36221e99a39381540f0077980e4c04
BLAKE2b-256 658fea569d1de662c1650cd49d696537bfa3a39a7db30ba4ee15bb275ac5ca5c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 40d545c8f78c903bb7758e7d4381d3d28d78e78ee8a2d53d3c9147ff24c8ef60
MD5 960b007e084333e8e39a736eb3e149ab
BLAKE2b-256 f29a99f6eac434cad3b76f96873948331dc8cfc4fd8c2b1a216cdbfbc8660e7c

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 76277e8bdd41aa754869199a283d7964c1542680da62bdd03711380873bd0425
MD5 8f48cba610c5d9709ce354ce17ba80fa
BLAKE2b-256 5b9e9bf8951a6edb72c56e596c48adcaaf51ae6ba6666f4ea8b7dc648421a124

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.46.0rc1-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 9724c77e5d651cf9f56f2eceab0930694304ca1d7dc967629c46d4c9e27aa4c8
MD5 4ddb2d24f3799dcc48c4458c6241524e
BLAKE2b-256 41f806b512abcd269ebd25f77a26b7136b91b11d1baf1f3c4e92287a8c784756

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