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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

grpcio_tools-1.43.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.43.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.43.0rc1-cp310-cp310-manylinux_2_17_aarch64.whl (31.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

grpcio_tools-1.43.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.43.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.43.0rc1-cp39-cp39-manylinux_2_17_aarch64.whl (31.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.9

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

grpcio_tools-1.43.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.43.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.43.0rc1-cp38-cp38-manylinux_2_17_aarch64.whl (31.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

grpcio_tools-1.43.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.43.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.43.0rc1-cp37-cp37m-manylinux_2_17_aarch64.whl (31.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

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

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

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

grpcio_tools-1.43.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.43.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.43.0rc1-cp36-cp36m-manylinux_2_17_aarch64.whl (31.0 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

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

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

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

File details

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

File metadata

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

File hashes

Hashes for grpcio-tools-1.43.0rc1.tar.gz
Algorithm Hash digest
SHA256 5e940a0a4d301c2505e84f7c8dede6a2cb54dbe3a410398a1149fd28f3ef55c9
MD5 c595ce2f7d59a8297d578233f73126c7
BLAKE2b-256 5b3f9675f9aaba73a1667dd78a626a22b6858bf48e4ebd2ff06b692a02ffef36

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0rc1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f18b230750d38db00717bc3f98dde92654104e45c219a154d840ea63543daa4d
MD5 38c9833d5baec9dd19c67c3629722543
BLAKE2b-256 d28dc9a2e0ca476a7d4de7db1c33d2d7350a74a2ac72cfd672db762102d8305d

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0rc1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b7a3b6f034a22d840a997d06f3b99745edf6669060a4329dc4f29daaa6bc7cea
MD5 4b753d89da34715c04cf845dbef077b3
BLAKE2b-256 07b3448d32cf55e6b6b7cd9a7cfd6f0e894fc43f495d12ae3c117883ba011c48

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.43.0rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8e82237b56e1c2992fe0558db8005b7d270c2439e3d3dcf2c1643e4dc4021857
MD5 23832771ed2df0481f3bcf5ac6924420
BLAKE2b-256 2a9e0a07696899d77a55b148b8529422bd94b7a49d29afa91015844f08f67ab0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.43.0rc1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2d357e6f31621a3b410c855e051b263229e4bd0190a86f4b482fea4adfd2b6a7
MD5 cd05b1bf33af17dafd6eb4003f84ddaa
BLAKE2b-256 b97a746a84eba384117f5056d93c5f09af057093d884bf124633f7bd27cc8c40

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0rc1-cp310-cp310-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 07532e27a9992735ded49c41a68f392ee4b10b11339fd8193d0610b79c44d936
MD5 44cd36f421f82107f10ff35d537ff613
BLAKE2b-256 55e42c33ed96221999c5299b78b5f0eb5e5a6209fb801fe7299ff1599ebba3f6

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0rc1-cp310-cp310-macosx_10_10_universal2.whl
Algorithm Hash digest
SHA256 eac0c09fb36d56b549191cbac4edfeafcd8840eca8ff8c57f08abc7bb516ca77
MD5 3b47e2da296065fb05f040c2bee64ba2
BLAKE2b-256 c808fab1c43dd1855cc16ba63c757652df2e5a94402283034a143c1519f9bc11

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0rc1-cp310-cp310-linux_armv7l.whl
Algorithm Hash digest
SHA256 013ff4121563aa4c3cb08ff4173cba37a40442b03dd84caed2dbd23c0d0ebbf3
MD5 3f0c29f72f3759cd6615cbbe8feda01a
BLAKE2b-256 46257e1296514e81d85097c9bcf30ea2e772a8d794628a20fb6ecfa5a493d623

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 dc51e516f2b8dbba0ae2d6aaa3f365bf48cc52203d5881b54ebfcff1ed7428a0
MD5 abd7b31cb9d6d5814f196f9dcf49982a
BLAKE2b-256 1baf8ed2c69073940196f8ff24cdc491cf968ac64deee3e6d127e847fa00e2fa

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0rc1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 03e61641728586ddf29ee74544093943fc305537d35a955fbca385a99fd16e9b
MD5 41600decb694da3de9c9d79238d08528
BLAKE2b-256 7607080a207fe0de708954c428129239b55f0a094b7be22fed1eb5adfba50e53

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.43.0rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eb074f490d39bff014a6b2881323a0cf41066fea064c2c7cb75b043b43eb694d
MD5 cb537e89eca6483f3fd8fae64a28db53
BLAKE2b-256 355cb41ef84a6fcdf5b758a76657f1fd70e7c77a05ae70fa565ac57110ac27ac

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.43.0rc1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1741c629327b6a02735f03b897be094c1f6fd2dea0165ea7280a3265656e2b6c
MD5 34e1b79e5931cd37bf77a036b8774214
BLAKE2b-256 4dba0ed37f90e6fe5e0cbf06da191c6abfb79e63220ebbc5eead2d3b3acecb73

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0rc1-cp39-cp39-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 443771be9af7f5aca97d4328b5ded8b847eed645e218a41219066f39369032db
MD5 2036054a6183d9c8248aa561e173410a
BLAKE2b-256 4e3d634ed1bca0102ae6e82fddf4ac5d2ca217b4ea4737e93f626c44dc02f31c

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0rc1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a3c7b42c04ceafe88dd28143ea8d78d04b1b43d6db382e049c402cb215bdbdd1
MD5 b42ebd7b9d99ded7f383d1e576ada102
BLAKE2b-256 60a7d7273981330dbfb64987e299cb84bde78f7888ef509e828b4cb84d705c6c

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0rc1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 044502175e8f2bcfabf346439b3119e9c06219a441ede846842f78e6e914c1dd
MD5 dc1b32a201a72958442a670c49e6f099
BLAKE2b-256 6ca0838f9625f4a1a7a96350d4b727d43220ff1534bad7a579706495455d1ac2

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0rc1-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 1d5f4a0a946a2a9d3bab1a430adc2f9ae09de4c3f0ab0a342073c820853f217a
MD5 8d58618366b5847e9c33842040db926d
BLAKE2b-256 355d0a89ca218e4d9d9126f4df96eda1b5102072d164911ad276fe56f7a2fd63

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0rc1-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 74a31c5149e958b62f34c45ecab8fadb6b6426d8b0f13e5b7309bf425c06c3aa
MD5 267fc5c05d16321fd2d110a2ccdc5f1a
BLAKE2b-256 a2bd1cf30684a024655e04b96e405bba7a27cf9c09e69707d398c96e9245081b

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7f65719a7b7d9d05712dc3984170ec11dbd44f49b0e870d20b64ffe71570ff79
MD5 c8ee96cc77bc53861df9c8b70346f6c7
BLAKE2b-256 99b5329a82ac8d8ebf054d74d3a09d44d279d5f7e376064a6d8262423776b010

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0rc1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 c5693cdae047b13ef95733b038150faa31173996b17d248e28736205ea67eb21
MD5 6898ba9d7d595d85bc1630237b5d532d
BLAKE2b-256 0831b3952d7402cbcfa4258cf2b324fff2d237af509de5e710601032c7cb99bf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.43.0rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bbbc90d79312c4587c9fd1b4c53187ac9f769f3e802d47a3776ce480c1f694b3
MD5 a2fd19f23fbcd9dae916f690bc6efa0e
BLAKE2b-256 68d5399f9cb468bb590947fc930a28bfd0814c6d7111c9b57181effaebe174eb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.43.0rc1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ec0af13cbfbf24c3ebbbde2d36f1cb2caa9e99a2479349b2f64281c868f78771
MD5 4d6828a4a9ebbf15305f60bd7b30895c
BLAKE2b-256 b077e3b0a77b31d4922ce4c81973c52bfe640d0c43058ee1a242ffbc01119fdc

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0rc1-cp38-cp38-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 05380a4b845408bdadf70fe4583e5c916f3c5f2ecefdfcf55d402805eead791f
MD5 ac3b5cd809ff90c3cc1a9d0e214b6874
BLAKE2b-256 b74d1254b4d1fda30bb89bd77b01898deaa9caa07a37c62e78587a12bebf77ae

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0rc1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ccbe336826249d90e66b62f57d4b2656dfe1abae0265ad0a9b71b2cb1933ecf7
MD5 797817a92cee0d95a8fbeeb601e2431e
BLAKE2b-256 9d932ada128bd136241d09687ad1ce116661d2f8951d6dda49821c916098cce9

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0rc1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f2f3223873c529e64a82b74facd35d90f48c1e33925b11cdfeb378f1a7f251ae
MD5 144ecc893e6ae4f9954ebee884321919
BLAKE2b-256 477511ba9b2abbd27882224b0129bd03279b425b12f5d7ad479ee1ca38ac14c9

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0rc1-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 cdfd541539a618b6669288b6bdc0f664004086d2416d0e9ae087e145952a6871
MD5 0d75b0e431466c3c721960ae088c2ba2
BLAKE2b-256 98cb223883d826834d65ae699344d98d2974ec43f68b8fc410146815e1f492f4

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0rc1-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 0736be50ddfbc8b5480b7a172bc73e970b7bf1e3c48a6e627f537617270446ca
MD5 545eca6eb180c7956ffcfc9ff65ce730
BLAKE2b-256 8343d4ae0671f12ef93724c97e8a6c6c31f6d65939e88ab5c6109ef8d78c11df

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 90a5f3b0d9b0d556d4e1a648cbc90a59eb9d7ac3fc0381c0de9044c15db02798
MD5 d15a25a27f57ca29cb73f76ba7a84613
BLAKE2b-256 d0d43e805a22caa2a156b1b3ce17c422a0abd65421b9761e94ed95c471ba694f

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0rc1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 8573657fee6928c41e8b75ed1a6b38bc41db0aa93696001ebbf56d646014b6cf
MD5 c7500042e44f520cbe769dd177c608dc
BLAKE2b-256 4f92b68077ad2fb17360b8834d427f0f77ea97f50e549d84c89b60a2afbec6bf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.43.0rc1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 55ff475b644ebb5da6b873591c05e18e022114e11e73a7b56cf4d227257ceabf
MD5 24bd6d4d7a9973929359fd8d7618b170
BLAKE2b-256 07c68257e5fc82eaebe6e5edfba0b076f7b258c6c63d69779a538afc553cdf60

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.43.0rc1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c5e19e549e5ef7e55970472d067ef776a6d54c19462b58c743464f2c3d0f08d3
MD5 acfe2aabb5f87f6573f1022dbd4a409c
BLAKE2b-256 3d8bc9f9ee16c09b091b9896e22272b6c5b29ab41ffde7ae408516da512402ae

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0rc1-cp37-cp37m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 2444c0640ca512fed8227d952986e34290d1e2b6d1de3ef9f775f6aafb5b3379
MD5 2cf1ecb005f5d387cb020127f4ad1953
BLAKE2b-256 b4e8b7964e56b4ef83adf9c1c74819a7747b4ee432ea683da5fd87f7b6901571

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0rc1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 507f60e5d8922fcd50e6d1dd8392fd27120b5654f556cf60b7428ffd24b0f731
MD5 d05a5c92abf6082257811a6b3b1ed2f1
BLAKE2b-256 21f86c508a6ee77c5d173aa40fb01cc520fbe2ecb0a733c047037f5deb3d3eda

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0rc1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 eae214ed770248b9d3644f0087316564f334f98b96727046191d0b2428b9fe4f
MD5 318c84ca939017327dc9a3be61c57d5f
BLAKE2b-256 fca001da9066c1f510821e78819fa38b2d57e48909820f02b06e183beefc4a77

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0rc1-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 d2c285608af6f4f5865834fd82bad3e8e03321522c074b7e370308da8fba9890
MD5 bb6a989fb3a1e72baf1252010490ddb6
BLAKE2b-256 e44fa24e717f149ef0eeb41955ae577fc97ceeeb7be83a060d1431a2386b4c7d

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0rc1-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 f7eea9068462de08eb6adfa95021d1c26e7a0e1488a71b94bec6b96fd9638312
MD5 e4205c85b164ba7646a2b81e38a9a650
BLAKE2b-256 569f179eebdbe3cb6d2e772da19ae81e4b55581a8516a60cf8a0516cc578638b

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0rc1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 26bdfe92d3a1554ef6085679cf2f237564f7620409c25169d0fcd86ae2ae13a3
MD5 c4bba455358fa98ea87e19c0c16c7fc2
BLAKE2b-256 ad0b50b6f2a3117bcf262c032c62e71c15f5afc050d06c3ec1728e6d3044e692

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0rc1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 3b160c08d2a03096944a94fbf9cef4f34199bbbc26d42cd02566c39b7859144c
MD5 05ab4f92ba1c1e162de4a8f1d1af5969
BLAKE2b-256 eaca3c762f8effb1c912d55628a94470f4a0ed740b989ada84ca3da452146ca7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.43.0rc1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3af554fd45b225c202a521eb5c94198206aa94e0f2865c892e7aae80825b93c2
MD5 9e6fa8962516b182ea65428dc870db69
BLAKE2b-256 a1a1415ec8f2be1bcff228d923f30b040405781e560e9ab6180675c58ed8da19

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.43.0rc1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d5a954c7a32e89011b19cbb46b7479fdf836a09ca482c09a7a59be5604e1c590
MD5 52881a22eb2408589e625b42d86d441a
BLAKE2b-256 4b75c6e1c23c2fd239b0eb1fd7a5153e3310a412b2b215438c62dd7cda3f2031

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0rc1-cp36-cp36m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 9e80f14710aa53da77f678c9dbe6e889bde6a0aebbe9a57d6a8a2fd317ad3716
MD5 fa38733e0cb7e839b36b9844e4665180
BLAKE2b-256 3418f8939b4f1a04d99d21eedc286fb201226b612fa8c988fde24601ac2bc692

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0rc1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fafc0a93434994c08acb9a5b0d1d68b6732bc8d8b147601e8a324b6a73cca422
MD5 017961d44961d9f395865acdd5cb1eca
BLAKE2b-256 c35cbb1c3f9d02cfb0bfa13375f9c0233d608a27ef4a1aad257b358772c3c8d0

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0rc1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 83b7c23efe9604b74101985d859053050d2e89dc9fa007c84cb5e9e5a3c7c963
MD5 be4be65f39e9bd682950c974cddff580
BLAKE2b-256 6e5faef8e568f60b678c19ad80e90f46e8f368d5b4ccead818423d6b128bbca9

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0rc1-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 cffaf7a755d2b0c07338666fc8a30e95b105cc08a1b6c95dbdf7e2aabc5fe177
MD5 9f9eca5a2a6a1bd9ab6190700e1dada6
BLAKE2b-256 9a1696bea9443a96893ce46a377bf3488325d91cda393e0647f6beb8a7e3a5c1

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0rc1-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 f35750bd81c5adb26707376142a172851bcdea87e8a44c6476374f092e92b8a4
MD5 f75dff38c685fe2dbea1e5a389d926be
BLAKE2b-256 9b92f0725ed01b1f0a59e7b505b820e69a17a527d2495852d7099fab3fb3dad7

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