Skip to main content

Protobuf code generator for gRPC

Project description

Package for gRPC Python tools.

Supported Python Versions

Python >= 3.6

Installation

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

Installing From PyPI

If you are installing locally…

$ pip install grpcio-tools

Else system wide (on Ubuntu)…

$ sudo pip install grpcio-tools

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

$ pip.exe install grpcio-tools

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

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

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

Installing From Source

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

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

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

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

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

Troubleshooting

Help, I …

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

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

    pip install --ignore-installed $OFFENDING_DEPENDENCY

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

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

    You can fix it by doing:

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

    If you see

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

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

    sudo apt-get install python-dev

    If you see something similar to:

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

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

Usage

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

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

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

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

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

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

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

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

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

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

grpcio_tools-1.44.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.44.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.44.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.44.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.44.0rc1-cp39-cp39-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.9

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

grpcio_tools-1.44.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.44.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.44.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.44.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.44.0rc1-cp38-cp38-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

grpcio_tools-1.44.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.44.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.44.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.44.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.44.0rc1-cp37-cp37m-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

grpcio_tools-1.44.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.44.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.44.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.44.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.44.0rc1-cp36-cp36m-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

File details

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

File metadata

  • Download URL: grpcio-tools-1.44.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.44.0rc1.tar.gz
