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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

grpcio_tools-1.40.0rc1-cp39-cp39-manylinux_2_24_aarch64.whl (24.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.24+ ARM64

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

grpcio_tools-1.40.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.40.0rc1-cp39-cp39-linux_armv7l.whl (23.4 MB view details)

Uploaded CPython 3.9

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

grpcio_tools-1.40.0rc1-cp38-cp38-manylinux_2_24_aarch64.whl (24.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.24+ ARM64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

grpcio_tools-1.40.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.40.0rc1-cp38-cp38-linux_armv7l.whl (23.4 MB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

grpcio_tools-1.40.0rc1-cp37-cp37m-manylinux_2_24_aarch64.whl (24.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.24+ ARM64

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

grpcio_tools-1.40.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.40.0rc1-cp37-cp37m-linux_armv7l.whl (23.4 MB view details)

Uploaded CPython 3.7m

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

grpcio_tools-1.40.0rc1-cp36-cp36m-manylinux_2_24_aarch64.whl (24.3 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.24+ ARM64

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

grpcio_tools-1.40.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.40.0rc1-cp36-cp36m-linux_armv7l.whl (23.4 MB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m macOS 10.10+ intel

File details

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

File metadata

  • Download URL: grpcio-tools-1.40.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.40.0rc1.tar.gz
Algorithm Hash digest
SHA256 221c859ed1854d05587b7aa99524fe8c20575d86b0fbc6d03fc56068b7addff3
MD5 25a075d628185de63ee4d0a82382b7a9
BLAKE2b-256 6ee7a20a53e3c76c797c51d050d074ac7865c038880321bda2c4f43f0e07c120

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.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.40.0rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7e7579df41ae82f17c885d3aa7819e06729213d3ee57336719cbca15f704b367
MD5 98a6eaa87c7e97d99e4d8cba52721c9d
BLAKE2b-256 95ad36a06c7983d10be4f8674e5385f9c0d7acab99450da0f6c9c720b8c9de98

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.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.40.0rc1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 836a69af4972219419b13cda098a44df5dc952f67015f0faf30aeee23b5a66c3
MD5 34e4d6f07ffa377c377fb0fdddbbe9c2
BLAKE2b-256 06534279a68d9b5f3e443c3c5a758cd692e145df2dcabda38dbcb780c985ab14

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.40.0rc1-cp39-cp39-manylinux_2_24_aarch64.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.40.0rc1-cp39-cp39-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 051ebe8a13c88024dd3e6a3f2dc1a4ec39d6260c010f1a606f7805ed4922d607
MD5 70028b9ab6f481cc2d4c5d3b56dbf361
BLAKE2b-256 6cc2934c0d389cff84b8684d0119de618b6152c1166f6869ee59362a2d795541

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.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.40.0rc1-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f7c5077b94308e0d5887a18a88335c750176141535a3f2eabadedabc5c82a8f0
MD5 64bdeeffd1bfd4d3d488dfae2f976742
BLAKE2b-256 b9c5e85be1dced1fd5d2d93c3366b317a9ff2e6f99bb8e65e6e13108315fbe27

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.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.40.0rc1-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b097bc57503f10ede1f224beae0a8daa74358f92a2199a172946cf1f48a1a94f
MD5 e3a5e0d5902a62d1637d5ab0bdaccf42
BLAKE2b-256 59aa8cfdd24b5d5aff16652cf870da2cdd45933a4224526384fe8d13b0fda991

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.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.40.0rc1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 80bf66773a25b1ad78c62832823cb62d4a925b9b4ce8608bfda4290b0b3a41bb
MD5 6ee38406027038e3fb8d06ddd0c9f627
BLAKE2b-256 c364faea7cf45f7b18a198b846dd0f5b40bda956d100ac756fb8f62ee67a7d7f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.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.40.0rc1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4cc486d92de20b7b9d9eb978750de1a5d94fb362cad09e95fbe791787ec1db41
MD5 0bd1ee5b0fc14c67da731480ba8db86f
BLAKE2b-256 eda6d7540c2b6595e5bb054177098be857c2a638f2c0c1959c50cee7799d6a03

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.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.40.0rc1-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 e0098baad03f34cee98ca976eb2c0726f89fd5f0cb356814adb59bc5e6f00837
MD5 16c81917d0b3d204d8ac422672d3c6a6
BLAKE2b-256 04356a06165e87b56cb0efa2a8b22053a1213e56ea48a39eded386570e673b42

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0rc1-cp39-cp39-linux_armv7l.whl
  • Upload date:
  • Size: 23.4 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.40.0rc1-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 ce5fc58548645aa7a7f9f96c6943232de9d495332fbec5d15811ab22ef62188e
MD5 1f5c72f0692be3937d6b31ccfc62e711
BLAKE2b-256 4dd49a879f26b19bab684a56a7ffc184b53c9fc4a668966716ba89b1da20400a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.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.40.0rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 18e4a168122174e102d06c1191a54ac102529c0ca13e9ae1ce6158318d20f8dc
MD5 5e8afd9257f5608cdabed8156d73290c
BLAKE2b-256 b3d06c41e1b3994947d1c5c34cab46bbc2cc52df3c802d59d9f549049bdb781f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.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.40.0rc1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 49d87ac7d32a766e0549b6ce76b06507d6fafb31e71f638c41e17fa244f695f6
MD5 04fdaf3fdb1fffe6014a9f1bb0bfab26
BLAKE2b-256 81c0ed7fba87c2121245557354bbdf19ac07c00c741d53f34fad6e4b73da4288

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.40.0rc1-cp38-cp38-manylinux_2_24_aarch64.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.40.0rc1-cp38-cp38-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 befbe17cad112888142b19f5027e2e3706274d8222e2e7273e26dc24c37d9b47
MD5 14826f149acd9d24c0b8157f3b80733e
BLAKE2b-256 07589a4e607b15fc55f8fb1629f6371fa9a53c278348d0241121e2883542e8db

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.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.40.0rc1-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef50fe27c8f03eb8d3dc54feee505aa85423be4d12525e6cab632cf0149bd89f
MD5 1a01cc53331d9235f2a9fffee3088fb7
BLAKE2b-256 ce16163d0d39f0ea3f044190f6a60dee3adfb8ccd41d24531cd5cbc2541bc50d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.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.40.0rc1-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 82192f7593c58eb8d2694f84ce12e7b0c481c424afa4f4388f03ddbcb37d16ca
MD5 e8bed6cb72c1588f7abf9c6cbe38b2f4
BLAKE2b-256 f51ab0fbff29da4ada43c024ec49d0ac4aef1064eea0caa53b77efc77615d0e9

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.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.40.0rc1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 93ba6c440b78208a2eb5280feca21a17f243bf0a0f49535766093752c0eb092f
MD5 61f96cda1cccae5c643fd048564728c8
BLAKE2b-256 63f81117701754086331cde21605e5a875283ba8cf4bb72d4421a46f84c5cfaa

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.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.40.0rc1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 376e90ba111204ce86158230505ab383f1e909a9af8c2523651a19a5f19988a4
MD5 3f7d9ae1494aaed625c327da455a05b5
BLAKE2b-256 b844228f0194412f36a61706c87a7cfbb91599496574ebc932e90add354cb9b0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.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.40.0rc1-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 d2c8b80ddec19fcea9ed3913a0618ef4be93e07732b3f0c7789b21062af571d7
MD5 e9ae34aaf0d6f3faedfd0025ca2b3b2a
BLAKE2b-256 eb37e98b9f112dbcc8b5bc68d46422b1927fd48caeba5694d84b775c87971fc9

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0rc1-cp38-cp38-linux_armv7l.whl
  • Upload date:
  • Size: 23.4 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.40.0rc1-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 105fa45b92ef1fdea7367685bb0b48350b737fb7b31388d38a3b4b43cf6acbd3
MD5 eba02bc07265c79fbc20347c45aec49f
BLAKE2b-256 889ceb422b11484845fe92d4741c285635c291ba19dcea4f089298f0afd824f0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.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.40.0rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 17527a3061de18a1c926f4f6b09212110ee75e77bc2abac9d633af4842ebb3c0
MD5 20dd8d76113a9a535033b300b1398273
BLAKE2b-256 caa4e8f6ac8aeec1f29891f3cb47414bea3eb636391a774c2c93a194f68dfcd7

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.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.40.0rc1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 e24e45d3275b56002bc7c9488a6490fedd1f95ed0ade81a3ec353cc1d3b34361
MD5 64dfb25af2e4fa439893e606e1578c68
BLAKE2b-256 cb2596a039acccb3f88cb05baa03fcbd7d9b87947de3610b34c86bba68cde804

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.40.0rc1-cp37-cp37m-manylinux_2_24_aarch64.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.40.0rc1-cp37-cp37m-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 1ab708fb6b60218fa0a619d530e09821b9523fe438c1e18abea7a64b87902ef0
MD5 574d50c31a2b78d9cbe5b1b6a10f1673
BLAKE2b-256 90791a5dbdde3dcf3d985a1e6fa7e01d7b80bc881c6ca020e5dfa1ea994df74f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.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.40.0rc1-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 30df9b649f0468571cfb2586145e8ebd237812247a52febba667e715f3eee945
MD5 ad3fcc04abe45577dde01e58354d015f
BLAKE2b-256 e0d778a2f0e482e7be16c1a3e397c5d212ac3bd06db9b360b543cdb292fe8ba4

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.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.40.0rc1-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 86ac07c4a7a5ee16e497bb44df8632460eb566580f67fff757eacc37d1225236
MD5 2b0166b33a3f9a3ba27b0a550eac4606
BLAKE2b-256 113facbfd9b8b61d9af04253235f88f3bc5508b879d8d5d6c199c2dd34429018

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.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.40.0rc1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c359c3adc523d09a4023c51f1847b053c7e3c50b0908bb78bc22a552e8cf399a
MD5 ae03c77be8d0aa4fbbb3b4ef2947e581
BLAKE2b-256 a2d4764130d8f9f7ec5a63c6f09a2dba51d13d5070309b8b2934d34f3d1c28b9

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.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.40.0rc1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3ad3e4cc51313f5021fd710e0aa1e3e8c539cf3af88b515178d018c2a16b78a4
MD5 dc1b0645c3e7cd60d3f7ef383823d2ab
BLAKE2b-256 917129f93bdb20e8ff4da6e9dfec30be16b1db1df6b071a805b044a0d927d026

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.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.40.0rc1-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 633b1ff3014fd6c1df8b562309bc52727bcd4213b7ffe250f8a276f59ef748e8
MD5 f66da6a5887d590a2f33aa119159d7b9
BLAKE2b-256 6ca55a9ead63456d6be09cabe3cfd62954189d550d98e6de5cc43eb1343ec0b8

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0rc1-cp37-cp37m-linux_armv7l.whl
  • Upload date:
  • Size: 23.4 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.40.0rc1-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 e941c2d58f7e37ed29dd67f02426e89836f9af029d7931482bbb2e6d039c9c10
MD5 0d5c36a189724cd009bea3f4ea0c3b96
BLAKE2b-256 0eda91d114ae52d215f5e59fee3eb4feaacd8bc3507de0f4166f30af048a92d7

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.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.40.0rc1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 714aba3dd16c1ac7d02e689e90934363c189efcc5dd131b91bfcd80c7a099028
MD5 a1c3cf1530e4232ed253e618997091eb
BLAKE2b-256 008b723d681fe0c3e41d8ff4c17861abd4ce48352ade28db4b3b2a1e323d3c69

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.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.40.0rc1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 7cca88536701158527fd7b9c7bea4b0d9401cdbc23bc916e8e78a803787697e2
MD5 a6b633f0c3fc45a536e8cd7a6804bf77
BLAKE2b-256 8e09b1448add21a9e7654546807c9296f596890abd4a747a6013b7ab38a673de

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.40.0rc1-cp36-cp36m-manylinux_2_24_aarch64.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.40.0rc1-cp36-cp36m-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 9db5abeadf02c38b6be3cbc99d0d8fd4aef90d69d1e6ec7c283f267673e78776
MD5 7a50435f02d90870bc43c480f09ed1bc
BLAKE2b-256 dd5b816e8340205c661f16b72cba24c5746464bdb68f37f04aec78813f58397f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.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.40.0rc1-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 225fd8b7ac3ced19d3de3a16cf292b87ddd23207ec5817366b862e9833d09fa4
MD5 c24843fb515a04cd43791480427b991e
BLAKE2b-256 890f72f082d83bb4e75073aa7fcf2f31203e00695994a58cf2539f77ca147f56

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.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.40.0rc1-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0024b110b85cb313b80c751c40aaeb93965d097f6d49176754d763b0273020e7
MD5 c284d723b1ada03a07bed9db4a6737d0
BLAKE2b-256 36d4369d70ae5178999a963a67fcafe8ae871017952c6d1482ae689bc7d3e6df

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.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.40.0rc1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9ffdf8449d163f27739058fb8eded64d94e45e725c0ca6811ff969f71a2e9e04
MD5 5f8b7cc2aa79e34fa46112172d8bb97c
BLAKE2b-256 728b0087fd73dac21cfdac3f4dfe9e9c0aa239c0710d659f1735725ea748120d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.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.40.0rc1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0e4ba254f5caf141b586bdd3cfc1d81872412af79be6a5c1fcef0e265c0bd310
MD5 643a9f17b4a57f12b4db0701d628dfe2
BLAKE2b-256 79394280504f5f5f87357377ec542164adf76393d61e285cbaf45c1888a54140

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.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.40.0rc1-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 c89baa395ad8acfd52be7feba2e7aa51be67959c83d0ce1b44deb6c953528d16
MD5 e0c64509e71a5677c363d11b110dff56
BLAKE2b-256 9b23f0fffb27a9d176d63d2d4904e1f9de3e864b4bf4f0eb236effa55d2df94d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0rc1-cp36-cp36m-linux_armv7l.whl
  • Upload date:
  • Size: 23.4 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.40.0rc1-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 b259fe5de1439948c6beda273089d8f9f9ccdc95ef104c072dfa2ffa4e03955e
MD5 8180cd24709a6318a09de733d9739cd0
BLAKE2b-256 96fcd3a7323df0e1b4b6b7819b1a6b2859ad4a62f21a8f3e3e0f18712a7e7a87

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.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.40.0rc1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 ae11ae14d3ca778e06939a58ef07d242cbef57159e5864d905552c93b2ac3525
MD5 0e5fc55aee92f088fb87997e6bb78cef
BLAKE2b-256 76304f9e463a49eef7a7b3e212b148e58f1f3a1e57d0bf9099bf48549aea50c7

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.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.40.0rc1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 54ce086706525ec6d69a90f76c5d53700262274e72948170b8cdb7f42cf1705f
MD5 d313966a36f288c792bdd883569d6dc3
BLAKE2b-256 307a3c9333f3605647d702266e357bac71a0658954668bcbb429b400b5e44eb7

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.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.40.0rc1-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 38920a33353136e5a3be53660d80eb0c76b05f51ec1910d1f911fa126749a6b4
MD5 6f09b8b97a5640b977b5b8c51829efb9
BLAKE2b-256 4c039e9ac26290821ad7e917e7aa9dff822acf3dacbb1d4a72636e95477ac498

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.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.40.0rc1-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fabf8bdf582249a39d4a56fea68ed9d3afc58b49477c97440585c6d7f04b16e1
MD5 ab428c181eac0d81f7008f2b0744e87b
BLAKE2b-256 575d87dd43ca6ca5393c2e303a4549e9557b52e1ce1ed513c2c28c549f72d98d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.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.40.0rc1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 69bd053736321ebbe353278ffdc180d7a1385ed63a0811e6ecace2f8f17649c5
MD5 5b643af16a864f311ddda96d0d8aa0f3
BLAKE2b-256 40153ac0ee76a7312f287d38954b8a1f5fa330b7b1f4c26a362f1039cddee368

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.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.40.0rc1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1159ec809f3df5dd43c0723a5b667b9db326a3fa335ac90af276529c7d868843
MD5 77c8044c2e71ce33e50ac3d551a69e92
BLAKE2b-256 8b71797153f0b8548a3fdea1f357a03d93d15819ab47aefea9636f8f51122a73

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.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.40.0rc1-cp35-cp35m-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 d3b40239a6c3fa1774ecddbc1e8acfe9098f394af728778e36a35320a64f6216
MD5 aac899ab819067498e8374f936a5460b
BLAKE2b-256 bda983d9e7d3ce8ef067786c066591fe2877b2b28b09cba0cac40423e00b34c4

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