Skip to main content

Protobuf code generator for gRPC

Project description

Package for gRPC Python tools.

Supported Python Versions

Python >= 3.5

Deprecated Python Versions

Python == 2.7. Python 2.7 support will be removed on January 1, 2020.

Installation

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

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.38.0.tar.gz (2.1 MB view details)

Uploaded Source

Built Distributions

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

Uploaded CPython 3.9 Windows x86-64

grpcio_tools-1.38.0-cp39-cp39-win32.whl (1.5 MB view details)

Uploaded CPython 3.9 Windows x86

grpcio_tools-1.38.0-cp39-cp39-manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.9

grpcio_tools-1.38.0-cp39-cp39-manylinux2010_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

grpcio_tools-1.38.0-cp39-cp39-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

grpcio_tools-1.38.0-cp39-cp39-macosx_10_10_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9 macOS 10.10+ x86-64

grpcio_tools-1.38.0-cp39-cp39-linux_armv7l.whl (24.6 MB view details)

Uploaded CPython 3.9

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

Uploaded CPython 3.8 Windows x86-64

grpcio_tools-1.38.0-cp38-cp38-win32.whl (1.5 MB view details)

Uploaded CPython 3.8 Windows x86

grpcio_tools-1.38.0-cp38-cp38-manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.8

grpcio_tools-1.38.0-cp38-cp38-manylinux2010_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

grpcio_tools-1.38.0-cp38-cp38-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

grpcio_tools-1.38.0-cp38-cp38-macosx_10_10_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.8 macOS 10.10+ x86-64