Algorithm Hash digest
SHA256 f64b9436b0decac9172af2770f6d23f41ac3f16e142bb0dceb984e7c6c4625b9
MD5 6af57d54a83d6ecf57f537161c3ace13
BLAKE2b-256 4b90fc3716cef605957efeb792d17a19a3457c1230a24927563dfb8bec1206ea

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.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.44.0rc1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 820a5efd4d310513e259b3f8b5523d42c2a7dcb24883787dc7846cb539d12596
MD5 f5dc0783bf3123c1a53ea1a7b4e0da81
BLAKE2b-256 04b35dba35c3ec96633df25b021fbcbc4dde829836cf1c7e3cac98b990b9a391

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.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.44.0rc1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 50287e773de1e9c5078095d7b6a7b3da0fa7b2a874a7087933b4d3422e7bdbad
MD5 e9a6435587f3f2de8e3fb43ce01a9384
BLAKE2b-256 5f20962c1ca0ecdd4b1fd782064cc414d6d172aac01854bdc633d9058e326dea

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.44.0rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 15783706fa9f32950a5b7c916ca604fb007da12e54c9d8db391c95bbbe53cd7a
MD5 db3f01f4eb57f4b828c5b0b2bbc1fe38
BLAKE2b-256 3bf930cc2a808f1198b60faaa52770989bd8816196b758ed9063b56f9f82731b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.44.0rc1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 350d971dbfaa6a732a7b1902dd0375be8d9389f171e7e25d7549f251309dfdcd
MD5 e7e1b7b182d9bd4d5f9659a0228601e4
BLAKE2b-256 8bc4d11c4e684f994a73de4ba05277cdfcbb4127c19cd1dc1440a1871e383439

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.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.44.0rc1-cp310-cp310-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 1b28d027bb870118c9883b3d2786ac111224b94b362dac89808f52117bc24c59
MD5 9ec988ac9bc2da6dccd7abfc273f2832
BLAKE2b-256 1934d3afe689b343e036ba327c7db03362396ca3abf67af4de9f9af575ef6de3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.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.44.0rc1-cp310-cp310-macosx_10_10_universal2.whl
Algorithm Hash digest
SHA256 73f619e80b244e7dba80bd258ffdc8003ecbf6e1553107c2df0254922d14e675
MD5 6beadccd12d64491002d29997b402244
BLAKE2b-256 e8c60741b7b71f350fe43cd24d8bdba539bf330557f8256e268a33c042d3472a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.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.44.0rc1-cp310-cp310-linux_armv7l.whl
Algorithm Hash digest
SHA256 0f2279c5a4ded76a92a88120b475107bdffa195b0a97ff7e8dcfb11933427ef5
MD5 4c822c814ad77f5a870455a37138ec74
BLAKE2b-256 8fb7aa95db3ba7d6f36f56d7d7fa7134cd82276c69071572e480a12eb1cc985a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.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.44.0rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4a4c83bbfe69b9e4935a097ced6e84f887970464d3869517ca4a8d74e8070edb
MD5 972c34e0be2a378af75b4250f9d37a04
BLAKE2b-256 a0d045a180a318f1bf6f4664120c451dc48f53170f7f1e0c17d66d24cfc40b02

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.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.44.0rc1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a1895d38476c355700261a52ee494f2433c5284328fa60c85fe09df3083f0d46
MD5 d732f13d36e45307f6eb99738b10963d
BLAKE2b-256 cbde996fd84b9b1de115c265f3ca6ca28342f0d8e7d6d47bbb36f655c2bbe3a7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.44.0rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 75bb89713f08cb9d8e5f406f1c7bc4aa331796961ee6b4c5d61a3303f84f50d9
MD5 1d65d3b4ad77dd7d90dafe85383d0c08
BLAKE2b-256 4975fdf1da9980f887555a85051359a36cbfbb848fbb8071ed60bac39284fa4c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.44.0rc1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e1abc739ac7f960755f986bbd674c43a7e5c6a063e25b37ba2764c30908f7543
MD5 5c22835ea7eb433216e6dbb4219d55d7
BLAKE2b-256 d0820e1d98a2afbb142e4b910eed3989fa14c7417f4f5d3e862fc0b666ee0d8b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.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.44.0rc1-cp39-cp39-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 663be9172c94981a71ab4e197d236559aabdbdd897878ee5e7b5425df756d566
MD5 8d4b991552213257ef7a490ba0fd6518
BLAKE2b-256 f70456096ac6c8c08f9bdbc73b6c9a738ea5bb5d05a5e328a9ad81ab2d90cd1d

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.44.0rc1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 63010882191f6f5fcdfeb3976566d820ab47d077b3a4ac038f1c21dac648c2bb
MD5 5667699f18c9550650353cd00740ac3e
BLAKE2b-256 e78c6198cb507aee0430d484c3e5c21458d364f92c6ce4799603ade34e9c2821

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.44.0rc1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 38397593963d20cb0dd01d50d97563807aae73bdff7beb0553e54d5c43b4db16
MD5 214cdfdbb25c9bd1e1ff5cecc6676450
BLAKE2b-256 d22ba120bd310c5de081edd735acc405537e425c2ec0576dce15983f345c1a1d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.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.44.0rc1-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 33bf5d613f54b3f50a3ea220f16d644200bd5f82abc1c8280df49ad9757ab005
MD5 e428ceabb1c1a233b1537bfea0d5268a
BLAKE2b-256 0a82ffea174ce9784b17519697dca962c4653abe541f39ca685868643d3d1e0c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.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.44.0rc1-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 0ad9ecae32bf8e5927e732a64d9836c4b45617eaf78bae82889dce580672ab83
MD5 14a0f31cb2af4a06ec3b2676d37ba31f
BLAKE2b-256 fb658fb1bbc8749c7062e3d1c7ed5393a7f49d2901a7a684db85094e4cfe9e7d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.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.44.0rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8dac93b91a58200ab12bf2feb432cf07046c1b37109807bc0039feff643e28dc
MD5 3dccbe06fb0355a2c81b59315c7ddc66
BLAKE2b-256 83c0529eaeecac916ac6553b25c80d0f8b48195689bec9fc78bd202a8de74176

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.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.44.0rc1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 9eaac4936eab04509368f9322db2aa4776aa830442082bba7867fbdbcddca222
MD5 ee1d1aa0aeedd16e77b567c976e90504
BLAKE2b-256 9cb35aae81a7e713e4d6d5b2e7fc094a9e14add03b19ee4826c67b90f0b7e7c2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.44.0rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 00848ae5d05b8da7213f94652514f0bd706cc6e63ee12b4ef885bf765fbd4ba1
MD5 32897e0d4987df554b9eea98e14c24ec
BLAKE2b-256 ee8d5cb74e48a6011c5574c8f78d862bc7d72765670971439c5085898ecad18e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.44.0rc1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7630188ae1f9a646f191f2086ba0992cab9c43be52f56aeed205203ffbc09d7d
MD5 3aee396044a66c83c4f6814e702fdd6c
BLAKE2b-256 7d98361811cf784b802c0cae6fde4a45118f8f4fa2b5ca76d6c75aa7e984c0c0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.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.44.0rc1-cp38-cp38-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 9c699bfcb1f835173f52f75e7d126c54dd95c35c5ff95c84e3e61768b797a52a
MD5 17ae48db391586a9cce95af363a050f8
BLAKE2b-256 4d28b66773f7e458b23dd5b21c581e71382e0c875df18d63229d830ff9e218a1

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.44.0rc1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 58ab39e603f39539b8673f954cf6feefc8c61da304b317596e22b2124a3b7eeb
MD5 29f92526990a3f12d7965bc258e1e719
BLAKE2b-256 55107b43a2d8ec3352542c2836709ade2323ba0a255c19ec391fe4b0babcb3b3

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.44.0rc1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 552f0f927813685cef85d15f6214e45f592b7e0e90ecea21f43e2c32e8f44e7a
MD5 c481c891474b3a949d2150458adff124
BLAKE2b-256 320636ef1a52c6ef19683effd88eb7702c809a4703f446113e86af632f037634

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.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.44.0rc1-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 36a57272bd5fccad6bdfb4747dbfc2eff3e54dc9a8adf92e028fdca667d0df30
MD5 e6a81cc748871a759bfbec5a12efc384
BLAKE2b-256 6de28e402e27912ef5c1939a99d2b8420f929afa82c7b4413130f82ac0aa8e54

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.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.44.0rc1-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 1e2977a82dbfc9875dbcd3a9a710ed317020aedb0e6886d8b5d85bc1b61a2388
MD5 a23d6cc357c878ad731c3f01837f10b7
BLAKE2b-256 ad65863f80ca44f4d1b03d4fb29b11f48eede5168b8d2f7e2027713da1873dc9

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.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.44.0rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 6f55c2711a449c001d84deb9c96379a987e5588ad1c5392533846cc2a89233d6
MD5 3cc20c1920f192a30bad772bd929f5b0
BLAKE2b-256 7d2fc49cf3777d14062904c738de8b6c4fdcc971458ca5fb69dfdb73129b35aa

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.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.44.0rc1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 9d166f7c9281a5bde3f5b11f0d3e41e16459014b3de2462a09e1a58ff1dca8c1
MD5 75d0078e3b14f5b1fbc93b2c4da0c99e
BLAKE2b-256 a30cb49453f6395c1c9a9c8509efeb1f83023cfe980778cf17abfe8533764a5c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.44.0rc1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a3c08bde4aab331ca18c21aabcd2cf88c5cca575f117f3337ae981d74f4fc595
MD5 f75fe84e32484fdd53f52f9cc324ab38
BLAKE2b-256 08c56519b5d34f5d0d2bbbcfab1cd8106831dcb7ca6d0d354834796af815be21

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.44.0rc1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9d8031ce94b314e9db4a47e5f812fa94ec54a27e07b538e4031900764db73b57
MD5 425890822399955978d02b8db7eca0b2
BLAKE2b-256 38c8251bc8b559071e1a66bdcb1c04c7073cdcf4f136b578873c8404cff60836

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.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.44.0rc1-cp37-cp37m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 dc4e5c13a45652d8786a8bee8ba67fb6b02125eb4926b985eda30a8c176a4830
MD5 1c12102be93770f5c1cb6739cb4a15fc
BLAKE2b-256 519a281139c0520db74d854b5cb578a950c31c6fff08ebd562f25385eb74c7f1

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.44.0rc1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9c85bb66b54f83d900eeb352cca28e391a5da60826321538ade3648f7596c64f
MD5 c655e4bb65412a2f6bdaadfc1c9235cd
BLAKE2b-256 11eaf40ccb7e59fa6aee061e21dc83d275c66c0f58a93e0a03423f9d4a2dd52f

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.44.0rc1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 20c4132e885e0cfec3f77266e74c3dec37e714bdf5bcbf2048fd4fd38abef3ca
MD5 587976198d64fe20b2e9253518e72bcd
BLAKE2b-256 c3891822095fbfd968271a43cf227b89764224bf44999b04bd69472c6ce445c2

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.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.44.0rc1-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 27f8d9887fee7132dc3045a5a70b4bd7697819a4ef810efa81f24c8ceed3b468
MD5 eb3a36fae29aeefac3722024b5822436
BLAKE2b-256 e784d0a04e962be80e319e808a70f28910253eab9a90c24833f72a588e93e083

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.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.44.0rc1-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 aafde3a52704fb771874adfa6ae446adc62b16933bce3e4fdd484aa359388e3d
MD5 46b864fba534001bcc5dded3b64abcfa
BLAKE2b-256 e7f84edcebdafec7680c5eda0ec4f6af7f12eb560e7aa99b45f4bd76fb2a51d8

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.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.44.0rc1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 a2e7a518b5235cca9b76a8023fe3e8e415675dd4d0a10219aa18602c64a6374f
MD5 cd174fa48dbb1b5c6c979e8524c67794
BLAKE2b-256 4a170407759379afa116ab2ca4ae10e2554884cfd6f2ede5d01ab28fef67345d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.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.44.0rc1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 466f9f5784b772538eb0cd3d8648f495291e61184e287373bf2db59c095a5021
MD5 3f0435a08cb74376f26b6484f1cbff83
BLAKE2b-256 a02fafa9d6a50769c25bccbd21d9feb4bdf4d41aa73abb77ad21d21bce49c971

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.44.0rc1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 afa75a55a63e995c9dbc34de19ef6e90607777e030b1d85bc9b7dd822d8f3ffc
MD5 baf1e3e94ef2914972e5e9ab0d1e1cc3
BLAKE2b-256 11fd9abe796f0e13a65d39d5eb0cde7cb1842350cd9be0ab5bed3e9d1d855db3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.44.0rc1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3454adb365b16496b8d149ed90d1f11c1c0ffa90a564a33d88a30d3819ca179b
MD5 4b525ffd64b51e390b80fdeb03e0fcb2
BLAKE2b-256 ccd9ae159d6368d25bd58fe7dc19731b239d9ad300366c8b76693e38279c6f38

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.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.44.0rc1-cp36-cp36m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 7d4dc98340f6b999b4e6d75688740cbfb58fe81da89143b0b6e395a7c0690eef
MD5 c22acecf563da095e6e66dca7de09d03
BLAKE2b-256 77874f177caff8dd98b00fec03d44c2f5e340d8117cceadd6992bfd9eec23895

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.44.0rc1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5a9f9c8fdac81c32bcb7c481ebf3c2a2a1635e3a7247e33ec01d4611db12aa9d
MD5 de91bcc5a370503f6fd65520043cb89a
BLAKE2b-256 8559d80ce28b6fd6e3895aec19c281ca24b75c20117e71c2ac9e8c0eb8ffce82

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.44.0rc1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 72dc5c44621260d6e9d13b96f10ed09bc6b4e8bbdabf5ed83b2b05d0dfad2fd3
MD5 2cc59a9dd3056bd6e395c6be6a87ff75
BLAKE2b-256 64c9ce070d89ea70f8a4c5627982ceb83714fbd0625f7f84e17275b30073d6e1

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.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.44.0rc1-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 e0ede28c32ec61996148ff4934d7e6b6e84f91e331abe5aea44f2b82b3bc1b9f
MD5 f1d90842ec71bd1016491f95dd385b3e
BLAKE2b-256 2519535a6abbaa6fe4c2282a6c35ecb41107ca31131ca1a3915e56bf8de75c04

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.44.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.44.0rc1-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 041187ed487b4d11c94af20c392fc2d6c414bb455a4b7e80cc5bc9b18eb78b7b
MD5 c6ec40f095806b92b98c8db938744427
BLAKE2b-256 2a159c0d4cd2448465aca75df8eabdd6b80f40e8baf981523087131f53a46956

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