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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

grpcio_tools-1.38.0rc1-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.0rc1-cp39-cp39-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

grpcio_tools-1.38.0rc1-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.0rc1-cp39-cp39-linux_armv7l.whl (24.6 MB view details)

Uploaded CPython 3.9

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

grpcio_tools-1.38.0rc1-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.0rc1-cp38-cp38-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

grpcio_tools-1.38.0rc1-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.0rc1-cp38-cp38-linux_armv7l.whl (24.6 MB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

grpcio_tools-1.38.0rc1-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.0rc1-cp37-cp37m-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

grpcio_tools-1.38.0rc1-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.0rc1-cp37-cp37m-linux_armv7l.whl (24.6 MB view details)

Uploaded CPython 3.7m

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

grpcio_tools-1.38.0rc1-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.0rc1-cp36-cp36m-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

grpcio_tools-1.38.0rc1-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.0rc1-cp36-cp36m-linux_armv7l.whl (24.6 MB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

grpcio_tools-1.38.0rc1-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.0rc1-cp35-cp35m-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m macOS 10.10+ intel

grpcio_tools-1.38.0rc1-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.0rc1-cp27-cp27mu-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

grpcio_tools-1.38.0rc1-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.0rc1-cp27-cp27m-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

grpcio_tools-1.38.0rc1-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.0rc1.tar.gz.

File metadata

  • Download URL: grpcio-tools-1.38.0rc1.tar.gz
  • Upload date:
  • Size: 2.1 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.2

File hashes

Hashes for grpcio-tools-1.38.0rc1.tar.gz
Algorithm Hash digest
SHA256 a416ed3df6fe4be11bb425a7ccd787067eac0b66878efe0fcab8ffa660e839f6
MD5 e514fece5170ab231b889e8bce803283
BLAKE2b-256 a13b3659986575d79dee66088fced3cae5514cd3f79e638544e4aed02de94fc6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.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.2

File hashes

Hashes for grpcio_tools-1.38.0rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5aef3e6a99695771302abd5de8c1b5ec8414330011d0405f945df65a2db1b0e5
MD5 a6bd3ee591a295296449ed8101c333de
BLAKE2b-256 1010c99d52a49748602ada9be4cf12f02706f5adeee601be97bbd902b1f717f9

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.0rc1-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/3.10.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.0rc1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5e4407c09c1a6c619518e8bbe20e321c7e0926e0e6f78dce659ca3403374b2c9
MD5 c2e741c69a59ef11dc72b8eed01bd23e
BLAKE2b-256 c99fbe646bc1300c149e5e517ef460315c8ff3c7de51b3cf41a3265e9485387b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.0rc1-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/3.10.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.0rc1-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1acb7b7f49e5bb72edac63c850a4e74238cfc7442bc6827afb7a95d9a50cb220
MD5 01efc04a2ffdea4626314b4ed4b23440
BLAKE2b-256 6592175c49f440760efd06819436165395f0f9e0053336d05fe958a74c447406

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.0rc1-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/3.10.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.0rc1-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 22c2c7e1b42a37247035a31f08e98571ca08d673a7ff6bf198e99b84cd30cb54
MD5 9e285f87b4867ce480bf9f75729137a9
BLAKE2b-256 063adb876ce59c294de32aa6a0af0cda43c3815c38ddf89905d3db021bc6bae0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.0rc1-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/3.10.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.0rc1-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3a627fba991d94ba8ec2e27480b9a91dbc64a25b57efc5bd304d8d3fea994247
MD5 d8c05ca12c8b6d29452e5ea24ad722a5
BLAKE2b-256 54acc68072fe6bd699648b1d5d75a36210f9c6637401bf6dd42edb274d1e4bd3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.0rc1-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/3.10.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.0rc1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c9e46cb65f690fc9b9ce960c1bb27a08648ea1c063fda091a4852de1426c0878
MD5 9d70483ce1aa47759d86a8bb8bdc6e9a
BLAKE2b-256 83fe16265175552d054656716f47509ff5ab8a6a8447b0d9c97891cf84b458ff

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.0rc1-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/3.10.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.0rc1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c918f5021810cb415f7c9b3d39dc96b5df24879f3184282babe023d60ec6f99d
MD5 5d03adac8b86e48a7e36892a603fc5b4
BLAKE2b-256 ae6e68ea205af374330f8799c5a3ebbdf0e7261e4f2ad7ddbc2829d6436b53ca

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.0rc1-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/3.10.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.0rc1-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 3db0b463293c41e2b3b5f014bf1f431dbb1ba63f16ccd1d0bfcf57b720bc6728
MD5 f24f230e8d9b0dd2487f9788901bdbd9
BLAKE2b-256 360dd38e0e6fe6119b12fff35b982b66f040517e3bd53d23cf0e432f143cbdb8

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.0rc1-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/3.10.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.0rc1-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 f6fb42349267922c37653c858cb72a46f650f93020edbcb4f23370f4b759d3d7
MD5 635c28a0e5a8dc13b84b731727dc82d7
BLAKE2b-256 cbe89dda080b8a170fb34293bb3d27b0075da9d9637b355e2b6d4f9e523c0261

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.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.2

File hashes

Hashes for grpcio_tools-1.38.0rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 aa93868d46e824e3da11e1516cdd963b4b15f19c456a4b9903eb26e9b720e446
MD5 9f63aa7ee447ce7c4fbcc63145be9cdc
BLAKE2b-256 572201049b352fa97b94f7542009cbb9d62e7220df886237e41e57003de8b325

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.0rc1-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/3.10.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.0rc1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 224c07f3be9df8a184ec1fdc81eb73da1d6199311ae36bd9e3dfc3f2844d4b96
MD5 ac01745a34762a34fc5558380befb662
BLAKE2b-256 6e79301bf1afc29345927351bbe495587f3d069eb58880b6c1984fbc70e27e07

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.0rc1-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/3.10.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.0rc1-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9dd3a2165331382a61003431a66079aa51146d69721576fe1775465c5fd5dd1d
MD5 847f3ef62eca2f2d0eb7dccc8ec7fc35
BLAKE2b-256 bb39cdc10c7d4a93460856e4d4291a3d6b16a02857c8202282e98806e007a45f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.0rc1-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/3.10.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.0rc1-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 77c23791d08a3975c0b403d1ffe8fe3d3d9637b70c2f91eb67f60859b83c97b9
MD5 bfe9b6740a0d851c8512a545b63746f2
BLAKE2b-256 c21d6f43746aed60c4c1b040c7c7183eb49bd88730c37fdb0af176242cb79cf3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.0rc1-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/3.10.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.0rc1-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e42b9107a2b55b945c055f45af8769594e4569eaf19cad023229694ce4d72dad
MD5 7cfa1176775018723467235241ed0e28
BLAKE2b-256 b079dc741bfece80e6f5c131aac99f7a02769013614b1dc6bb404d002128164f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.0rc1-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/3.10.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.0rc1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 db9eae20e31a90a22cf407b0c1884e22079f4e17d3f725f273b5b71400dab01e
MD5 ec3085fb57f7515a5f62a4fa6dc3ba21
BLAKE2b-256 8e60f6783f0b8174dc6d1c8d93609b886ccafb3c1c5350ca02a760fc46e23e3a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.0rc1-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/3.10.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.0rc1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 456810ec59caba386b7e2dcf8e39ee711a56b3036eb1bfe7eb2a2218c79c0458
MD5 c7712ca82bc263f56126b2dc4a13c3a9
BLAKE2b-256 0e9ba54c74caab310bef2a4534ba53785e016114edae1e26c57edd1e86d5b3e3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.0rc1-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/3.10.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.0rc1-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 a67737eef1ccb39045bd5d8cf0e0f692226c1918ae6324e5363ab8e4e8af5d31
MD5 eceba78ec15f502ae2495ed63af7cd6b
BLAKE2b-256 c17f43e8180a35bd761ff38a1353f0cbc47185d47fbdd4d86cf6682263dee1e7

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.0rc1-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/3.10.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.0rc1-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 e0326604a3f2b1960311df2cb6a85934b82d801c02918c2d442c0c3201c4c915
MD5 5559a5857e21a868c1ce7b70f511864f
BLAKE2b-256 f0dc3136b8d7bd6cfbdb3ef50bb3158f9fb15376637d66b458cb4dc66ab6f3d8

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.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.2

File hashes

Hashes for grpcio_tools-1.38.0rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 b8ba5de5a47766932651003db24c9d5dfa5b948444070d19327c5153dfc957de
MD5 ff45e6a0b756601cdf26a986575e24b6
BLAKE2b-256 d0d62ac7da696b75a50c7e96ac96444e461978f5682058427c6d768d3c77b793

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.0rc1-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/3.10.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.0rc1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 d4c3da27226df87503c61fb5ec6b4b7c51715c6a216445cd22b21fef5ce618fe
MD5 0cfd966c80a23019b5fdc787768e071b
BLAKE2b-256 83a80c32c9933b9d488070f47ac9c6377bdd34f30b02857161368a7f318ae722

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.0rc1-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/3.10.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.0rc1-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 49380f513a4d4e0bf08d51108fd209d934609f55c1ac575af87e46f0d8e3c49a
MD5 3d91a7db67a2234cdb10f21d5af14fcd
BLAKE2b-256 1c2d8bdb05740844858343c2dfd28a33b2516f7c872b70db13ba6f0d352ee94e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.0rc1-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/3.10.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.0rc1-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0e58e25a1d6ce33861564f7a502beb817fe9224fd26d3e730c41c5d16bd240fc
MD5 82160104a47ba54f3a67b4263b5fe843
BLAKE2b-256 5b40c027601ce863433a20d0adc8d6b7339aafacf01f827f01720001d63ca18b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.38.0rc1-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b1eddec335efa9a94d75ab3a4dcdebcdabd98ad8a0c7df911e4b9d335d8b5c55
MD5 da06f8aadb92dc580b0efe0afde26b3a
BLAKE2b-256 3e7e1e9e09295090750d7281d81aba6d981c1a9471e0d24bc94843b8173d7a6c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.0rc1-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/3.10.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.0rc1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 bd6367bceb0f79d2caf863e8da0eabba0f5709ba63646a9f9466ec01bb09a7a0
MD5 ba8c4efea96fb08a61222ab712f8448e
BLAKE2b-256 c6c9866ae5f90e00a714c2815eb8393ee1baf58a5f7ba1104ac8fbec82eb6e76

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.0rc1-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/3.10.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.0rc1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 aafe15ef029d351b8c32334726d0e0025eca45893a5db97d6e823f21c2042eca
MD5 e6db00de8053e8aa1897bd03993f4461
BLAKE2b-256 b047ef9fbe4118b072f1623339e7c14015b620df356b487166c7e4756f3900ab

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.0rc1-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/3.10.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.0rc1-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 6b79db7f93383bec9b23a584724ccf19e4b8f8610521b0b2ed23a7a28e95754f
MD5 c2f996ad312f18b1af2581bc9629bea8
BLAKE2b-256 764fa1b4b928e7d3652caa3310dc26ada6d5f6d84cfd9b6c60c127195481aa1c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.0rc1-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/3.10.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.0rc1-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 17749ebcd334f0d63498af7fa9f8b7008ebb7bf2c6153471c7fd3c25cb7a3e94
MD5 8ed495e24e44a190380d05aa5cd2f41d
BLAKE2b-256 6f8ac125c615c27a5c05a20ff391872aea610be3a98fc6d85d23f64f2f8e82f6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.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.2

File hashes

Hashes for grpcio_tools-1.38.0rc1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 46e7700b2a2cbc7a1e58319982f2b1882dad121231b69660ac10ea37a953c8b6
MD5 8c8b14bf14904f2c5ad815a36497ab2b
BLAKE2b-256 6e513e8149d9a5558c06b4501f571f232ff2c5291c8d5f965289cdbaee8f76fd

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.0rc1-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/3.10.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.0rc1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 45a01f48149643fcf7837eb071d0059dffe3a5ca2c2173b9d6849086dc3f4130
MD5 10e57ea90e310c6deeefea3a5703347d
BLAKE2b-256 d37f78eac14e02218e4a999312f64150163a2e26d00f601ccc43318b57601afb

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.0rc1-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/3.10.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.0rc1-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 56b143ef47b17f023b81403c697563a2d16c6c1c05904480b6021e7d7d1a9651
MD5 65389a94c42b0337a4681d358d8ce8e4
BLAKE2b-256 6ac721ad5c405618ffd0ee49e48831962ec8f39defaa3fb4e04ffc783a4cc797

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.0rc1-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/3.10.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.0rc1-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3721e3185a75929e89ea9285e1deca744ebddbd64e7291a47a7f1282bdeefe79
MD5 47d2da990492003c3024d73233abfd86
BLAKE2b-256 4d812795eb5c2cbae7ab7c06e746a80333291fe6798f9656bb9f2f0e0e22c0a3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.38.0rc1-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fa6751eb2e07768d23a49a505904e6cb828ee60da5e9c26b09f788e8837486fc
MD5 e111402eb858531229d46c93a01a0bd0
BLAKE2b-256 7cd59183984c5899be30ebd405097464d6e5f54acc81eb73b69033e4b4f36556

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.0rc1-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/3.10.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.0rc1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8212ff75147e075056305306467cc7102ae0daf496ffed26f04cd1f7362d8754
MD5 c2ca0a0f684971d85603e657160335dc
BLAKE2b-256 cf77d4566cb7938bc10a198f1c924438410dfebd8c8fa10509c2aa36d5f4c00a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.0rc1-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/3.10.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.0rc1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d0541f60b5ea8e4908fe268dd9a741426ba5e269dee5f1d534f53cb525f6348b
MD5 76dcd08797be1fe241efd51cf607c3c5
BLAKE2b-256 f8039ded6c6f38a9f505962b5688e205257aafae5fd00a54d407fe39e446fd91

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.0rc1-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/3.10.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.0rc1-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 64002756cede08f45703d863a1c268b7eb9324a13835828a4e3f1ff373850912
MD5 5ac18b7efc2e06ce529f82b2a01b374c
BLAKE2b-256 a1b8bd4b92383202b9df3df40d211163d804c1ec6fd35a0b4e966795918a8b00

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.0rc1-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/3.10.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.0rc1-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 8587bd18a7e0cfe59d9dee5f6f6791494a20bec73482e0a360b3327662830ef1
MD5 b2b87cd139e3ba0344fd181ed401e476
BLAKE2b-256 174d09b32d895f6ef4c028f59e25699c73517d6d26850e59e465c75ce4de7543

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.0rc1-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/3.10.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.0rc1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 e36b6121ac9a73330623bcc21274a0f5887585d08ef7e1bdef07224c9efdb6fc
MD5 dd32fe8166e8faea44d3dec354ccf1f5
BLAKE2b-256 620ec857e23f62d567f2d7ef7735395b1242ed0eb30d0aa1ecd1f46572caabbe

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.0rc1-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/3.10.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.0rc1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 76890bf2a06f4a389fb7b07f5a081dc0e18269f313545b02c1888d965acb1abf
MD5 bbf04c73de89ec3ea8ed87c862fbee50
BLAKE2b-256 c7edd731e0dda96bbb7174ee2d4a2a8be227a0a760ba597018d714e74f9116c5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.0rc1-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/3.10.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.0rc1-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 da3f5549675df4067ed53738b8a45633e5a19d12f5937ae0009cecc3a551aaa2
MD5 8d7d01dc8f8e8c9200e9db38120f8f9a
BLAKE2b-256 13694b2cc1e22a2493a1714539767e4687ae581325f4f64dd8f37e27eb7eaeb2

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.0rc1-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/3.10.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.0rc1-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d558256712ba5bb3e7f47568a2cec1316ee5769e75975eb2fb55c17287eef450
MD5 6cc700fc2334d5ccdbc98543f959fa02
BLAKE2b-256 c52187f95519d512e8944142a5f986c923d1786ded4c6f2cb3da463145f61058

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.0rc1-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/3.10.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.0rc1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b0b8e5b2937d887bbfd8b113bb547a2ee98b488b2a987e32669b393e170a5ee0
MD5 aeb9f25e045e339d033ca8469109c6f4
BLAKE2b-256 32332b49ee59b3007dfb7776811287e61eb53a4f8e92c606b603230e7e9c3524

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.0rc1-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/3.10.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.0rc1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 250a50b62ef213b4f6003659c078d6a31819a4a94875cdb5c2971bf884798125
MD5 eced542bf46858603b09e23ae8c5829f
BLAKE2b-256 2a086ec28519143ea626dffad73b98eb2d582f643c8a2436d33d29d8473b4a77

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.0rc1-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/3.10.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.0rc1-cp35-cp35m-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 7c3688d94cd279a190e8db71aa74538dfb128edfbc82dc46b9ac26b0a43779ba
MD5 9572bfce37e664d816b3ad737c97d291
BLAKE2b-256 f2cfc56377e633ea7913227896db759edb830de3659ab252fcae73d5f1335c7f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.0rc1-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/3.10.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.0rc1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3d86d2f6bd503436ed23bdc619b636b5051ca13bddc9f6a7e49c51010d7791d9
MD5 adf25b0b7ad781290eb99d6be091994a
BLAKE2b-256 808dcf2c77f48c4f47bdea62d16c3eebeb05c8a62e19dd8f58992b570c93059d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.0rc1-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/3.10.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.0rc1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 67da71ba33b483b32de0716fda12f3358ea1af82ec9dcb6e7c6168834c10e64a
MD5 6fde866bde997bf9a87d5490b559a24a
BLAKE2b-256 1f20d92fd682bba8b81fad0d43716c57ba006fdeae2f5fe6fe27cd2ac447de84

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.0rc1-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/3.10.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.0rc1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 20742485234814c2ddc8a32e20a72a11845b2cb942de96eae562fbe8a74828e7
MD5 93f16e277fb277a41ee5d2f6c4d2d8f5
BLAKE2b-256 d6166629ee5fd3c3d8cd69a31f9f7547951f80b1ae935461d7f1e40727696474

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.0rc1-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/3.10.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.0rc1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 47e682fdde47c70e921ba72e234da95d61256167bef2082e834dfd5f75456a83
MD5 8e8e2182d4f1da9032c083f7b4c899f6
BLAKE2b-256 8e91a30b74a93dbb98b3c2dd39c88e942ab946abc5877e42fe946b0b69581b38

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.0rc1-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/3.10.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.0rc1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1cd8d53534ba828a4902fd6aefba231164a288c5da8edfad2a13d43004d481fc
MD5 cb4e7af5fc21bcb8613f7bb42b6004c0
BLAKE2b-256 9432c5951e5951e621977d5a98292393106235d4d6f86848da9f8df3946ab098

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.0rc1-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/3.10.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.0rc1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 41faa129954f8b0116c7701a825a1751c17cd937761bd443202979da257122a7
MD5 97fdb5b226445f791b12a263865f9ff1
BLAKE2b-256 14085017fc5db9fdf8ecb60536c2569a94f7c8534364ea7a10470871e83989d9

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.0rc1-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/3.10.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.0rc1-cp27-cp27m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 1e0391a36310ddb5432db3ba478e6b56342c3e358c4efa80c972fa2b64025dd3
MD5 5cc384d6e566c21f8b262a8425498390
BLAKE2b-256 df5e30c045151d5554b4c41575aa84a0a978323b1956aa001e4d319712764ee6

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