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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

grpcio_tools-1.46.0rc2-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.0rc2-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.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.46.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.46.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.46.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.46.0rc2-cp310-cp310-linux_armv7l.whl (37.3 MB view details)

Uploaded CPython 3.10

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

grpcio_tools-1.46.0rc2-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.0rc2-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.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.46.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.46.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.46.0rc2-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.0rc2-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.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.46.0rc2-cp39-cp39-linux_armv7l.whl (37.3 MB view details)

Uploaded CPython 3.9

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

grpcio_tools-1.46.0rc2-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.0rc2-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.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.46.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.46.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.46.0rc2-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.0rc2-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.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.46.0rc2-cp38-cp38-linux_armv7l.whl (37.3 MB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

grpcio_tools-1.46.0rc2-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.0rc2-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.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.46.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.46.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.46.0rc2-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.0rc2-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.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.46.0rc2-cp37-cp37m-linux_armv7l.whl (37.2 MB view details)

Uploaded CPython 3.7m

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

grpcio_tools-1.46.0rc2-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.0rc2-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.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.46.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.46.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.46.0rc2-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.0rc2-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.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.46.0rc2-cp36-cp36m-linux_armv7l.whl (37.2 MB view details)

Uploaded CPython 3.6m

File details

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

File metadata

  • Download URL: grpcio-tools-1.46.0rc2.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.0rc2.tar.gz
Algorithm Hash digest
SHA256 cc3c9fa53d24aacfe891b60806d272ecbdc678cab886efa7d09d7869c841747e
MD5 d2ce26039a46bbe6c2105a6f7e3fe3b2
BLAKE2b-256 0ebc918671674791d20c1c381ee0da6773fa0fe1d8d58a88492edf603cb92bf9

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.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/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.0rc2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 eac4fffcbefab5c769a340106f528d30be9d59e27ccf79bd4aafe24d3097485e
MD5 99924e77e49b0bdc7e08ef518e726bce
BLAKE2b-256 b1e1c3ee57748aca2cda97b6513281aa429d9a7e7721155f16447abd2ca5091a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.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/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.0rc2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 64bc3f85aec87f8e3cb8458e0841008cb8c79cbf638a381a5a8c82d4e7445119
MD5 d31d72f13fe88b346396f735ec715cf8
BLAKE2b-256 364644ac5cab4c477ae0aa9f063c0308d0cef7ff5820deeaf2a3e1fdbf2f39b8

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.0rc2-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.0rc2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 853dc6b1b7dc8919481f095a8a28efb4546f7c433135834c2b1dfa1de3696229
MD5 5e2dcf9696ad58caea775e9fc3924b60
BLAKE2b-256 2acc7c1eaeb6f0a564d6db4b441617a21f1adfd3b5fad2c9420f8c4a1d2cd32a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.0rc2-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.0rc2-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1e490a6a760ba0a7d79f39cc90a05801b68f965bf2a479a93cab142462a74ee1
MD5 0ada47cae42414d7b5b0cbb2f04990f2
BLAKE2b-256 abb0227d18b79c99cde8c82b0d99598fe556dc0f14890647d8912f46408df541

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0rc2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e4beb529db3a93fbeb41a8363b603b97ceb9bb6ab1d6a108b931f5c52728e96a
MD5 b2961adc37bfa3e5022f5e3a57c9f419
BLAKE2b-256 f13c2ea4de6984c680b91642fd5fa3ee68cd6ce4fbb131dbb48ed42ff9b6f54a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0rc2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 813dde33c6993c8ab74b872dfc731e316d8b7c5be99b50f6074d425e84f87145
MD5 935568eda5e0176a8daa695af5e84245
BLAKE2b-256 634c5b6b8fe7df0156510a39cc0b58441f5f99988fec947f30079335406eea91

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.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/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.0rc2-cp310-cp310-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 63aec402b440250c3f909119718cc7cc4bef80dfdf016589890df14b85e1c882
MD5 74c75f2dc0be7c8a1a7cc73585ffbf80
BLAKE2b-256 0f64abb0ec228be75bcaa7f19828244b76a9d14cb9c51fc0736333397ec86439

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.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/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.0rc2-cp310-cp310-macosx_10_10_universal2.whl
Algorithm Hash digest
SHA256 206861b7348be51e4e51df9a879ff76eb961c9c8d0da9402fe329687ad9b25fc
MD5 606f5043fb98c5b7a190ae99b97ea2c6
BLAKE2b-256 2c904d20fe97af38babb60f34910b32f3f9b672513b9c61364c1f7b378556c62

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.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/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.0rc2-cp310-cp310-linux_armv7l.whl
Algorithm Hash digest
SHA256 748174e16212dc0d14a58154fdbbcbc0b8e6eee0e198b60a01e6e260203c9c9c
MD5 8b9c84e54da6dee2c0c8897519651d8d
BLAKE2b-256 0c72b6aadeaedf5533b46cd76399c465ab8b846f42c6c4ad8cf1759442a819eb

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.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/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.0rc2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0aa32ddfb797f4e84feec938282606e17ec46b5cb6597ae26a5ee09d18591096
MD5 8c6b7ecf8f8002127c215f9b6eba0b80
BLAKE2b-256 e22c77a3e75bbb417259d44893292da81e05d3a4fa3ef4488e083d5db2c97dbf

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.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/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.0rc2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 30d699b47e44f8a3ebadf6a105d46bf89603167b802df8754c3b4c98872efbbe
MD5 c153b1d56528d4815dedf03bf53ce28a
BLAKE2b-256 bb5739c6cdf4584d1bc7d350d0190e56f157300d3d4c5f8a9ed29be0c29b7cb7

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.0rc2-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.0rc2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cb772eb3e9c7b8a38463435e1c7881269b4fe6debc435fadd61a171316dd61f6
MD5 7fc5d723a05424834ee261299062c82d
BLAKE2b-256 735275bb94471f38a18fa4fe457993dfc997caee8be13ff4be8fef26e278cf7b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.0rc2-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.0rc2-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 65dd0bc48782242818867121fb68d820308b9b4ca09b99359291ea20827d8932
MD5 8e6dee34e05f096b2bd7d43a5c6c5622
BLAKE2b-256 10085f963873fbcd94cb0e72917ca8dd0e78590b207b71e3cb328b7c6214e447

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0rc2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 40a0c102682a89df037bb0dc9fbeb537d554dca0e301257157b5a044be5a20d1
MD5 eb7fce6a21a387f1fa0caca47e064dab
BLAKE2b-256 1bfe8f25a1934502f3d4c4bde034a66fb4b3b62327e164593f693d8cea746ee0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0rc2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8d72cf6b05407dc8ccf614d7c7d53a307b0a0634e6da684901a7734a0d4240ba
MD5 344f41f2976a1c4ed710d933b8931e6a
BLAKE2b-256 3d8d474eace5624522b25070b86a85f81fc02f8618d04d87736bdb06e17f8957

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.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/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.0rc2-cp39-cp39-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 cde7dc1522f3b9a71a02fe13082eda26ea85f2771bec1c1e058117c2b2c7995c
MD5 c7bbbcd17c9e280bc7243c783edf5cad
BLAKE2b-256 ffac558275760af756a8f6d87e3b7e1e9f3d34ae00ce60d5f22b930863a112ab

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0rc2-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 00f40692c1c7aa42a3b3cf9fb14c948517d8aef5b98c682d79635d08466754ad
MD5 505410c9fe47ba2373cf6d00097fd5bb
BLAKE2b-256 ffae0c03d10695e5599b9e0194c0162bcacc4d3b3c04c00665e545f55e87bfe3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0rc2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b7022bf949c7ecd33e6b92df0955e1ba15c260f33e45a6d28d5231a10c02af55
MD5 7a3da15f6478a5d8714f8f21ba2a1652
BLAKE2b-256 1ece284822af2dfa2310c5389064f85cb5132a4ef317d1eb21af40909a9bb37e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.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/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.0rc2-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 9f2402f6616114a855bed358738cff3015f8f6b2c4ed4b49ce8f15051cf41572
MD5 d769a51207a6e03fb4b969c34b1e8554
BLAKE2b-256 d08f5b8f79d60a4517e615d92bca0086869e669121b4299878a948928c12168a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.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/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.0rc2-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 f10f97768c7879f222d4751372ababf988705d1206c75a5d0505e6d3f8910b4c
MD5 0fb50dc696affa9b3d0b7757ce6f21c3
BLAKE2b-256 52675c1d3cf74392fad6442e8d36e1cacd7a240d3f8a63de68f88f53dc21a757

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.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/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.0rc2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 fc2257816ea79b2597e811d0c239e5308ea0f55dd85c374a4da57ded8360231c
MD5 fcfc512b6ff417821a985d20e9928b45
BLAKE2b-256 c0ad2dbfd162877754d0b1c5d547ab0adcee361d7742ed39f07271aaa4c045f7

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.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/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.0rc2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 4fcf36db4a38b1f1efb89899f179a09de11672f5968e677734f31e7eb1f803f3
MD5 72b02d58879aa11fc01bdb58b1bc946f
BLAKE2b-256 1a46ef663d55a1055348acbadda5f54edfdd29bfc9bebce2a6db83d5b979f2e6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.0rc2-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.0rc2-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e347b1cc2ce27f51c3555606421002cf420591546648b5a96f8527ac996dcca6
MD5 b13637689ab3b91d6389e138a7351b21
BLAKE2b-256 cfe3eacd6c06df4ce08324154847f221b6dd02b6ce8a08139d8f0b3c6da58429

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.0rc2-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.0rc2-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 245cfc4dd18d32c7a4b3558af4daaa2532908d152e79c034b468fb755f42ba3a
MD5 32680be03651ad19bbf29d7c53b612c9
BLAKE2b-256 a19d2a8b482d4d003e6758c93132da45269d21ff518740d1056bc9c0a65ba6bf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0rc2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a33a5dd98bb130de1b3c4f5593f723653aa9a15d6bcd9230d1d226b28ea475d4
MD5 e8e0c387f41416bb6937d6e0e8e3a68c
BLAKE2b-256 4c017d43c32adb7f1d7fd4134360efa19e9e90b70ca909cd7d52b7cd3274d8d1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0rc2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e8c1cb997499226a52a10bcd510fb34ad0cb01d04fac42d7c3605e40c497df5a
MD5 59c61cc2eb53b73c1087bba154c39353
BLAKE2b-256 1efa3fceb6571a53b3a6fce9a9809a8a72021e3a51a0ab14698d4a886da7ae92

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.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/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.0rc2-cp38-cp38-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 cfb6dfe295925596bcdfc2641678f050051b84a0daaa613c84df3635e4801f45
MD5 e5a59181f3029463a9efcd4c92cec0f3
BLAKE2b-256 9cf82367d3cb0e5c6d3c413293514ab3a95f5a71f67a96eb581e490de67d2b8e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0rc2-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 bd24af68cb0838031f6849820fbbcd51ff6a7f90372b067461bf3d3654c387d0
MD5 5d4eef973cd72b5feef2a7dc0c5dcd93
BLAKE2b-256 d1de15c5fa7d08a74dd72d6278587315eb82de624d76fa7d9d940fbb81e20e05

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0rc2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c3b22dc4487201677bd75f217e6fe1da960fd111c458c8876e010475881e80c6
MD5 712d462916049f7889b5b34962916ca2
BLAKE2b-256 67f15f9b0c8bd801e169fcfeb9c6194f0219862831bdecd5d8187e1603d7f701

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.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/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.0rc2-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 1cefe0f0e2a76435917121a35ced60b33dd3166190ae848c7f9cd8accf6bcbee
MD5 1705a9382b08bb5368a1a1660877538d
BLAKE2b-256 5ded161bd3b9ae20a642d0cc9993254244128632f22eb864da6917ca9d71ea29

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.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/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.0rc2-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 f3e707d3c14c814486f1a0259111b82af1313370d3d4d6ada7f80ecab9b8b41e
MD5 17ac2f9ed76b2d5d9d0016374af242c4
BLAKE2b-256 8064b9f3bcb3e332416333a9b6463df96ab058bc676698cf6eddc05b06350528

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.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/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.0rc2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 0dce4614842880cfe0d4e323647d768e7b89efc9cf9c18ad25ef65fc87115dce
MD5 0eac5dac139997c245ee410eb04fe4d8
BLAKE2b-256 4afb4e7b77ecb3e1ef27354456e2ef43617fdff36e0e4d7860c5df14c0919eab

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.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/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.0rc2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 60cacf3245f689138666b0c8f17ef3129d101aa243abfe3a62538a1f5cf406d1
MD5 e0e7c6de3dd6055736fbc083985775b5
BLAKE2b-256 95d3c03598eae0cba1141ac7579d019d50d34fcbbc6707ae74e55360497f9888

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.0rc2-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.0rc2-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5843940ea81913aadb5b18e8269ef8e99d4c12738a8b98f57477e2652826a751
MD5 034caccfb50ab481c5e3283c11990bd9
BLAKE2b-256 54a4f5dfe2a098dd180809fd6a9bebf5a04c3b10f08f60390511fd5465f5f33e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.0rc2-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.0rc2-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 a5884d671065c551df24714687c1db60d6b93331708bbbd1152d42c82bec9b07
MD5 ac2fb7878a8120b53b57b612a900f1ef
BLAKE2b-256 4e8068d234d435e70422300b76123ff00b2856b5fda22f7c973f7ef5a0505247

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0rc2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e1ab4fcaabf59ac94209ace8e0778abd39489bbe33902e8f83a31335fb36dfd
MD5 bc38c8d551ba01a2f0451fc3123e90f7
BLAKE2b-256 b8f0d20480df1e8878caa4adab552da0848014aa8b3a95cb88883d7ce191da4e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0rc2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 15bda7eca47da0e7e3dbacb57eb02f96a520a4a0b08c1bd6b83735bd4b00c68a
MD5 4eb697982f18552654146aec9ce9da4c
BLAKE2b-256 29bdb4729768a8689b3f24411ab598ef3e8e054cba81a28edf0d9917e328467a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.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/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.0rc2-cp37-cp37m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 fe680649981f7a8717f36e388a8f561744d6025444d115fc27535f788ac92750
MD5 f0b309ae618f9877204f4f3feb618103
BLAKE2b-256 201b1d07d1f56c1ebdd01b9204bb0f6e34250b20dce7cad11b31178824f560f0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0rc2-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 701b7d34a59ce03b75dc9c5cb4b1b799912a1d700cddd206fc28b92bf89b5799
MD5 668f6524117951b7b13a45585ed741cf
BLAKE2b-256 f3506783cb16466573f4e4a0e5d17e135865e47ebe549a8657427039494fa24e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0rc2-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b5b4941c697873a5ec81719cc727e4c4244465cb569d8b6a11a30268df8f3673
MD5 762469a3f5657f360dab383880a1f4ba
BLAKE2b-256 8e1b5301282ab9dbfcf9a47251cb8f81524e22973272e5928a70db9e402c7dd5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.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/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.0rc2-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 33bc0006e266832c1c230333bd58524f88aac96532a9d451ba6a8323bbc37774
MD5 cfb3d75846cb24f3019bad8ced145efd
BLAKE2b-256 34efcebbed05d881b8b96222f2cdcb1274c62b9b979c1f7886ae1ea99f56689d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.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/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.0rc2-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 ffe64fc1b7a314a851a4af62118fb2519ebd626ce58876b40207675266da718d
MD5 62b2f959cf649d2fc60f3f2ac6f68e59
BLAKE2b-256 834b0cb08136426d5851faa17dda86f2f24c589040a6489125cb06ce6afd84bd

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.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/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.0rc2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 a9a3535f07c5f59b113c271ed660458c84a9c4b0b048619fa3af8cc6a425ac2b
MD5 83d90ee23a060412e5153166c3dd777f
BLAKE2b-256 353cf95135235240cbc335d68bd4b87292624fbbf802246ff3211a9e1c73cc8a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.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/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.0rc2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 00ddc6681705ef80a2f9bb99bfa417fd0bd57afc924f73d7aad7ec49bec96b0b
MD5 bb24d13722aca8bba94ca98babb1a1e3
BLAKE2b-256 b8a77464c06c9c6deca23a797f8a40238eafda073891d859643eb88000591411

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.0rc2-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.0rc2-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 213fc212f0ab30cbdc5418782380a560faa832e19e8a1f469eaedca423eab73b
MD5 d90f83b1cc1974fdd59e586504a741b3
BLAKE2b-256 7519cd409b1330374c6847c4fb7370fbfff93590e484baf062ded208ed575bc3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.0rc2-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.0rc2-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 0f747431bff5f3993080c4176ac002dfbcf07d15f8ecca846f08cc3cf135225e
MD5 6b844932bbaeb5c417399a5620dfd596
BLAKE2b-256 9960dae6f8b213451fd567389e415f44f3368acacadcffad14f5b2da2cbb3e82

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0rc2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f73c458e5c7b05fad495754fbff34dbc63c1f46a2bf806a8d114a89b4297563
MD5 7ab946f9f422a45fd0a41c813ab38407
BLAKE2b-256 b645c2b34bdfca811b642d906d5d2a907c0f2ab02a544278d99e40c4c9ae4dc4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0rc2-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 19bded671eee2ba024e0d3096ccc092595074c88116e8dd3b854c53e174ca87e
MD5 9198b88da3eb73f25a761626d5dc3224
BLAKE2b-256 714fb514fa7d6e95b4a14f2d16731f269722d00ae0fc72f7c466e4ce597a2447

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.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/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.0rc2-cp36-cp36m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 cd6780f030c59a6da3ad7819999356bb434e1ca7ae6cda0357d9ea0d8e3998d5
MD5 884ea8f7e28d60aa7e8d7c2d13c27ff7
BLAKE2b-256 7c13a8387c6dcd71be5d3f9cf07a09728b4d7bc36d17b51950701207b415ba71

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0rc2-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 210ed0036b766b40f0f8fd03aec993600c8d0e5c63d26a5ec3ce205479ee6e9d
MD5 e0a5fc4cef0eac0236f6d588c7129f2a
BLAKE2b-256 ca580255d1cb9ed662781e3f06cf896e0234771820ea818e58054ce513cc8337

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0rc2-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f3e7222e5880f55fa8c7ae6f58fc67d4d07d2e69c9541795f5470562d488b1a6
MD5 750e2299810a9ae1feb686194ddea122
BLAKE2b-256 eecc6d2cf70a558a5edfaddf2725f44b2f822736f6cccfea4dcc42db9f89d674

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.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/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.0rc2-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 960f3f8fbf74e8428e5aad9b4204e64a3ad3d009305c4a025ad2c7e7ff903b56
MD5 86dd7f8d70bd3c6c93359807f5e0b70b
BLAKE2b-256 8c5765e4d8d0f85a750f786b1fa51ebc23521e504f40fc5ffd9450531580d30f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.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/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.0rc2-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 bbe0b244effecec71283a94d15679d7cb062d3e64667bbc29edeea0331a20da3
MD5 8fe55b07eff9b64d4c6264a4fa4066ae
BLAKE2b-256 67359ee1846fd9181dad41afede37ed7a2472126b1aa4070959eb5769a76336a

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