grpcio_tools-1.38.0-cp38-cp38-linux_armv7l.whl (24.6 MB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.7m Windows x86-64

grpcio_tools-1.38.0-cp37-cp37m-win32.whl (1.5 MB view details)

Uploaded CPython 3.7m Windows x86

grpcio_tools-1.38.0-cp37-cp37m-manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.7m

grpcio_tools-1.38.0-cp37-cp37m-manylinux2010_x86_64.whl (2.5 MB view details)

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

grpcio_tools-1.38.0-cp37-cp37m-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

grpcio_tools-1.38.0-cp37-cp37m-macosx_10_10_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.7m macOS 10.10+ x86-64

grpcio_tools-1.38.0-cp37-cp37m-linux_armv7l.whl (24.6 MB view details)

Uploaded CPython 3.7m

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

Uploaded CPython 3.6m Windows x86-64

grpcio_tools-1.38.0-cp36-cp36m-win32.whl (1.5 MB view details)

Uploaded CPython 3.6m Windows x86

grpcio_tools-1.38.0-cp36-cp36m-manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.6m

grpcio_tools-1.38.0-cp36-cp36m-manylinux2010_x86_64.whl (2.5 MB view details)

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

grpcio_tools-1.38.0-cp36-cp36m-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

grpcio_tools-1.38.0-cp36-cp36m-macosx_10_10_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.6m macOS 10.10+ x86-64

grpcio_tools-1.38.0-cp36-cp36m-linux_armv7l.whl (24.6 MB view details)

Uploaded CPython 3.6m

grpcio_tools-1.38.0-cp35-cp35m-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.5m Windows x86-64

grpcio_tools-1.38.0-cp35-cp35m-win32.whl (1.4 MB view details)

Uploaded CPython 3.5m Windows x86

grpcio_tools-1.38.0-cp35-cp35m-manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.5m

grpcio_tools-1.38.0-cp35-cp35m-manylinux2010_x86_64.whl (2.5 MB view details)

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

grpcio_tools-1.38.0-cp35-cp35m-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

grpcio_tools-1.38.0-cp35-cp35m-macosx_10_10_intel.whl (4.0 MB view details)

Uploaded CPython 3.5m macOS 10.10+ intel

grpcio_tools-1.38.0-cp27-cp27mu-manylinux2010_x86_64.whl (2.5 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ x86-64

grpcio_tools-1.38.0-cp27-cp27mu-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

grpcio_tools-1.38.0-cp27-cp27m-win_amd64.whl (2.0 MB view details)

Uploaded CPython 2.7m Windows x86-64

grpcio_tools-1.38.0-cp27-cp27m-win32.whl (2.1 MB view details)

Uploaded CPython 2.7m Windows x86

grpcio_tools-1.38.0-cp27-cp27m-manylinux2010_x86_64.whl (2.5 MB view details)

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

grpcio_tools-1.38.0-cp27-cp27m-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

grpcio_tools-1.38.0-cp27-cp27m-macosx_10_10_x86_64.whl (2.0 MB view details)

Uploaded CPython 2.7m macOS 10.10+ x86-64

File details

Details for the file grpcio-tools-1.38.0.tar.gz.

File metadata

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

File hashes

Hashes for grpcio-tools-1.38.0.tar.gz
Algorithm Hash digest
SHA256 c609678cf6faf4b467259757f848de4fbc7baca3c1e3f7b0e55c701c50fd94ae
MD5 1d0546ce6ecd12fd59815885630c2f6c
BLAKE2b-256 003a7a53f54006933efd80dd908cd5b63d6c8b5006d60d1a6563dd90eb866de6

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: grpcio_tools-1.38.0-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/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 405a70b315970523c35bb487b1533a22ff4a126c649f074b4df49cb1e304561d
MD5 f97ff958b34a8743012bebcd1e94c32e
BLAKE2b-256 4fc6f403f6c2cd9b1951a65b54ca6b9a34292a217a5b36b2ff8fce1dcd5683e3

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp39-cp39-win32.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.38.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 1be89cc16be3984b43e40ea456e9e5428561987e99da2d79c1fc2629e87b6438
MD5 e8b3d33fa56713d9e878cf7aded6892f
BLAKE2b-256 3ad2e2b922b5b2a8b0cbe59ad3f2f4f27e63537d87d42971664c637c081476ed

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp39-cp39-manylinux2014_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.38.0-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.0-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a159a359588bb8130871b4bb8d7b89457babc82fc196a0e794c0d630358da7a
MD5 79461db795bdbef020c224388f0d8751
BLAKE2b-256 b0ba6eef860a5e1bbbe9fdb1aeb4228833de4639c96d1dc528eeed82ff995ef7

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp39-cp39-manylinux2014_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.38.0-cp39-cp39-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.0-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d8b25bfcde255bb391488cf463bb2dd64fa5d01f4650463640f780817a5e43b5
MD5 1ee7687e2711ae80079ffb2b43076aff
BLAKE2b-256 bfbecacc3d3663b401086c598d53cc3e08645c3e9652f418902e73c8289c643d

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

  • Download URL: grpcio_tools-1.38.0-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 25.5 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.0-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7ae7be0f0b5d698859a606118dcd3b74ced56a45f906c99549b31882ecfd2bcd
MD5 feefafae764311b3fa2547ae36aea042
BLAKE2b-256 eed7c5874011fbe6ada90d16b688b8a7d33f30390484d712d22192d9e5cc4f4e

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.38.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b76e8ec283b1ca162f23a9c8cf4a4797bd9904c79523bb28e336b4b112855386
MD5 59dbc2da81970d469de4776b437ddf81
BLAKE2b-256 77a7924f1176e7f26d712efc6e93c2d1fdd2e06e6971ace4540d6ac13889b961

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp39-cp39-manylinux2010_i686.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.38.0-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 556ffa61c4f705e5fd230b629f5bdd3c4d6ae654299baea037d68b341e8d6525
MD5 4244b4b800a6530ba47c15de7951b62e
BLAKE2b-256 fb0c810736df8902730813b21f27b4eb778fcb05a4c423b782c938d8ca6aa83a

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp39-cp39-macosx_10_10_x86_64.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.38.0-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 fa1098f49ccab3f06ee9533a9caa82ba02fe90d8461b6c35b983173ad3dcd6fa
MD5 a71a77bc53a02437dc7addf851407e6d
BLAKE2b-256 da2c6e5d4c74162b84292c9d136b4c9eecbe454c0879f55f4d928c33f0e8c86e

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp39-cp39-linux_armv7l.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.38.0-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 cacdd2b7f41026c89321373a4b235243d1613b92a750fdc1ba7f48edfe809b76
MD5 fea03e51c4b931d7b10b370a66fcb37c
BLAKE2b-256 4997d4062f81b0892182fa1e7f6fc632d9767337765a681bcca1fe08556e9e47

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: grpcio_tools-1.38.0-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/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9bc75135df871347899cf9f03d6a2dd8bcd69350fd75f02911c88a070ccd8465
MD5 0401403bb9c6ac061a67169272b5ca3a
BLAKE2b-256 05bea0a6827c63e33ce263178ff481ccb807d395188e7810531607de4fcf410e

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp38-cp38-win32.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.38.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a9a7afbdedee4735dfc1848f24a8c8c421d70f8f84529bbf30f2ffabf4ecf212
MD5 5f127595b68d5d157626a02f3db6ca98
BLAKE2b-256 f763f5711c109913ab95d622110674203f738b4e77484891f1e72b7c8477ccf7

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.38.0-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.0-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 041ee3c4c4ec048029db07981c8255bcf26ab3b8436e372e8f7c8b1258d8b44a
MD5 54e272e6e67e380579011620b4d2c5f0
BLAKE2b-256 7736f0e7911537267cf14d6000147bcfe5f2f37c740d5cef338e1e4af957fd7c

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp38-cp38-manylinux2014_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.38.0-cp38-cp38-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.0-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cf35e7d64a2e2faba0c041f2b4f715c138952b9f2fb5bb1a60a46d558f4113d4
MD5 1c542847eb125261e6c21a117a62673d
BLAKE2b-256 15334c372774934fb9e2a034623ee3bbb7f1feec60c7cb4d0ddfc1474610417b

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

  • Download URL: grpcio_tools-1.38.0-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 25.5 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.0-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0c5b459cf65be3a11a2222a5a200962fb50475585d31921bd1679c579590e188
MD5 1f5563713a21100ee1cd17e218d79116
BLAKE2b-256 e2e6105de57e4d2baea1b87277b32f5fc1c73e26cbdee79ad3b54bb657966ac8

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.38.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e27b5b69b5756c6966606b30f6f5380a91050fe43048ceb3934c136ffe622e5e
MD5 d2d16a326377f1e67f5063edb4df2f4b
BLAKE2b-256 474315a09cc3754dd6411b091fd161c0eb873641cb43b9fd66a6c9bbb0f8583d

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp38-cp38-manylinux2010_i686.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.38.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 08b824a18d79dca6613ed53c7792ffd87899ea26639b5ce7eb83fc9295a6c7dd
MD5 39a91f7832d6430e0ae0c9a581306105
BLAKE2b-256 da3082c1cceb649cc93305da33af3860a6f537f4393c2b3cef68489bf5f01054

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp38-cp38-macosx_10_10_x86_64.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.38.0-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 4bbfb71f37c72d0b1abac210ba5dc5780a34c065e67f2f7a2f1dc84e800b0ca3
MD5 ef7c51b1234b21c4a17ba970df4bf796
BLAKE2b-256 0a03a4a80040f64c68a1fb0c7c24b024558b656f112ad4118003ff0244eb4005

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp38-cp38-linux_armv7l.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.38.0-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 0eb8408aad583dce6e2d35b078b03d0720227c3d35322f4326936c820d4c0587
MD5 c0cd6e64ab17febce1fa84353828c1bc
BLAKE2b-256 112ff99ce9fd36c962e6e7546ca1859625ed2eb29c826e556adaf49206d608ad

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: grpcio_tools-1.38.0-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/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 adb0d92ba1031e23feade7189d741d824cbc64dea256ae2d3498e88d4c64b632
MD5 b094301586412c1cdecfcaa8d0a9dfdf
BLAKE2b-256 0710450191978d638962c27d5dc2e384243e7a51fb1fcbb7e1a49273d96d3a2a

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp37-cp37m-win32.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.38.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ba11763a9436093f6855b39cfc2a6b2bc33e4176fe32015bcb3855bb48f2524a
MD5 3660e548380a458943d17e7768670688
BLAKE2b-256 c3057894f92210a841cb5b2bb48ab89dae988a8475c457a33099dc415f92fb61

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp37-cp37m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.38.0-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.0-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 18d7d198a6a43ce2907724c224ed66a1e6660975d4ce8eb5cb0d155cdc5eb78e
MD5 2a32f9e5caa67c8e419479690fed406a
BLAKE2b-256 0896e93a33ea88cfaeaa5290618796dd469a81935536af41e83314c79f441c2f

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp37-cp37m-manylinux2014_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.38.0-cp37-cp37m-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.0-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 17e0c6543b573d66f2b35b7b4b80f201edce6ea8defc2bcdcc8a061609b51456
MD5 c23580aa645d5402acb3ede005184c5d
BLAKE2b-256 1f9767ca587c5498c1ecf98111a2485485fde402bfa0b6fd0de81d747e0d07eb

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: grpcio_tools-1.38.0-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 25.5 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.0-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e375a117fb5272e09faf138f08540d6d51e8d90e6983008dadd70affd195b30c
MD5 5c60d9c354dd98ba6c6787e07348be3c
BLAKE2b-256 35b6558ef0bfa695f41a04ceff97fda04008e87e6389b0788182a1870c029831

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.38.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 54ed34d2a45a62b9709615cea4df306128d7f42d95394b9728cc4bb3487a23bd
MD5 96760633ae0f27dda1f522f03f145875
BLAKE2b-256 c4a87021d90a62294a140af6f15a755a18f5b803492b8e0d76fda387dbd47635

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp37-cp37m-manylinux2010_i686.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.38.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 92b85f78efb90d2f78e6e0aa1a380c159eac9b0b88c425b436d7ac744cf6a30d
MD5 58e6a8515339e70a516b93df04ffc5f8
BLAKE2b-256 a8a53713dc338d729330cab71166524fabec40fa7057977fd535b41b7d49697a

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp37-cp37m-macosx_10_10_x86_64.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.38.0-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 0efe2ded3ce6301aff1cfb1103f75206f2dffd518f63879fe24a9833cd35ce38
MD5 20984e324add2421cd56c51727c37810
BLAKE2b-256 3a38054a222693810a2b6a33b05a31da92f529c719ccc2bc6d77b78c1b9b6d94

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp37-cp37m-linux_armv7l.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.38.0-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 410495b05ebc822895078f7aad593009f0f65dec5133eadb18cf3d8d2c226ade
MD5 89d0eb806ae87ce1214c214a85cafb80
BLAKE2b-256 35a36a6ba368950f1550032cba738988fad21e92220c3cacde2c4a906cc217d0

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: grpcio_tools-1.38.0-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/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 76f3301f45d7913480a166d472969f8328f37f12f59eb9c9c993905199d4e6a2
MD5 4e18af05861050a7239839e6aaf268bb
BLAKE2b-256 afb58efbf47b329b768961f42ad8bc74b391cda1e4b9031bd08d682d9073758c

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp36-cp36m-win32.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.38.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 dd0dafe045cdbff9bc32ae833853aa480ee0458c79bb7f10d2d6302b33914cd8
MD5 33b4c54a45dfb52baa9cccee5e79e571
BLAKE2b-256 18bda2cf8ae56684ab37672573e2093317953e94c8b02697703d857b85e97351

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp36-cp36m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.38.0-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.0-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2cad9aef5edf0b40e16403627ea9ce186facfc4e26936ee467593116d7db15a2
MD5 cd3ab71872b7d059b37fd8d6403064a8
BLAKE2b-256 c32a12d0bb155be40f5700c5b7df70295162f8ebdc10142a33b3cffd04b1e826

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp36-cp36m-manylinux2014_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.38.0-cp36-cp36m-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.0-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ddcc0371875cb6c2728b4faff1a0b32b2294c004828d813a9cc69cb2b69c517e
MD5 1412ddb55639d7ffd69a5b41567e4fd9
BLAKE2b-256 09da094944bfb8cd818615de458a3794fadf79a3310cc59b53e8c033277c8613

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp36-cp36m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: grpcio_tools-1.38.0-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 25.5 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.0-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cabf621285501d64b5b8e202f290a6bd260081bbcce0457ddd60351ad11c3408
MD5 b5228c8eaea05c57ca8b3759686f44d6
BLAKE2b-256 beb58b35df1b6dc9cfe468ab7a2c65755b467400ac8823beb728522609cb7ade

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.38.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7a1e2e52a3b6e1c8e1762fc7e270d8d9a08b15201661fde94ba7ad66ca5d6c98
MD5 5a26cfb44f0d233863a59331baea96c1
BLAKE2b-256 c967b96f65d30a5e05b6324463d0a4cc567cf1aed9bb6262d4a6f951020341d2

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp36-cp36m-manylinux2010_i686.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.38.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d6146277dbd6b8da6ce8518496d064f1de5d92210fbb0efae0bcf32fa193d987
MD5 5edc798951562d8cb4a1ce20586090e7
BLAKE2b-256 b629dbef3cc82fb01ed5588b3e62fdbcb16637dcacb572d84243cca70079b05d

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp36-cp36m-macosx_10_10_x86_64.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.38.0-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 61fd0659fe3a67154906364e8e78837bbda23c3a9d18c11f9bb1e17c0efdf6df
MD5 b148475577cf015ebda0f3d77172a6b4
BLAKE2b-256 84ba2a9f3fa4891ae70ffde3eccb7229ebf4921d5145558a2e7cc0f9dfcaf511

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp36-cp36m-linux_armv7l.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.38.0-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 c1d04e2900a5c14051e29479ff161b0b7decaea7e6f4a3e217cbf41edf698856
MD5 fab90a328c8f978c8adde5d07d47b2bc
BLAKE2b-256 e69c45377a002f0e9f2677f16cc31fb3761cf1d0f89b43b41a0bd11de6c06189

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: grpcio_tools-1.38.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 c0dbfa1a9b09743255298c4aaf8872076aafc3c8accc6f1d61a2eb126970cbc7
MD5 fc551f7a664361ea68657239e04fe1a7
BLAKE2b-256 1abb330d072a883845cfb63e6d71938ee8b8366fcef5f3f70e23fe0de430a80e

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp35-cp35m-win32.whl.

File metadata

  • Download URL: grpcio_tools-1.38.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 b9e4df167e4e9ede2b14c4e9aa0c7f540b96ad80e875cdffa322938515baaf40
MD5 cf609ea1d42854a0e7640ead697db863
BLAKE2b-256 a6a0293b2efe1d0523ad223eba2e33ca9e65452e6ba8403c5bf338c7064da031

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp35-cp35m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.38.0-cp35-cp35m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.0-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 58058dddb7d362249bbc3ac6d5c62837b050471c5b524e2b39a839607f4e1f21
MD5 5f2809ad336c6f044660bf2870f10521
BLAKE2b-256 4eaaaef553e29a8fb28905f10bf3be4f421bcbf63e019f9ac870069bd55231d0

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp35-cp35m-manylinux2014_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.38.0-cp35-cp35m-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.0-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ec7917310360b8ddecb737d62af4810c44d9b674c3e38ef507670ef933ebd4b4
MD5 2518008ff301a68c56d8a85ed902806b
BLAKE2b-256 235dcb2f2452e85aa07796b4c1f41e5372ce61fb5d670a0d4adec6053f0b7678

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.38.0-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8d4a1f889b36148295bb1a86e5423ad69d942230561752fc3ecfcc5c1ad29f86
MD5 21d0245c42a06283214b7fd87c69d0af
BLAKE2b-256 6ad42cf9268d930d2d079f4e21118259d0d7d89ad96c8ad8dc02f8d28703c14c

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.38.0-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 56754f7b1a570ef0f49181ce5d0403817dd7d375bbd208f2743a25e9eef361fd
MD5 5b2ee964ccc447288655b7a93b62715c
BLAKE2b-256 09ff95a5d0e1f00034188430e6919c71ab553a8c2b131552f1c29ea3a7f3715c

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp35-cp35m-macosx_10_10_intel.whl.

File metadata

  • Download URL: grpcio_tools-1.38.0-cp35-cp35m-macosx_10_10_intel.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.5m, macOS 10.10+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.0-cp35-cp35m-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 57798ceae33bcc215aacc2174dfc548904ac7727cb2193d7547aeb1d1149d35c
MD5 93973d3b5b251c7f1256dc5a0e6be7de
BLAKE2b-256 00a77ae2611558a39dd2fe655eaf4e45a1f89555d255b77863f14d520a9fbd09

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.38.0-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 adaa7dcdcfa168a24237c55444979e8bc2cab5aa20c8c64495ac0d029879feab
MD5 8bee3f4f149a76649730ef20c8d58e00
BLAKE2b-256 f36886db326768ad160606ccb7e171546d75e692ba2a67a4109742fc6dc21192

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp27-cp27mu-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.38.0-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c7941214cdb6b2863d4fab467aa48fdffc7d2d0ae2bd9036cdd134572cf1abfa
MD5 a9aa366f4f3bd94d92ccf58809108a5b
BLAKE2b-256 c5714cee9408ce357e59f9dd50eb90ebec2e9dabdb475e8269eec4398aab9b1a

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: grpcio_tools-1.38.0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 08f0a888e9d5a2f0a1fa35b052d240a391e832a07be025dced713f92070407bf
MD5 d822ec09f37a67229dd0ddb7d3364b2f
BLAKE2b-256 21afbe1681d5238281c589a62aedf29ab1582566b35e68eeff8fec9dab592a4c

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp27-cp27m-win32.whl.

File metadata

  • Download URL: grpcio_tools-1.38.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 e59cd98e3d33a3a9561a032d885ba7871bf7403afdd05dede360f74c58db19ca
MD5 4e324d0e62fe53b4e93ff1884a27113a
BLAKE2b-256 f06c0fb857be2ebb660be2a23a6fcbd2c81672e7d35cff9686d8f81f846e5208

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.38.0-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b4fb8779fca9b80f91ca2cb6060837992edf87d7dd459d570adf8ddc0ca56352
MD5 b8e4abc3e67c94998fc1a8e3119a200b
BLAKE2b-256 c13aa372fec94a3d6e49fe5b0d05d5502b39624f63f7635b5b4bc735c934fae5

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp27-cp27m-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.38.0-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ba596f23d4659d984be3a8c8b739a49bf79a7d3007b62f724b36272a6d60d292
MD5 d5cd1610ff780782a0265cac33b1672d
BLAKE2b-256 ad245553ea0445099df4827151f29fd66964ed41fd231c253a6b1147e92afd58

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.0-cp27-cp27m-macosx_10_10_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.38.0-cp27-cp27m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 2.7m, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.0-cp27-cp27m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 9cb182b23a2e0a20d3f23cc6f84a692b773e4e24976c78a7d53b537d5f43f34a
MD5 0acf205cd626077688c900d12e1a896b
BLAKE2b-256 12e237e4dad9f350aa51e12f59f50028b8d40512deeab9143718d5dab17e4f4f

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