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

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9manylinux: glibc 2.24+ ARM64

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.9macOS 10.10+ x86-64

grpcio_tools-1.39.0rc1-cp39-cp39-linux_armv7l.whl (23.4 MB view details)

Uploaded CPython 3.9

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8manylinux: glibc 2.24+ ARM64

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8macOS 10.10+ x86-64

grpcio_tools-1.39.0rc1-cp38-cp38-linux_armv7l.whl (23.4 MB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ARM64

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7mmacOS 10.10+ x86-64

grpcio_tools-1.39.0rc1-cp37-cp37m-linux_armv7l.whl (23.4 MB view details)

Uploaded CPython 3.7m

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

Uploaded CPython 3.6mmanylinux: glibc 2.24+ ARM64

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6mmacOS 10.10+ x86-64

grpcio_tools-1.39.0rc1-cp36-cp36m-linux_armv7l.whl (23.4 MB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.5mWindows x86-64

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

Uploaded CPython 3.5mWindows x86

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5mmacOS 10.10+ Intel (x86-64, i386)

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

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mWindows x86-64

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

Uploaded CPython 2.7mWindows x86

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

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mmacOS 10.10+ x86-64

File details

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

File metadata

  • Download URL: grpcio-tools-1.39.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.39.0rc1.tar.gz
Algorithm Hash digest
SHA256 d591846a629d515ec76d2fa3c3917a00d8d7160d1feadf62c97d9e343f96d839
MD5 02d081ac2e53babd37556ee7f47d4678
BLAKE2b-256 3d5460e9e8adf9d1ce6b0efc034b20edd293e8823cea0f9f5e2f72aab6447d8f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 be72351dc666b12e5638d9b6f50109b2362a37f22d5eedefffbb94b51069c638
MD5 9c0e338e5b7702bd6abc1b663941b7b4
BLAKE2b-256 4a69600b724f9a060854f3e45e827725e3e0644c05397de1dc3c05cd1776f3bf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 7995c739a08539de48a3a81a00e114b2672cb559ee69d4734505932b75313079
MD5 f31f68970fe8c119e19b17e9cc63c571
BLAKE2b-256 9ca47371ed00322714d06fa53415266f9fa5c6fa406375463bb74ae0326d9a83

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp39-cp39-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 170b3924c5c2e4babd11390a9a82e85cc580a2b8be94e78d945873f06f24e6e4
MD5 3c32a5204b4e5763f8ba7061d2f13601
BLAKE2b-256 51a4e5b8380c210f3dd368711f5f5c092e883f9d2fa2b93d6cca5e36b451f82f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d0a2284ff650bad8e6260b1ba2ffb6bbf5f4878fd897acea6773356971a2b92
MD5 b33900a4f8fbd92df676c02c46d8ff73
BLAKE2b-256 d49176d8a90f2a41ea48d81b2ad9f89a77c1c56057a67e6cac56bd20a5865456

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c67613bc14a1b0eedfc68daa527d557d3b92adb9a3b2ef75db200d8364d3c01c
MD5 6f80a6c2c62e823ceee48c65da92e981
BLAKE2b-256 5867b0dea4a241290399269a5aa251b12fcab289aac4b76803fa9b23adf67a58

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d9c04497e9ba31d988bf804982b0402263e97c895d234cc83ae743d90f759242
MD5 602faff712a889eadf50a92a6d8d99d2
BLAKE2b-256 6ddfb3655ba50fed51ffc6db33147e22c25f7f0f6e35b37a26fa3cd0cf794200

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 97a6b76268a7d4377da1305c1cd1e40683e8e7484a70fea71d047d1a3c99b110
MD5 e2ac5e7401ceb97c16b40d040c8f97ad
BLAKE2b-256 c2e74f9c596d152d6d8a5d4d9581e5c9e74de0348d4562450a3a99886f3d9a1d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 9ff4fdcd1ec584f6767c43245cc75f0d0e1d38e063596c7b30ab6f2cc41c48d7
MD5 87a18aac2907eec28dbb92c9110310ea
BLAKE2b-256 8166780ea4432d29819ddc213b522713fecffb6838a7d84137d759d023994465

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 e1a326bf11a3b30337b0debbe59ce2fefe273bd49cd2bff3fb2857c4a88b93c7
MD5 8047c2cee8cac8c7134682c59313b639
BLAKE2b-256 e228363d201d05b378aded60cfd6f490d1570ff6a395c05bc81bf7987556a033

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 bdaa506b8dcd06142b4c52f18eca66fbaed8e37bd675910aa29516f806c0874f
MD5 d0b4a115f1fcad17c0e2bfb0fbde8a7a
BLAKE2b-256 fc23acb88c8fd0f2503a7dd11aeddda5414d5cb5dcecd085a7dcb70e5aac16ad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 38ed1c0c4fc50f3087c6cdd31a53c0ba1a9f06400f35048380e3a9d90c43e9bd
MD5 216b01a4fa891d6f7f8cd614d699cf24
BLAKE2b-256 ff1e2abe31c60374e1d8fdc862a2a1dc9fa1fd6f68914c03c8f303fdbdbc23ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp38-cp38-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 fdd272a945c586d966519c526444ed68db2ae5f40c386717f08d4708c42810de
MD5 e97ef68f14cd8b7564d162b4d849738d
BLAKE2b-256 613ecd6d8a46ba1ff4ede1d70d485c3c70822a8802ea46fae95d6b18f43ce01a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3f7de04ff55f8a7aea5772f5653367629006fca1b147aced718843e57556f88d
MD5 4bd18823e8783dc327c722bbef7464d4
BLAKE2b-256 3cbee18c099cff6e9dbff393d17b06713c81084892a58abbc5d253bb33ab5b3c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8ca145f7510217bbaae9a4e36253715f2be7e0b8714b660bb258257b8146f750
MD5 57ab00f10a481294c5ddd54101554200
BLAKE2b-256 db7e031b02df141c606c9e6c9e81969cd0d43f780d39d3d661db2c6d1e8500b6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6dd905d81ac167e4aeb99b2e70698787c243a2cf43d0fa3608eb4e7d9435715b
MD5 8b183b6446e55d64f55bdf4d24473a16
BLAKE2b-256 5ebd349dc6741889a04de517410458d1609b12259170d694d11ac3ce1d97f065

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d149946890b91f17b5329276adcd83da7bff3ed201560149127cfabb14aed7c3
MD5 9f987c4302d54ca2e186a318e62417f3
BLAKE2b-256 990572a4d7c91d0a953e6002a91cee44a26450ce373645ee269d98331c38ff52

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 90daac734f82bf43e73aa6d3a827e8d4c3661c50670178bafd8da3b65f41a558
MD5 38967cd5bf3185237ec9bc882d0bf50d
BLAKE2b-256 d0c8f3715db7a8c7c0e0b3d8467f015a787d53966d19ddef83bc4ab0ca82639f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 a2a3299248b5f8b0fa94388503033ae08979514a22115c150c5b2313067a555d
MD5 a7f75b57c8283f0ce61b804fb691c910
BLAKE2b-256 326783ff1cf6f870fb9bede9bcee39363dfdd875e3e41a155fcef36036d100d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 c1830e09c34f951f74a28c3b3f7463e14bdcc8f49ca330bde67d8a718f2fb99f
MD5 3866b6913044ca75a7b7b2614582dda3
BLAKE2b-256 7e71106dda9220faefd25831392f0ed03669f09a87d4454d16a25a69eb3abf47

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 a84d5c30f838be2e7612e0d847a1c577da9fac2e7e3d93494dfa97c99781b3ed
MD5 1e84178c9bb57f78ceb01e6e4c914a83
BLAKE2b-256 68acf410e1375ccb034017da99dbd519dd6cc2fe62309bb8c66797c22e95eef3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp37-cp37m-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 b053aabf2a732acace0baba554e4879dbf19647c5fc6a66a6cfc63fec0ef8c8a
MD5 5bce355453fc499bfd6b65f564e5fa69
BLAKE2b-256 83d63aba642dc18cc62f6878802d44f00f994d0783307635783fa3d7db75ce69

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 936d9e1e0b395fe1891b36782ba0c77cfadeeb792b0a5925ff4c7b66947b1044
MD5 b7e13e6637c1d5bb70e679d61f031bdf
BLAKE2b-256 b1ee6365ac69f29ef00c0f8a76fe567a441452e5c1be749ca0e27a385b374849

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7a200268a23bcb0ef17403bc6274d5e164351da713b4287fd6abe24cc976d293
MD5 b85512d6384bd877cfd8bed8dfc14a67
BLAKE2b-256 8391dd29f99a50574518765dc2da174a039e1216dd269adaf25197613539c4fb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1811b1858705c5d55711a4f1acf89a7ddae5c958d3ce5c15206d810467b71122
MD5 3a63d4fb4a7a31380249debaff183ba1
BLAKE2b-256 86f7bdc1ebe96a9a6f999ad0363544c0fa24b2a56c1b73373ab7bc6f8f02078a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 93fb04a5ad068c3322cec831c393f0d9e12f103857aaf8271c676ac045f0d493
MD5 ebc51b9277fc99f9022482e1215e3f77
BLAKE2b-256 eef568e8402f900a669e8cf313eab0222f83591d0ebdceec03a35c401d3f352d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 68b319047b69a961677f1c57bf336bd32a263b37faba8152170f9b5869742a22
MD5 ed7e9e1dc62a3be1d7c3561d7ad67467
BLAKE2b-256 8c3daa4f0d38f92cd078ea2e5fb5160a988b997ff148a79e5fc1851d6124de16

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 f3b178287235e7cd2e9ff67d56dec805d217746cad2ee406f6f2cc03d7dc1fe7
MD5 c9e79b7f80ba729424620638c7166285
BLAKE2b-256 21ac380cf23d2558626de6ba37ff86c5471dcc092cabe9c3bc8093af6e17f99f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 66910432b1b48bc30e7d07ab2152576088d99aab021a6f414868979d2d9c509e
MD5 4435d0ed6bd91bd56d7399c4334a2221
BLAKE2b-256 d66aa624185ef1db2d47e7304748dcbff133671870d743f7382fa12932ac81a7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 894b0579cdc55403720a6717f2effceaf51738c91631adda5adf491acfc4463f
MD5 0b237001b973eb6b6e2b719165a0dd22
BLAKE2b-256 bf705c20eeeb52b06c64e1c11a86dcdba80ed1ff654e244e5aff3a2a84e14798

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp36-cp36m-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 96d71386ca9bd4e5da2db760cb30b80c509bd9ee3cc47141ae8ff3b998f713ca
MD5 a03b84b170c620d59761086cad15d8fd
BLAKE2b-256 cce56a830428b693e2618743b63419dea48f4e7892a183d5aa2acb53ca57a02d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 41f0803ce17a1ae6e049c819ca7e2e7622a084e9f200fb02fcb87fe4e52e0537
MD5 1c5a5d97188cde38b9471ae7cbc87b37
BLAKE2b-256 422de9af3f9a367524bb1cf032f1d65aa4381296aa9430f2000fa86badfa8f39

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cf2e6ad1fcf830a38e165b3f7fc2fdd953f860b391959477d312208cc42fbe17
MD5 d7a927bf60e4df321e454f4b2729bb0e
BLAKE2b-256 168d3c03d2aba7c79f23d7693905853ebdaa36c1fa7acd5098c77de770a1fc65

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 dbcc7f6da4fa51b7a8315da601b26c3b5ed0b012e527c46c3df2115ef0ad9551
MD5 eaa040cc26b98314627aa54513f5c7a5
BLAKE2b-256 0600e92f7b2a14e98feabe0743c10a2eda904814810cdda0641ff3d54e5a98f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e29f6a4003a6676b4a731677346c50d8225ca121d6f966b27983d83c6a082e95
MD5 4bf759e84f1afc3801a034fc30c6682f
BLAKE2b-256 3b22324d62c3833ada75a85a40988d100ae47dd8baa810785121ba154dbe2cc9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 ee037227083d1a5fa326af82df7007eab2ed67bbcee13624aed49e6e410549f0
MD5 b960249ae069ca1d4f87e09f6cef28fb
BLAKE2b-256 96103d0cf828e14352a777d606ccda20e09cfc53c717e017a5ce0ea94fe647ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 32535cb0f4c1b006b7e6fb6bf19c0fb7a76836bc04b6da2f4330bd5747cd13ac
MD5 a7de0e2a681cd3a1128bedf5877b7fe1
BLAKE2b-256 66e7ed902661a4180bca8470856683f66f7d200166c4dd01e473af92e832062e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 e1dedbdb783e563d7a15206247444aed07295ee6cae224cdb628f8f41e29d66c
MD5 d49c7321b826e08c8feefce76cd415d3
BLAKE2b-256 def545b3505a063aeb5bdc28a357c2aa551b51033a492887cfd46cf8e0aca07f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 f0eb4a79414ad57bbcd449edf51a9e4a0dcee4dbda80524c94578f42a2e4d3b4
MD5 190d3fce2399cf02e65114f4d6b8c4f0
BLAKE2b-256 085172bd84dc738faab58e61e4c5cf6cbf6933fb0ed92ed88357f9079367e7e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f9be1e5ce5e920d4c33cacb35fa3f24c3b15666efca95e39c19a79bf44424c9
MD5 91094f43d63aae5e64a55a5c9464b916
BLAKE2b-256 e62157581607c2045e4edcf222bc28ffa671edaffc3ceb4f057ae0308ac6eac8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5a92e76ada275c365e5006efc4e6de5888625da2804177dc88e4971f31781655
MD5 7d44e38d4c3d4e7faa71f656847d2d6c
BLAKE2b-256 f32bdaac6bca91429a0e46713272165a7a8aaa749a47ca68c639f9339e48cb89

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c74b852cdd9951408845c3608341977af32e59643cbc837f5e3a0828860cb099
MD5 5a2bbcfa730c20424f86f5db25bfd070
BLAKE2b-256 42122ebf2d29d1cb9ac6d3960ea3b097e1e356304d2c763a504c1cf2118aed2e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e16eacd2132bbc69877036412fe9a825c978f169909fa7775a96e3267cb621be
MD5 3539f1a6773bda2e7de3b2e9de4480d2
BLAKE2b-256 29a835b319ee96f84a533500829e2d64008de8c324c561c8c62ea4fbb9089d22

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.0rc1-cp35-cp35m-macosx_10_10_intel.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.5m, macOS 10.10+ Intel (x86-64, i386)
  • 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.39.0rc1-cp35-cp35m-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 a16a1402cfed75663e48a8d04b1e2603cad729db46f84fb57105703aeb54eafb
MD5 f423da7967611755fb6c7cdc682712b9
BLAKE2b-256 7a5e53c6c7589ab71643f639e81e1fbd45b796ef550c753b3809d222a59d6be8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7f5705957b7a56d834c2a29f395823a7616523bfd6f67f1d7e646abaca09f3fd
MD5 e7f92760d982b6f31560adc1fe2e1b8e
BLAKE2b-256 4ab47bcf0fa7ced23621040f6d3fbb0470d3b7a92c45987dbbd2552567b2cdce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 38806f4362f137050da57bfd72cd03f0e8b925309e4557bf7b17366c514cd68b
MD5 6627f217b1e6988af6af33801bdf0dad
BLAKE2b-256 ba120182879cfc28d49bf48b6a6f9b7a338fe658a4576d6777c13abc72a94d68

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 253f221fcb434220be9b11336f84bf9557afe06aab762fccbe9cc6c9c1fda79f
MD5 bd2d2e5c959aaf33c54e566c0ab0381b
BLAKE2b-256 01ee97f7f88bc611d2ecae052b5ad101f55a6da52a1ac770d249c12008218f4d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 ec6a416ce4bb7cf93bd20d2897cb5a50cf47c10c0fce8105470552f65de7eae8
MD5 9bbd5d1b33db0bb49937479789556fb9
BLAKE2b-256 c200af7dd2e70fdb54e5beca5c9dcc331718a4b2a0de4f698b0da16842f13b6c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 92676210851ebf118133c368fbd6cd213e215716f0cbe3b50eaa80d942027461
MD5 efbb47941e89ac5ab3261f9c33c11fd1
BLAKE2b-256 1dbfe10643cf69350092d31148b7bcc34de2ef1dab1c054dce9da1d147181091

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8831b7f6313e572231f4636c8659c4193579609d361967919f5807dab9c24367
MD5 c036382fb91b14ba0295aeb629138ede
BLAKE2b-256 50735b54200a6dbd202e664af69be70f4869c377924f265ffda94313604778a1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio_tools-1.39.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.39.0rc1-cp27-cp27m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 c9d4429fca7e68a841b0f7a7f2b8e30daf84d35eabe95c2b05e7779d91f767db
MD5 bece68d8999c3c2ec1263ee941c409f1
BLAKE2b-256 ba9f525e2bdfd8f6373ed663f51149bf5229328c9982c9a5f28459532693d545

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page