Skip to main content

Protobuf code generator for gRPC

Project description

Package for gRPC Python tools.

Supported Python Versions

Python >= 3.6

Installation

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

Installing From PyPI

If you are installing locally…

$ pip install grpcio-tools

Else system wide (on Ubuntu)…

$ sudo pip install grpcio-tools

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

$ pip.exe install grpcio-tools

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

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

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

Installing From Source

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

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

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

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

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

Troubleshooting

Help, I …

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

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

    pip install --ignore-installed $OFFENDING_DEPENDENCY

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

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

    You can fix it by doing:

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

    If you see

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

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

    sudo apt-get install python-dev

    If you see something similar to:

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

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

Usage

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

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

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

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

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

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

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

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

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

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

grpcio_tools-1.43.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

grpcio_tools-1.43.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

grpcio_tools-1.43.0-cp310-cp310-manylinux_2_17_aarch64.whl (31.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

grpcio_tools-1.43.0-cp310-cp310-macosx_10_10_universal2.whl (2.1 MB view details)

Uploaded CPython 3.10 macOS 10.10+ universal2 (ARM64, x86-64)

grpcio_tools-1.43.0-cp310-cp310-linux_armv7l.whl (36.8 MB view details)

Uploaded CPython 3.10

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

grpcio_tools-1.43.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

grpcio_tools-1.43.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

grpcio_tools-1.43.0-cp39-cp39-manylinux_2_17_aarch64.whl (31.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

grpcio_tools-1.43.0-cp39-cp39-manylinux2010_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

grpcio_tools-1.43.0-cp39-cp39-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

grpcio_tools-1.43.0-cp39-cp39-macosx_10_10_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9 macOS 10.10+ x86-64

grpcio_tools-1.43.0-cp39-cp39-linux_armv7l.whl (36.8 MB view details)

Uploaded CPython 3.9

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

grpcio_tools-1.43.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

grpcio_tools-1.43.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

grpcio_tools-1.43.0-cp38-cp38-manylinux_2_17_aarch64.whl (31.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

grpcio_tools-1.43.0-cp38-cp38-manylinux2010_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

grpcio_tools-1.43.0-cp38-cp38-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

grpcio_tools-1.43.0-cp38-cp38-macosx_10_10_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8 macOS 10.10+ x86-64

grpcio_tools-1.43.0-cp38-cp38-linux_armv7l.whl (36.8 MB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

grpcio_tools-1.43.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

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

grpcio_tools-1.43.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

grpcio_tools-1.43.0-cp37-cp37m-manylinux_2_17_aarch64.whl (31.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

grpcio_tools-1.43.0-cp37-cp37m-manylinux2010_x86_64.whl (2.3 MB view details)

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

grpcio_tools-1.43.0-cp37-cp37m-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

grpcio_tools-1.43.0-cp37-cp37m-macosx_10_10_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.7m macOS 10.10+ x86-64

grpcio_tools-1.43.0-cp37-cp37m-linux_armv7l.whl (36.8 MB view details)

Uploaded CPython 3.7m

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

grpcio_tools-1.43.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

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

grpcio_tools-1.43.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

grpcio_tools-1.43.0-cp36-cp36m-manylinux_2_17_aarch64.whl (31.0 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

grpcio_tools-1.43.0-cp36-cp36m-manylinux2010_x86_64.whl (2.3 MB view details)

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

grpcio_tools-1.43.0-cp36-cp36m-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

grpcio_tools-1.43.0-cp36-cp36m-macosx_10_10_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.6m macOS 10.10+ x86-64

grpcio_tools-1.43.0-cp36-cp36m-linux_armv7l.whl (36.8 MB view details)

Uploaded CPython 3.6m

File details

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

File metadata

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

File hashes

Hashes for grpcio-tools-1.43.0.tar.gz
Algorithm Hash digest
SHA256 f42f1d713096808b1b0472dd2a3749b712d13f0092dab9442d9c096446e860b2
MD5 cbd1a1f2e06bf4b11d45d437fa8c9b28
BLAKE2b-256 557ab6d5a5d69d6ab0df70a7ceed16f0e9a6c0bdc09376c92fa5638d08803fa4

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.43.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: grpcio_tools-1.43.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio_tools-1.43.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5be6d402b0cafef20ba3abb3baa37444961d9a9c4a6434d3d7c1f082f7697deb
MD5 b27d02258b2f0299ab076de75b2f211d
BLAKE2b-256 56c2921ea5b09748838eda67c3d635ce0fe244e60fc009834db94be615439b67

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.43.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: grpcio_tools-1.43.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio_tools-1.43.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 53f7dcaa4218df1b64b39d0fc7236a8270e8ab2db4ab8cd1d2fda0e6d4544946
MD5 fc40686489be029b9d4aacbad79f6c29
BLAKE2b-256 fcb4d175d1f7a0859f61b9ac77d50316a44b751a5c2ed0dd4035873f9b6362a8

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.43.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grpcio_tools-1.43.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c5c80098fa69593b828d119973744de03c3f9a6935df8a02e4329a39b7072f5
MD5 fe9d1d008d5240ae7ed14d0bf0f98c23
BLAKE2b-256 1170f4cb97aef1f3768b84eca56fa2559e505f43635cc8730721840fb4684bfc

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.43.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for grpcio_tools-1.43.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e6c0e1d1b47554c580882d392b739df91a55b6a8ec696b2b2e1bbc127d63df2c
MD5 b9abc2d9f0f7571dad4406d7acaa584a
BLAKE2b-256 c2f87cc11df26ddec0491804f41d3d9d28c545b297cf8c44bb8b9d99b37829d5

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.43.0-cp310-cp310-manylinux_2_17_aarch64.whl.

File metadata

  • Download URL: grpcio_tools-1.43.0-cp310-cp310-manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 31.1 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio_tools-1.43.0-cp310-cp310-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 019f55929e963214471825c7a4cdab7a57069109d5621b24e4db7b428b5fe47d
MD5 333fdfc5be4499af087f99c7a44abcb5
BLAKE2b-256 07b6ec704917ea56fe65b8df2995feef6f6c65c399fe0842577cdb1bc9e1d4ae

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.43.0-cp310-cp310-macosx_10_10_universal2.whl.

File metadata

  • Download URL: grpcio_tools-1.43.0-cp310-cp310-macosx_10_10_universal2.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.10, macOS 10.10+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio_tools-1.43.0-cp310-cp310-macosx_10_10_universal2.whl
Algorithm Hash digest
SHA256 178a881db5de0f89abf3aeeb260ecfd1116cc31f88fb600a45fb5b19c3323b33
MD5 9534af66b8153b4351fbf359654bd2f9
BLAKE2b-256 dd5d470d5b7199496504acfa3aab81d8ab54293a9fef0715480097ea20453c56

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.43.0-cp310-cp310-linux_armv7l.whl.

File metadata

  • Download URL: grpcio_tools-1.43.0-cp310-cp310-linux_armv7l.whl
  • Upload date:
  • Size: 36.8 MB
  • Tags: CPython 3.10
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio_tools-1.43.0-cp310-cp310-linux_armv7l.whl
Algorithm Hash digest
SHA256 766771ef5b60ebcba0a3bdb302dd92fda988552eb8508451ff6d97371eac38e5
MD5 44cec5cb503b43434972da156e40466a
BLAKE2b-256 08c7faca963807769b23646a1faa2d8894e2226d179b4eaf948142ba7297e534

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.43.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio_tools-1.43.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d21928b680e6e29538688cffbf53f3d5a53cff0ec8f0c33139641700045bdf1a
MD5 12a6abbf86d5c25c85769c192104f9a1
BLAKE2b-256 0ba028c1be69e3c592a13ac48feedd171ce74ef263c39b23e6e53a1676194116

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ebfb94ddb454a6dc3a505d9531dc81c948e6364e181b8795bfad3f3f479974dc
MD5 203e3c9d465c23820f6e1a0adbe9c2be
BLAKE2b-256 628c6c4d600c8b9e416265d9d1ec43da80299e2eb7c6108781b9140656ebc12b

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.43.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grpcio_tools-1.43.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1adb0dbcc1c10b86dcda910b8f56e39210e401bcee923dba166ba923a5f4696a
MD5 221609b59c0a67b3dc2e52cdd6281fac
BLAKE2b-256 1bc2bb5f6ce03b93c20db42577d950f659318e328ea5ecb329ce0cbcb3b4b51d

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.43.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for grpcio_tools-1.43.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d7173ed19854d1066bce9bdc09f735ca9c13e74a25d47a1cc5d1fe803b53bffb
MD5 2b55a1deb972f583fca3aa1cd9d55a07
BLAKE2b-256 abb3d667266670e534413f426f331dd4973ffd9192269013e4c53c222142c713

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.43.0-cp39-cp39-manylinux_2_17_aarch64.whl.

File metadata

  • Download URL: grpcio_tools-1.43.0-cp39-cp39-manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 31.1 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio_tools-1.43.0-cp39-cp39-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 671e61bbc91d8d568f12c3654bb5a91fce9f3fdfd5ec2cfc60c2d3a840449aa6
MD5 97ae0d7edfed70c517f2d807160b1c00
BLAKE2b-256 6fc827e2ba11af8f7f106b6230e158b86e454765c93c459104d2e517020c47cf

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e956b5c3b586d7b27eae49fb06f544a26288596fe12e22ffec768109717276d1
MD5 8ed87365db2f2052f35403138c04a362
BLAKE2b-256 48b8207caedf257024b1b4b02b013ffe1046c9bae6f9a3e63bd8449e7cfd92f8

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b68cc0c95a0f8c757e8d69b5fa46111d5c9d887ae62af28f827649b1d1b70fe1
MD5 6476fd3a33fa448c1c3bda4f3086440a
BLAKE2b-256 3b35bd3cf6320bb65936abdc7ba5ddcb7c9292f722cc9cdc1cde3e23e0c2b947

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 1def9b68ac9e62674929bc6590a33d89635f1cf16016657d9e16a69f41aa5c36
MD5 2325cdf3d9f9c56d59869294d6eb8899
BLAKE2b-256 e0cff50ddc6031f6cd3f121651b5994c6c7e4c324e5842b65e8ec859fb04e452

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 61ef6cb6ccf9b9c27bb85fffc5338194bcf444df502196c2ad0ff8df4706d41e
MD5 660f642fa7fc7e4b67ec3a40269526d6
BLAKE2b-256 4f2968ba8b82817f17aff143abe05afe368750236a570268132c6423abd9a2c6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.43.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio_tools-1.43.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 98dcb5b756855110fb661ccd6a93a716610b7efcd5720a3aec01358a1a892c30
MD5 f5fa36526c57350269ac26ffac8e6f44
BLAKE2b-256 9abcd6161cd8b2315c8451e17ddcdf16e429fad22301539de1c1776068965645

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 5f2e584d7644ef924e9e042fa151a3bb9f7c28ef1ae260ee6c9cb327982b5e94
MD5 17b331025316809acc5928a93f92d078
BLAKE2b-256 f11c159e11097666ec32fbbb9a5b653f4c0faaf29fe4d33760fecace956156d3

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.43.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grpcio_tools-1.43.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d7e3662f62d410b3f81823b5fa0f79c6e0e250977a1058e4131867b85138a661
MD5 5a15eb1a467dbdf1f04a5ee30d1d4d82
BLAKE2b-256 adc2a0a0c6fec8bc7f9c34cb01bda642ca72f9bf6c82842f336ab9f09c816d74

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.43.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for grpcio_tools-1.43.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 234c7a5af653357df5c616e013173eddda6193146c8ab38f3108c4784f66be26
MD5 d5199c0d02587b331137c586e742a391
BLAKE2b-256 8865721d560da7a3f4fb65c8b20d76d40adb1d9361ea38f7d3d5954d5f998a53

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.43.0-cp38-cp38-manylinux_2_17_aarch64.whl.

File metadata

  • Download URL: grpcio_tools-1.43.0-cp38-cp38-manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 31.0 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio_tools-1.43.0-cp38-cp38-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 efd1eb5880001f5189cfa3a774675cc9bbc8cc51586a3e90fe796394ac8626b8
MD5 1451c294369ca6cefb146a078bb94595
BLAKE2b-256 73fd150424a5d7fa2ce4b4039381e9aaafd954ce82dbb1eea47d34ccc900e582

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ba3da574eb08fcaed541b3fc97ce217360fd86d954fa9ad6a604803d57a2e049
MD5 32555d7e05a20c82c148c4566764df80
BLAKE2b-256 23dc2f713f27d588ce467b74e1dba0842164d5d8caf1fb4e0545b845535d57cd

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f19d40690c97365c1c1bde81474e6f496d7ab76f87e6d2889c72ad01bac98f2d
MD5 306abd32d415c5de50b8950a0359c2e6
BLAKE2b-256 64422862e25d1eed784927b9b93bbb9dbaf13aac582171e2508b44eb3f762369

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 ce13a922db8f5f95c5041d3a4cbf04d942b353f0cba9b251a674f69a31a2d3a6
MD5 a8a0499e097bdaffb9ff302ff5871bb5
BLAKE2b-256 c89a1422834e9e860c855d0934a888766ec29df3e1084dd22c30030e92a9a2c8

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 05550ba473cff7c09e905fcfb2263fd1f7600389660194ec022b5d5a3802534b
MD5 698cbec842f8790ba00b032097486a17
BLAKE2b-256 ac8e780521a94098b9739dd5d0e37350af754757ccbb931f772c8e7a0658d9d2

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.43.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio_tools-1.43.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 c39cbe7b902bb92f9afaa035091f5e2b8be35acbac501fec8cb6a0be7d7cdbbd
MD5 d19d1e23d8769515d432913e567d5230
BLAKE2b-256 e22c6543ff1b6cfdab3ed3fee85340abb23a1a2060eef7eccd5ad14c218d2bb6

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 2737f749a6ab965748629e619b35f3e1cbe5820fc79e34c88f73cb99efc71dde
MD5 105e694eee5ae02032772ab602f6d12d
BLAKE2b-256 dd7f9d5f57fc91a2570fc8bca5592e198d59c38535841ecb18c9761ccc6f4d4d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.43.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2e9bb5da437364b7dcd2d3c6850747081ecbec0ba645c96c6d471f7e21fdcadb
MD5 c723cdc52f5e16ada1db858cf68a3b03
BLAKE2b-256 a35e6e476ffa95d88b8720a4ee1056ced83ab82de1c01e208952b679ad67fd63

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.43.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2458d6b0404f83d95aef00cec01f310d30e9719564a25be50e39b259f6a2da5d
MD5 5f078f59b3a5287330a796201ddbe609
BLAKE2b-256 353b316b2f59c228cd11b9f7b73180bf42062b5325a54b2450806754bb8bda7e

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.43.0-cp37-cp37m-manylinux_2_17_aarch64.whl.

File metadata

  • Download URL: grpcio_tools-1.43.0-cp37-cp37m-manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 31.0 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio_tools-1.43.0-cp37-cp37m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 09464c6b17663088144b7e6ea10e9465efdcee03d4b2ffefab39a799bd8360f8
MD5 7a531da7b199ff1c66a364377ba8e99f
BLAKE2b-256 c34e2315255ebc262918c4455d0c0688f69af2abfaa37754d037e382118de66c

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3eb4aa5b0e578c3d9d9da8e37a2ef73654287a498b8081543acd0db7f0ec1a9c
MD5 ece3536d1148d9fe8b097d487ada13bb
BLAKE2b-256 cc79d40fdbbf79edaed82e31db07687f308e71323114daf24279b1227d94d7df

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6dea0cb2e79b67593553ed8662f70e4310599fa8850fc0e056b19fcb63572b7f
MD5 9a03a786393ed7c014c0e5973e5400ee
BLAKE2b-256 3fc1706e40beb612d73e34a53d3b5f415d6ed8bf4624a50a5c7c82de96a532fb

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 63862a441a77f6326ea9fe4bb005882f0e363441a5968d9cf8621c34d3dadc2b
MD5 f18cec42e0fa6216d99303419bc99f44
BLAKE2b-256 2025d11f065bdeda07190d5fa723ee29a36c42288233485658bc2e3457a772d5

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 9dbb6d1f58f26d88ae689f1b49de84cfaf4786c81c01b9001d3ceea178116a07
MD5 a235ca497a4b264a06e2b04eff754baf
BLAKE2b-256 2a4c54f99fb5fc922a7f1b5c55d81262c7a430d5a24f18014878202d796faeb0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.43.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio_tools-1.43.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 04f100c1f6a7c72c537760c33582f6970070bd6fa6676b529bccfa31cc58bc79
MD5 ce73a16ecd48a22aad1bd60ae74fd417
BLAKE2b-256 cef1379c72454c9cd33a340266f8c3ffa016181fe6d308c34150b4f0b34649e5

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 6eaf97414237b8670ae9fa623879a26eabcc4c635b550c79a81e17eb600d6ae3
MD5 a0d7b95c33ea6c08784dcb83c8a0d376
BLAKE2b-256 4b2140a10efd4885449f626c8d4d4723cc79404327cb98c962db5a36217885c5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.43.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f97f9ffa49348fb24692751d2d4455ef2968bd07fe536d65597caaec14222629
MD5 75895318fc7d231864c627e5c5954d60
BLAKE2b-256 2121e24313fbe6bcb5ce291d9b5fbb8a413b99818e5ea8aa00129fdfbd7a47a9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.43.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 55c2e604536e06248e2f81e549737fb3a180c8117832e494a0a8a81fbde44837
MD5 cd1c106afaac07f97106c655386ed83a
BLAKE2b-256 aafeb54e86574b9e02d39f893d88f60ca6a3b8309020679f34ccdf5dd42fc428

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.43.0-cp36-cp36m-manylinux_2_17_aarch64.whl.

File metadata

  • Download URL: grpcio_tools-1.43.0-cp36-cp36m-manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 31.0 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.9

File hashes

Hashes for grpcio_tools-1.43.0-cp36-cp36m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 f974cb0bea88bac892c3ed16da92c6ac88cff0fea17f24bf0e1892eb4d27cd00
MD5 eee2a96389242a57df887872d0308b21
BLAKE2b-256 7eb05c752e3b9f1078595da68543ca4660f4df55bbf0ddd0568f2840e93444a8

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 426f16b6b14d533ce61249a18fbcd1a23a4fa0c71a6d7ab347b1c7f862847bb8
MD5 1f8e568bc25dc53fc495d39143448cc3
BLAKE2b-256 52eb2393a95d595d813cf32323411b4a540cde54b12c58caef5c346758228549

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 010a4be6a2fccbd6741a4809c5da7f2e39a1e9e227745e6b495be567638bbeb9
MD5 125638b2ca5354afbb963c104bead5cf
BLAKE2b-256 eb399049ecf4892d3e0ee2fb1a90d357e6ad17d53d3825e78d945af82e0f2424

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 18870dcc8369ac4c37213e6796d8dc20494ea770670204f5e573f88e69eaaf0b
MD5 3d62829ffba6de4b085876490c4e06f6
BLAKE2b-256 e3112759771342edbb97075218056ea8e5d8abe775d38f67330fe2dccc6150b8

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.43.0-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 8953fdebef6905d7ff13a5a376b21b6fecd808d18bf4f0d3990ffe4a215d56eb
MD5 a30ae719c6ce3daa6076304009d5fd53
BLAKE2b-256 1a8970d2cb37f729bb0d61bf6454251f8213f91164c97edd090e0403b2121ebc

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