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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

grpcio_tools-1.46.0-cp310-cp310-musllinux_1_1_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

grpcio_tools-1.46.0-cp310-cp310-musllinux_1_1_i686.whl (3.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

grpcio_tools-1.46.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.46.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.46.0-cp310-cp310-manylinux_2_17_aarch64.whl (31.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

grpcio_tools-1.46.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.46.0-cp310-cp310-linux_armv7l.whl (37.3 MB view details)

Uploaded CPython 3.10

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

grpcio_tools-1.46.0-cp39-cp39-musllinux_1_1_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

grpcio_tools-1.46.0-cp39-cp39-musllinux_1_1_i686.whl (3.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

grpcio_tools-1.46.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.46.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.46.0-cp39-cp39-manylinux_2_17_aarch64.whl (31.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

grpcio_tools-1.46.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.46.0-cp39-cp39-linux_armv7l.whl (37.3 MB view details)

Uploaded CPython 3.9

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

grpcio_tools-1.46.0-cp38-cp38-musllinux_1_1_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

grpcio_tools-1.46.0-cp38-cp38-musllinux_1_1_i686.whl (3.0 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

grpcio_tools-1.46.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.46.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.46.0-cp38-cp38-manylinux_2_17_aarch64.whl (31.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

grpcio_tools-1.46.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.46.0-cp38-cp38-linux_armv7l.whl (37.3 MB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

grpcio_tools-1.46.0-cp37-cp37m-musllinux_1_1_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

grpcio_tools-1.46.0-cp37-cp37m-musllinux_1_1_i686.whl (3.0 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

grpcio_tools-1.46.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.46.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.46.0-cp37-cp37m-manylinux_2_17_aarch64.whl (31.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

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

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

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

grpcio_tools-1.46.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.46.0-cp37-cp37m-linux_armv7l.whl (37.2 MB view details)

Uploaded CPython 3.7m

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

grpcio_tools-1.46.0-cp36-cp36m-musllinux_1_1_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

grpcio_tools-1.46.0-cp36-cp36m-musllinux_1_1_i686.whl (3.0 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

grpcio_tools-1.46.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.46.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.46.0-cp36-cp36m-manylinux_2_17_aarch64.whl (31.3 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

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

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

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

grpcio_tools-1.46.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.46.0-cp36-cp36m-linux_armv7l.whl (37.2 MB view details)

Uploaded CPython 3.6m

File details

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

File metadata

  • Download URL: grpcio-tools-1.46.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.10

File hashes

Hashes for grpcio-tools-1.46.0.tar.gz
Algorithm Hash digest
SHA256 9295bf9b1e6dd5bcb260d594745fa3d6a089daade28f3a80cb2bc976b5359b7d
MD5 25ad1118fae9c1292b23d21e85c9e0a9
BLAKE2b-256 4abcb21a5b93e4ba3044b5330eb0046f7e8b8b1cec9ea22b92e6c1393319efaa

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.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.10

File hashes

Hashes for grpcio_tools-1.46.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d369af13f38feb547fdfa15e0e3632d5cc6ea815ba7b1706411810eae0888ff2
MD5 0e79fdd4c651dd2258d46d299311ffd3
BLAKE2b-256 a1118f4b4112c3aae367bf5192d4526d0854b1cf4ad3d4b936def25e94eeff1b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.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.10

File hashes

Hashes for grpcio_tools-1.46.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d13ec29f87689c9f590eb9f40a3fdca99050a162d6c87d8474592fc85c719153
MD5 dd2444d858e04a3ee17e554efa291389
BLAKE2b-256 2bef0c6aa89ed3a7f770fb4b6335349d57e38091511f3cab5f7665343ece9bfc

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.46.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.46.0-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ 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.10

File hashes

Hashes for grpcio_tools-1.46.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 127de9a16e25ae321abfb2806a4fd8abebc260c6d126d06e0d330069aac67c24
MD5 14dd3525c9881b3863774448cb597f91
BLAKE2b-256 b8dc0274beeef608c254ef9c76bb001c8a1e876c76de080747ca374f987e88b8

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.46.0-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.46.0-cp310-cp310-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ 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.10

File hashes

Hashes for grpcio_tools-1.46.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 159c231889c0d3296cb52fdd45d1b145d7fbd5385d5f83985216103167065abd
MD5 666ee082ae433e52dbdaa94ddbd0a309
BLAKE2b-256 75ec9df2e534a13f745afdaa15452564cf7b5ed338e8cdf62c8151101317d7ab

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c788fb21f33931b56ff68d997ddaad56bba1be267e1d089df1feea4f53978e19
MD5 43481a4675af19ac7cac2965ea422403
BLAKE2b-256 83d66f2b72170aa9eac645dd2c457659e5f62d503fa9885f62a84b16d790ffe4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 eaff051f004e3670d403e1f71b15db3bd7ddb086526e97b55cde748cfec54944
MD5 5a8803f05159cfc221626087206e2a38
BLAKE2b-256 245606b06dc558066055afb5dd56cf39915d32f85f25706af74e2b21566fc250

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.0-cp310-cp310-manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 31.4 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.10

File hashes

Hashes for grpcio_tools-1.46.0-cp310-cp310-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 e1b8ea27abb550a7ba5103d9190904690bf9497069b3598de41bf971903d3a40
MD5 3b06881d31bd379b280c0024c5b916fe
BLAKE2b-256 a55f14b1ae59990fd415c7461bfd4a1056665ffeff840ef4a9ca0def7c8e8785

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.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.10

File hashes

Hashes for grpcio_tools-1.46.0-cp310-cp310-macosx_10_10_universal2.whl
Algorithm Hash digest
SHA256 0df06b2dbd6b2c2365a9e4181182e8aef7f0f53765106d9866c126d008715da8
MD5 9ebda205921a84bda541051ece6cdd38
BLAKE2b-256 1bbb472fd4ea76d90e574eb2d74de59d455fa03c2fbb0e142e90b9855244edfa

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.0-cp310-cp310-linux_armv7l.whl
  • Upload date:
  • Size: 37.3 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.10

File hashes

Hashes for grpcio_tools-1.46.0-cp310-cp310-linux_armv7l.whl
Algorithm Hash digest
SHA256 6bdfb6951a1bcf6567f8b157ca42aab16a747fb90fdb101d76f0d11bff567e8d
MD5 978c7d73f62d6f02e8e8c28d2d2efd75
BLAKE2b-256 39d2d8d791119d05ec54112425e3e966d2149ec410109cc3d321b7d21ec04f47

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.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.10

File hashes

Hashes for grpcio_tools-1.46.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 910ae66c1f6c710090db4342f52c960a12158005f7c20960e3cc0b5a1ec09496
MD5 af6d03d9db2a989ddb090ac7efcd5d3d
BLAKE2b-256 5a99c8991c457c63ebbacaf9bd2fbbb171b3488db216a60b9c8bb0b4413d863e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.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.10

File hashes

Hashes for grpcio_tools-1.46.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 2ba4d56b36b45c4e9cc4d42880106fbe0c9e1ed10ce9fbc42466cd6197cc7ac1
MD5 58373f83911d9c6a71a010a414a15c12
BLAKE2b-256 e9f2f914d6599127bb2a1f5b9c3561281baa4992210872cc327ae1468a7f9ffb

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.46.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.46.0-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ 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.10

File hashes

Hashes for grpcio_tools-1.46.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9c33de1f53bd3e9d38b1fec362297c0e58017f82857d405f212f3c2a2b45bf5f
MD5 e7a09b2e346fae371aaa9faa90072059
BLAKE2b-256 bb55dfe84e20340184b7f412f0adc333361cf5f7d8c15e57fcda899010a524de

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.46.0-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.46.0-cp39-cp39-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ 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.10

File hashes

Hashes for grpcio_tools-1.46.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c458c5264881a8327e76980c4ea8bea86382f7bffa395a6e6171419f587d9003
MD5 f1115420fefdb46fa699697d15271a44
BLAKE2b-256 be7293223f24194a99e2366cf6a94f73f52f252436637fed737d39a63a51b73a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b6fe2d5711a52358c7fef0de6c48afe1825d134d38030be7dfa29f0db6cb409
MD5 dae7f50762e3034476223d79346fb715
BLAKE2b-256 886f87c3c5335e16baf781567195c61c42db0b402b49c984c1903db3e436a049

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2641ff82234c398a71889d860cf13063e3ceb699c61501761e49f296f1df8f2f
MD5 aaeaeb7672e108900223df238f6d3012
BLAKE2b-256 d1700feae5cd8f7ef80f4598a961214556ac2e30b634ae31b499e450163d2a20

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.0-cp39-cp39-manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 31.4 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.10

File hashes

Hashes for grpcio_tools-1.46.0-cp39-cp39-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 669f4b1abf80e6ace6f06307c55bef3441487a4b7ebd5733b39a81684f705005
MD5 5f4096d67b118c0481137a4b6e44fd99
BLAKE2b-256 f6aae779963e9fd19b7417a50333af98479f2c2006ac6845b5ac601a085e1f1d

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.46.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for grpcio_tools-1.46.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4c7a398b7279a8220e3b6f41c7b2a4288a906030c22ba737e2ac11c378511910
MD5 93df1c7efb5b57aa0087355ee2eb0b9f
BLAKE2b-256 376ac578e45f74d4aaa251a2a1f3ae9c52a91312914b3cd2e8d105e4f6d2a250

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.46.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for grpcio_tools-1.46.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 876f1029af70889d3b030275bd0356f4a9640f6b20df71edf708278d82c7e0f7
MD5 4753fc9630386300e8446c3cac9e720e
BLAKE2b-256 fa39c376712191d23a6767aaa55ed9c75b03810c07ead0f44b024c282e1d5203

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.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.10

File hashes

Hashes for grpcio_tools-1.46.0-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 6ed9f82c9107173b2858a87d245da05bc94ca681c5a361af2b091c47fd684535
MD5 8baa9cd8087a32f73442f2c0361e968e
BLAKE2b-256 e13858a50f1450c95090e3cd450b90c2d5692eba3667ca5aa22c6faaf3111752

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.0-cp39-cp39-linux_armv7l.whl
  • Upload date:
  • Size: 37.3 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.10

File hashes

Hashes for grpcio_tools-1.46.0-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 5d4d2ec7f1525c1a1f9072978e540b3590cb7303328987e8c3d4c404c5f543d8
MD5 9dde4f2bc8ec109f49af59d1b3c3932f
BLAKE2b-256 871ad07ec9e2c65e37f52b70f838423ecef79cff9199eb053bc27b960789b501

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.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.10

File hashes

Hashes for grpcio_tools-1.46.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4b62818c5ccfb99b7cc719f468df99a267d3ae0ca52a0cf30e944a75239c4258
MD5 04db6fb518e0bc2ef3d348a03fdecf64
BLAKE2b-256 94fd51ae4d55b1fc9d03e3dd35a94a9c4a403cf935abf9e1bc323bdc1dcb814e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.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.10

File hashes

Hashes for grpcio_tools-1.46.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 4ee26a0787613d43ee2ec3f8dad710f09bdceadb770d2c9398e3e08dc6d4f27f
MD5 6c49820dec2523d3a15a207e8f16c307
BLAKE2b-256 1e864000c2e19b4d13d7bcc51f681a9a069113eb78572485521fc93f36e5bbdc

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.46.0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.46.0-cp38-cp38-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ 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.10

File hashes

Hashes for grpcio_tools-1.46.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3dff531bf0f629747be88d1fe97e25c567b04204a7fbe7161fcdc3acb9aa6f45
MD5 6eea35079ff224e91e06c312484391e7
BLAKE2b-256 0cd4d5d1bd615573acb50a64a6306d790a4777aec68b21b25d8aebb9ba85ee3d

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.46.0-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.46.0-cp38-cp38-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ 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.10

File hashes

Hashes for grpcio_tools-1.46.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 eff55b20cfeda76c644e495ff464f0c4eb0face52ced3e5c88a87319716f1d7f
MD5 9b3c8ebb38426ea417ebf546abc93403
BLAKE2b-256 6c32396cac55cefa34411300690eef8749d30965769554f6ba49410d2f144df8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cf8d4def471eb631282709c59981e3d3d9a04e99969b42c0a62b0565e8d2634d
MD5 1352fa802881f155bfa46b3667141912
BLAKE2b-256 73045e1a54457671761275c5000112f37ca31b0f907a8f1a0960a259ad9814f5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a5b75626426bd77532f324dd532f6d0c5c050c1e6ff5e35b0021daab1ce96924
MD5 70e3014345b2a471b1cdd0ae0697454c
BLAKE2b-256 14cc8173f264c3671546b70d34107a53d64b3d83d506d3133c418bd20b25a361

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.0-cp38-cp38-manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 31.4 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.10

File hashes

Hashes for grpcio_tools-1.46.0-cp38-cp38-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 9763083bb3f85f8096a24ae9472d79cea5a0a149757cbdc994744389118228c6
MD5 e89bcb9161e4df7a4e1ee3f1becfd5f4
BLAKE2b-256 ece2a158a8d6d8f3d6d0a42a47fe3eeba0a14dbd4705a10bdb4aa057a853cb9d

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.46.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for grpcio_tools-1.46.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2d9d4bca70f4153869c2376b8c8ab267dcaaa020045618f07f5a8e6968924335
MD5 ba6b700cabbe20595b7767549b28332b
BLAKE2b-256 4f2e790e69cae9fba90431f3c2985819684ea594b728ae0888b0f461966b3e00

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.46.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for grpcio_tools-1.46.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 696877e7eafe8c9b1b31c7c83c94da4095393599fa3ab37126e82ce23c4d121e
MD5 5f1adab23ebbb82c3df690152473c3f6
BLAKE2b-256 9dea25ae1320b2e5057304657f5727a838a0c2f48fdf509af4582db0ff94a2bc

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.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.10

File hashes

Hashes for grpcio_tools-1.46.0-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 13e24d1ab6d3f16fd482b19f19e119c9edffc43875420ed1f59fd5497493a7c3
MD5 bc553b7c2b3899a3760ae2ba2542a98c
BLAKE2b-256 4910c484c2453c2aa9a13c2052baf60286fc70f4deffd24353ebd2261c090ebc

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.0-cp38-cp38-linux_armv7l.whl
  • Upload date:
  • Size: 37.3 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.10

File hashes

Hashes for grpcio_tools-1.46.0-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 8037f56844a31e5f1b5c46d794e6511a6efa4d978a7e44a7f130d2b407aa3464
MD5 6629fdebd28541586f55ac9491ec22bc
BLAKE2b-256 218764328a6f003fa392444b70a3a58ef242cfa83bfbb1749a66591662c6914e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.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.10

File hashes

Hashes for grpcio_tools-1.46.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 779abb8499e2d48c3802b52cac6f25faebf80fb9fa9a7499b0f4bc2754f4ceac
MD5 4d736fda440463e4efa70ff367a7a62e
BLAKE2b-256 7d17f701edc9211b6ecbdc5787c3915d3b12a1c70382cca975b263ed8f8c47fa

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.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.10

File hashes

Hashes for grpcio_tools-1.46.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 e61dcad694589c477ed0fa0ddeb98de027393a01dd6808739e0fe5cee1337303
MD5 e529ca6497ba1e8a712bc7b74144e19f
BLAKE2b-256 13af30cc6c9120691fd60a4fb88eac88611e997a9b6356395201bf1af665d3a0

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.46.0-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.46.0-cp37-cp37m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ 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.10

File hashes

Hashes for grpcio_tools-1.46.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fdfea41e5693ac8b3d7d9ec1191fbe9f5e0a855e03db3b3482bf58094d763299
MD5 65d8de86c088425b4609e5ac691c387f
BLAKE2b-256 c81110ce21e2174fb7770997ad4405495323d07b099f03ddd867cbb57b0becec

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.46.0-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.46.0-cp37-cp37m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ 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.10

File hashes

Hashes for grpcio_tools-1.46.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 34a2c52a32e7109d70448e7e9ef7b6752880daa37bee1ab519df183d35044872
MD5 43a06ffa5517b9128b9c42cb5f8d75b0
BLAKE2b-256 7ba25710aa5bee257adae5ae92a99a6a5898d88a44bb5b1758399ac639e66020

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 74fd43bb395962d197f5bf85cda8a26d4108c33267f1ca1806f2bd91baccb86b
MD5 f259703411bed8812e7b5895812ab07c
BLAKE2b-256 18ad32a3a71db3f8feb2ac469f02fc8f567a751a40a81cc39aea940f8778e711

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c7f8d1e323151f0942ba8bfcaa63f1e93d0bf9ebec317c50970a8b2705e8896c
MD5 69f6ac4efd754620c9b39fe9ba19298e
BLAKE2b-256 c94862d04ea6a691216e3d82ca71abe8197537e27430683c57298b0e3876351f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.0-cp37-cp37m-manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 31.3 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.10

File hashes

Hashes for grpcio_tools-1.46.0-cp37-cp37m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 8184e5ecbb9f3a11cc0498f71d13dd2dafaec5c71d86e36e16539ebccaaf68d6
MD5 2e39da61a3b5824f66fcc9a70c3385b4
BLAKE2b-256 c9b539cf0e95aff5527acb835f8246a7f2fedb7d89b62029377a8b279a8ce485

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.46.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for grpcio_tools-1.46.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d112fb1a70a98d4d083b088e6f08fe0b04538f6cc3fb7265debe527f511167e5
MD5 9f194b4013d561ac26e8358b082dbe3e
BLAKE2b-256 8f9110fd5a1cd91354709d9fa5e080395debf79cbf2261b443a6edd76c4eb512

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.46.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for grpcio_tools-1.46.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e6da50d98f91921843c2944b427aed548726f0d246576c9577788ee82f4a1555
MD5 8e3c4ada133a6e828f457ea7e5a53b43
BLAKE2b-256 ab46650baec5ffad36c04d418bed0a532e06c6bc1452be6bf324668f1f4246f4

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.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.10

File hashes

Hashes for grpcio_tools-1.46.0-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 5c6f2865a4c896950fa1f7c2c9624b594f33fb1363ba299ccad6029a6fad0457
MD5 805f02d0a7b59ec7157c2efe33e8c002
BLAKE2b-256 643c8d40181faee8ba9ff5bc42240ee8f9015fc65e28919d50eb6139c4bdc688

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.0-cp37-cp37m-linux_armv7l.whl
  • Upload date:
  • Size: 37.2 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.10

File hashes

Hashes for grpcio_tools-1.46.0-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 3e8bbed22719dbc5e91d28d7052e19f4055fc64c5a043aa7607cac1d790242e8
MD5 6963bac9cbedfe4f3bb2d6c3c1375ac4
BLAKE2b-256 3e386d8e990a35cae6b1cae3ce6e5f20b76a50b058d194a7de20cf523896f169

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.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.10

File hashes

Hashes for grpcio_tools-1.46.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 6b111e079de15821e3d7184433857654c1ea7121b55998c6bec7ceb28e6c247c
MD5 50cb867879b851504bf25a93801f959d
BLAKE2b-256 2333546a6a75bf0165cad875f7b74f2ce304085c8cc40414fa8cbbc07f7359b9

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.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.10

File hashes

Hashes for grpcio_tools-1.46.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 9cbc8f5ad5efbe8d7cb294592335438fcb5914abf99c317c48b855db9a3a831a
MD5 f09a07872902505c2b5357042a14bdac
BLAKE2b-256 3920067d3e8917c01d9cc68413a046e9d3cd728623bcdc38566d29071fdbbe8a

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.46.0-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.46.0-cp36-cp36m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ 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.10

File hashes

Hashes for grpcio_tools-1.46.0-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 67e189b436172e4384f320435397afaee546933a3c1a5bdb868b4cafb7c2c5b1
MD5 c1efe69cfc22b540185ce5bcbf79c290
BLAKE2b-256 a3f16cb1d1d503a1212bbd1c5d9af775a0e6dd9781436a3bc42d8e1e0be9a198

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.46.0-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.46.0-cp36-cp36m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ 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.10

File hashes

Hashes for grpcio_tools-1.46.0-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 31c3b6a2c1f4619bc8c100d90470b701d8deb08fb5cf6c02fea1a23737738d17
MD5 42765dfaf0bf24ea5ddabf0454713bd0
BLAKE2b-256 7e0be0c2c9154a4963caf7e49a94e78e3d19dd987bc67229445c54c4b826d550

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3bf515ae4bff486550e9b860421db398d052b3734355ec3bca78ea6efa1aa5e4
MD5 47a8c48377c0f761404a31a86ad141bc
BLAKE2b-256 203be60fcbb3a3082cc5759739bdf24e4079cfbcbbfdc5ee5d0e5bbf0fcf0c38

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c0ae3625c281985517f41161db491063e4b0b17b7801151b4a990e3204e07569
MD5 cc0003fb1ad5db3afeabb6b8e5d6ff7b
BLAKE2b-256 9a5df5656b81c241297e88ce02bab61532ee1a4093090b6a8cbbb00b42164054

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.0-cp36-cp36m-manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 31.3 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.10

File hashes

Hashes for grpcio_tools-1.46.0-cp36-cp36m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 0d949951df9db47c4ee2c70a1b634683858655263e600c266aeb8618d10296ab
MD5 56dd6c0ac9b6d4414aa2f4f1154e2ad4
BLAKE2b-256 e0ece9cdf04ab8d4bddb6a3eac93c063211b72d53cfc47941e2de50fbccb9ed6

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.46.0-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for grpcio_tools-1.46.0-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a996aaefdfa6ea061dd4073a8a03273216c7eff332159f6984f8d64c54da84a9
MD5 58d4b5fccd58ea6348a4c85247424654
BLAKE2b-256 4d15a7c433b4f63c49cd7b5c9e423941f252891c1a92949e9961018685d89840

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.46.0-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for grpcio_tools-1.46.0-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b366bd173f452a6c16bcdb1aa59bd17601a48cc651e0765d4fc41e3b84cd5955
MD5 26ae7e2350348c27136f8182cc8e48b6
BLAKE2b-256 8186ad8ad4e4fce48821eabed34d6a5ee7718121f578545c1b486fb4cf589284

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.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.10

File hashes

Hashes for grpcio_tools-1.46.0-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 d6e6def12d2e12e5bcf64aee6d5bec4a093cf32538b783547a574f993715a416
MD5 a9bcd5c64c1b4fe25f7ba998a03e147c
BLAKE2b-256 0715159f87ffd32d13e4012581231d433307d43f44b370c27221221752161a9b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.0-cp36-cp36m-linux_armv7l.whl
  • Upload date:
  • Size: 37.2 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.10

File hashes

Hashes for grpcio_tools-1.46.0-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 ef4c8354c685f2291decf9bae7230fb0d9eaa3552b7264b615aa8c431c789d3f
MD5 794ed91a5cec8db93c2dc7cbb48ff40c
BLAKE2b-256 814aca5a3af07c9873717e5cb57bdda0a86546055fcf7accbc4fcaabd7525cc8

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