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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m

File details

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

File metadata

  • Download URL: grpcio-tools-1.46.3.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.27.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.12

File hashes

Hashes for grpcio-tools-1.46.3.tar.gz
Algorithm Hash digest
SHA256 31fee436ace5b3bd950cc3a8e68d6b84de1d6dc755959db7badc3470cdf22f70
MD5 d7eb5f025140182dbc957638f6602b89
BLAKE2b-256 93077472b79de02fb441219c34b89e302d6c4f990e1e273c95b4b0b86cfeedba

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.3-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.27.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.12

File hashes

Hashes for grpcio_tools-1.46.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7cc27ec93aa105dcb86acc9eb4cb67fa85420f1bef2fccaf69955f3ee82028db
MD5 caadc3453c797cee5544bab404f3b756
BLAKE2b-256 d0f96199a5ed3c8a8fcf42372fbb22f3d32402228206bb84d03ab96e361cf928

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.3-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.27.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.12

File hashes

Hashes for grpcio_tools-1.46.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 bc630ccaf97eb68ca814305f408a8172c6b0bb5ffdaee2baf16be4da0b704161
MD5 9ecede64d4e2ccda4158bcc5f70a3570
BLAKE2b-256 445df499be5f2dfeaa99be7b79f6daca680b4cb666c860d677382e1c1ed7b5ae

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.3-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.27.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.12

File hashes

Hashes for grpcio_tools-1.46.3-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0bb48a86591d63b34b12cea2468efc96886aa06ed404707a6fe24cd18032ad45
MD5 69c0e31d9bf50e51612d17000e6d9156
BLAKE2b-256 a5621c932cb091f900061c4f7913f82b09227f0b4cd8aae3f46cbd88e25bb61f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.3-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.27.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.12

File hashes

Hashes for grpcio_tools-1.46.3-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b10828c9f62cfffb9aad65c5960cac5b65b5c879b29ef7650b6f253cd1d19b37
MD5 27b75f846e286d95f73ab8f366106ecd
BLAKE2b-256 0616f0e223ec644acfc52a25e5ef1547b4baeac8fe4b8f4cb16d61b8a4907b9f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 140288c4d9d1005fcb9e88ac5c1a37973c844bdc180fc34a263efa7aceb2c8fe
MD5 01e51da7459c805e4ae6c0938bc5aff2
BLAKE2b-256 367481f8a45c49d4bacde8c71cfb64974c1c44b814c9cb2c6a4afe0b517c5703

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c0f9748b8d585c01151ca8178593152f4679db9b8846f11d0e54aba64b7b72fc
MD5 029a7746befbbb7990c53934fdd0a4b6
BLAKE2b-256 2157cb8f2d243c69a449fb2dce3a76d5c1802c6114c996c2b44028c76f92813a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.3-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.27.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.12

File hashes

Hashes for grpcio_tools-1.46.3-cp310-cp310-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 168520ee3a12002806b7436276bdeb042e4003cc8efba2c82db82a4447d6b3df
MD5 ea64fbc9540ddc70afee0075195224e2
BLAKE2b-256 4144ec475e1037769fe242da00aa62d7b8788644af3b1df1d75884dd1c7e5013

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.3-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.27.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.12

File hashes

Hashes for grpcio_tools-1.46.3-cp310-cp310-macosx_10_10_universal2.whl
Algorithm Hash digest
SHA256 c51266f343c3207fc24bf954619992bc5173c93b052de9d90ecdf1d3f42cf13a
MD5 63f8f9c46fb629efb7a6408506848389
BLAKE2b-256 ad990678b276d95b9b51780d3c0ee4a196bfac914d6db67e1970e57220289138

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.3-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.27.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.12

File hashes

Hashes for grpcio_tools-1.46.3-cp310-cp310-linux_armv7l.whl
Algorithm Hash digest
SHA256 5d30bfb595e2ef767082432b17ca9238a3a59c2fd3211e19f29700448d1c9162
MD5 bed65a2b9fc957e4f5006512dba884a9
BLAKE2b-256 07e2acc74eb722984c352711041ac3eaaf486482dab355ab9ed8b5c3b7464d05

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.3-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.27.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.12

File hashes

Hashes for grpcio_tools-1.46.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6533916914dc80837d4caa1cf1aec884cc0390ce0543c4091fd817b2e87a87c5
MD5 4dc0f1509a7cb5ef5fbcf6f6414c0bd9
BLAKE2b-256 cb26e57e540960110bd21909271c7653887233ab65b7361f4f58c871f19982be

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.3-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.27.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.12

File hashes

Hashes for grpcio_tools-1.46.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8918bf43be899b5967aeeb955bb1a557c6f753db22456505091482511021b87f
MD5 2ac7064826c91eb0e8cb118dfe1d7766
BLAKE2b-256 c3bf68d6fa2beca96e0e94c16c410e0faefcfde0debb8d712493f70fd726ef66

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.3-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.27.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.12

File hashes

Hashes for grpcio_tools-1.46.3-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a78ae1e9e478bd433999522cde57f3d6e47bfa498de98e35f827b5ea83f87c45
MD5 54218fcb5a49d6d9fb1afafe2a232ecb
BLAKE2b-256 bb23e100ce74062bbdbff806acc864e74045db5387726df1110637a155c97631

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.3-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.27.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.12

File hashes

Hashes for grpcio_tools-1.46.3-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 eddc8509d1d22b46d57cd35284cfe4bee8af2c31693a40a4244b9b2f3795aa36
MD5 497588b6f66507b5f8b3bec4065b3167
BLAKE2b-256 e795f814efe54eb62c4165b20f72744215ae494b85444bdb86c1142a103ef78a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2270c63905fccabc50582e2a6e22700f15f87274e651a0b491771a75c9e68cdf
MD5 7616ff94b83a6ce42ddb70302727ac25
BLAKE2b-256 0216f63a9abdeff1345da9b7bd7e92b9078178bc062f04a998b8b5ea5eedcd13

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 790ba7e1de54480c11b70115dfed76dcf79db929b0f808314014a58a8163d07d
MD5 7ce55e3b01c3ef9d83c1e79341640a74
BLAKE2b-256 9f622e2fc73387005f539b288623c0f597881d5989a625b159671b8dc550074f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.3-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.27.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.12

File hashes

Hashes for grpcio_tools-1.46.3-cp39-cp39-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 1bea61acaab74f0ba8a578e7245085fff5021e44756a68dbe83407338776422a
MD5 add1b36359760ec68b331e2f51bac00e
BLAKE2b-256 bf5b28f40b97fa2bb0f72dc5e32fdc11971d756c3d14659660db5c48fa5db2b5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.3-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 cd3b9bec82650a47eb8c5d5c25479fcc8cd658deaa444fb8fa61118794b6a8c9
MD5 ab75695c58a2f3faa2e23259fd329104
BLAKE2b-256 05034677ea23561666a3ff0eecdbd37aab9b032737ca31a726df0d420939ce4b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.3-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5466fa708d9ef9980a67e72f839d24c545b0d57d976b4a1cbec150d7d90891c4
MD5 a3f6a6128706af3620c395b3523a317a
BLAKE2b-256 e21fe77aae70eb1c6b5178f0fdff66972944ba5da17a6f7ec8d7c419abe9c648

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.3-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.27.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.12

File hashes

Hashes for grpcio_tools-1.46.3-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 8e472a2ac4e98a827fcfad719d828dda203d21e63a70f7fbeff0b472d9fb15d5
MD5 8dba6ca6d4b9a2440f21444db88bfcec
BLAKE2b-256 4d7581b74cb05b81a06a48e4c0e259e735eec57a206400446683f947ce743ebc

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.3-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.27.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.12

File hashes

Hashes for grpcio_tools-1.46.3-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 d4dacd7bba601d00a5f9767b3ea58077ce91c2467bff977998b818f699f9a5ff
MD5 7ac8d7f7a572c21f71896ba813fa4559
BLAKE2b-256 ffe1b1fe2f287feb1c11c7a40cf77b350301335b70774cfb3a1a867c3df58c98

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.3-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.27.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.12

File hashes

Hashes for grpcio_tools-1.46.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5a2a1037c0e5b9d3d417640ad233f9aae8a934f01bf54d79dea23ad53282f004
MD5 88a549c247dc2b521d88e2e615f2d9bb
BLAKE2b-256 2be2766f4b42f87f7b661a104676b474704e5d3a673db4549a67c06c4bc95153

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.3-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.27.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.12

File hashes

Hashes for grpcio_tools-1.46.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 7b29f82b0f5cf1410f8d4135c20653264a91d156a15394a7b3df5cc4ef4572eb
MD5 933db47f23e33471dc42e76625cbf622
BLAKE2b-256 ee241fbd81bb86743c69b2bf7837a38db5e0962dd8ad307f2faa6f495d511b4c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.3-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.27.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.12

File hashes

Hashes for grpcio_tools-1.46.3-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 21bbbcee52c3a1d694d4f29bafc197a16274294ee6bb33f913398f9f1bc23f2e
MD5 bc935af89f913af0875ec8de68184dc7
BLAKE2b-256 81560564c260c5eebdfb41c6f604a6a137d8da427a1e5e42d2df7827b414f41f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.3-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.27.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.12

File hashes

Hashes for grpcio_tools-1.46.3-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 af9ed199b9b02a3cc66695b1d89b512084444fedc1e9240258cadcc36e1a9071
MD5 28975df7094677b341ef618083cf94d8
BLAKE2b-256 bfbb932f82f123d287d867a42d0d19f6d570c512253157a7c85da3e84e9e2cd5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 600ed9e6600ef4815746052833188471c07be38d14f000617791ed1ec1664d53
MD5 95774a4f2f4135e79e151b9ea9d9c13a
BLAKE2b-256 eccfa223db6345136d28a957dd6e7817996328818d91a66e31b3919de4ac7b54

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0395647f41561a00e5dea633b8171d0597899eb8649dc5bf6a6a0597f9848769
MD5 f74d901d57c3b0da08081a3c18bdef77
BLAKE2b-256 7599e18a747b834b482b0c001b3cbde4201d00736e5d88ee4a7e31b33315dfc1

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.3-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.27.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.12

File hashes

Hashes for grpcio_tools-1.46.3-cp38-cp38-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 21a714df8b894d4d0554414393db6616e20a25d44c7356c545c23c922dcd4e17
MD5 e1cc01102e95673f8a34b21d66841153
BLAKE2b-256 f2fe2a46a58bafabcaa3497f8804a750212e925cc5cef66ab74b420b8d49d3e9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.3-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3c6a510c29e466c489db8a3f24cad4386f5b0ca7223af93d821bc7ddfe73b172
MD5 d1d6d4861e47ee520cd77351d2c4339d
BLAKE2b-256 936739a55cb712adcc04b4fabc8f901d42457dfa65afd7d4360d20f709b28777

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.3-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 07c9aa1a2549569dfa2a25f495543570f4753e96b99fbd46eaf7e2f3d1948cc7
MD5 5898283322765e73a2f63da9a49d298c
BLAKE2b-256 fdebf454f5093c9404eaa94eafb390c54c2c81d27b49bb5679680e1aa19ba5fb

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.3-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.27.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.12

File hashes

Hashes for grpcio_tools-1.46.3-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 3721e8c5490f7c015b5961133bb5b605a3d65eb8aa873506d3291f1216e28b03
MD5 5d9559210cb8504773cead2001f8fed5
BLAKE2b-256 a0ef125e231cc13e0e1416e35bfc2060d36e5c9069dede6d702a759bee70ca70

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.3-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.27.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.12

File hashes

Hashes for grpcio_tools-1.46.3-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 7a2c6e847808141ba88e5f45bda76e3d9e5e9866379496d2289e3892fafdd201
MD5 873ee1d39ab22c0d97aa2df3df115cc7
BLAKE2b-256 0961a2175b349942763d93e22b21890086d49e89959fbe4d4a8978ed2386b6c3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.3-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.27.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.12

File hashes

Hashes for grpcio_tools-1.46.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 d8a73c64cd788a7ba597fa8878b4faad928d3c40981449a40e35000c2639d702
MD5 d6372a25c3d563d4a99f8bbe24936062
BLAKE2b-256 0bff027ab7af28d27c008b55b8be264c1db0ade1a4c182367df40addb10c8c36

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.3-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.27.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.12

File hashes

Hashes for grpcio_tools-1.46.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 3840304ca4ca9586978c790a5433bf14a2d1cb234274dd095cd3673d08f26f07
MD5 516f593915ba0689a7d21cf318a6fd71
BLAKE2b-256 bda72b7967e749ba88be3958db2a3d94c9b1a1090d869f483a691483ff1e06b2

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.3-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.27.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.12

File hashes

Hashes for grpcio_tools-1.46.3-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 15c26699c2c7188010e0dc579ef1a4fba02cfef12bfe56028f73b58feee61d30
MD5 0d5fb5503296b980d7a063aa7249f07f
BLAKE2b-256 e89ff69021f1686b2e1cce9826c9c8dbae4d4edd54a8425351959af79b2161c6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.3-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.27.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.12

File hashes

Hashes for grpcio_tools-1.46.3-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2ab51956b500ebe5718024f083513e62f777f1812e280959e85529730f863e3c
MD5 33bb94186e219b8d35da61131bd3b793
BLAKE2b-256 56fa61e6a381e248a27c7c006ad3042c4805e254a71484dc52f52a5e3e99e121

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9f781cc5f1bc3d70d62f2a2846ca1de588ed75513a39674dea78cb7a4c52a5e9
MD5 19934c4cce49f4fbd38d8ade9bbe27f0
BLAKE2b-256 b353e7f63b53f276d8d0aea642ccf247a42e742fb094f7834b892b5dea2ab754

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cd4084dd54bdeff97cdf648603fd4c63a496ebdf35455f6fc3ea3016231b1e41
MD5 425722cf97ebee8301956e1327f88eff
BLAKE2b-256 f4834cb8c7cc5dd69e5d320ca6602f944b659cd9b3d7f9b2d1c7fdc1cbbe6068

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.3-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.27.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.12

File hashes

Hashes for grpcio_tools-1.46.3-cp37-cp37m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 1ab7aead75c794a73cfb3777fca7cd8e234fb15256cff1de506f41de453693a9
MD5 0edb588316fd6a00626e0c122a51e9b0
BLAKE2b-256 232e6aa48af6f20838a821990ddc0c728936982b3d7acf5560d96a37dadbdb0b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.3-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0c455e883e2bf0ee7cc3d0778f3b15dd7616e9a68db6fc4d36ad23d6be643035
MD5 af145dc0916cac334c9145887fd8bf66
BLAKE2b-256 1c74ed8ffcb1d9eead5b7d5783a4c8bc19d6a88b006852fbc052ebe4a4ca52e9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.3-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 14b86251ed61133f860b5182801f7d8ac5371ea7a32a60aeca96b3f6d7be56c9
MD5 1e78485e0aac523b9daf253312d8ac36
BLAKE2b-256 c51a6062236a85775ae6748eb0dd7b9850d111e269001d41cf1e5dc6b2469b69

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.3-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.27.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.12

File hashes

Hashes for grpcio_tools-1.46.3-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 096f0901089055f467df7133403a1a1ac782b2a078552ffa51215f5d7a064643
MD5 092921db12d3f20c3a05f1209128350d
BLAKE2b-256 3860a77bfeb182bbb879da849689766408d2330355eb8562492e15545cb65ac5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.3-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.27.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.12

File hashes

Hashes for grpcio_tools-1.46.3-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 a1c2f0f1e13c185c381ddbe366f186a5cf6848014990ca3b8a3411dc06db9a70
MD5 02419285f36e6e086ee2541e3d69a25b
BLAKE2b-256 87d57afa8ecf6e16f1b01693b855e56d80fb95fc3b8f6d11a00733202e630a31

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.3-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.27.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.12

File hashes

Hashes for grpcio_tools-1.46.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 bf1a4b9f7ba0d39b36ba4759d00a0bb51603a63cea532c5df07ca04db41ddaf9
MD5 e17ceade94d893f38e1325a359238849
BLAKE2b-256 62084f24543fcd16aae75287b632c325afe46586c67b9c36d65a086993940b03

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.3-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.27.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.12

File hashes

Hashes for grpcio_tools-1.46.3-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 e247d3b06b441f5516e9ffbfdb83ac15648965170e184d9b5950af61e5976648
MD5 69ea739e7f89676d8659c787602d3a7a
BLAKE2b-256 985a162a14c1594c8154a2301afe98efac9a2e6876b76cf11e0f1d6c7810f65b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.3-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.27.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.12

File hashes

Hashes for grpcio_tools-1.46.3-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 227e2bbc28519a384a064802e239a0231859a108220ebffe10fd9f9a63a1af16
MD5 836b5daa305238105f702d5f34755e6b
BLAKE2b-256 937af83c6c723a7e79779bbf24d30815ee24428364f8ff01c565733a186cdb74

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.3-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.27.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.12

File hashes

Hashes for grpcio_tools-1.46.3-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 920c57d342c8f9d877679c046407cab1c98a769c196fde35c0c5a14471ebc931
MD5 9797609eb3a35143c02e8202c56a81e4
BLAKE2b-256 034e32d8a3825f17373661080b77d2d35ef4591810f1bc9677b6c7332a53a50c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e8b37f6ef9b15349c5a575a0e0add11892bbbb107e0f21d5da45adba336daf05
MD5 a903d7fd3748eb486e0a39c2d80d2b0e
BLAKE2b-256 36b1287e0e28770352768e619aaa435a489f3feea3c2e2f174a423829e3b2f96

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.3-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8c3a5c279b1ffbb5c90fd71d8ce94b1aa6d43b1264d086fa553acc825149bef9
MD5 5abc98529b29d2b120eb3ee9abcaa40b
BLAKE2b-256 3d0b02c30374c5008c11c7f3525db3d1572d98e287826c447e60fcf5743086e6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.3-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.27.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.12

File hashes

Hashes for grpcio_tools-1.46.3-cp36-cp36m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 1763fc1da10d8b505f706d8147499f199cfa55868f7372a0b7fb198378e0f9d1
MD5 d3abbee9958cb7695df0eed157da0d09
BLAKE2b-256 2409aa845deb396d2d00445f8518a6aa4980c3be2860422f0e5ddeb86f6aa276

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.3-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 68442c23892478bd6ab324f716e0a6b611fefd98c67f18cfb4ef6c63bce3ab47
MD5 26a6ebe1b7efee0a784fc85944757c2c
BLAKE2b-256 4a51183a23938d082d0512bdb2667b15c83e5777ffe5a777f55337f12e1e46e4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.3-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 36622a56654d2e38b9c323f06786427143e2a44356d30eca5f0e663a58f1d5b4
MD5 2e884e3f9afb969c83c90475748892d3
BLAKE2b-256 79f2b81e3d813082e11e429aa542cbd86e53b82bf480cedcbf2401ce40793452

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.3-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.27.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.12

File hashes

Hashes for grpcio_tools-1.46.3-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 fa404d7c9cd621836220f3b9cb593eb2c475182d5c768b449407506b61f91159
MD5 df0924fc96fc50ba2c02a43dc36e37bb
BLAKE2b-256 4305608ee1dc40dfb2fa566c1dee9e94eac4febc06ebca2bfe455d0991707bf9

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.3-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.27.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.12

File hashes

Hashes for grpcio_tools-1.46.3-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 83fa1aaf052dad33000b73a865ad38e7b19ba4ecedb374cd0594824d27aab3ba
MD5 b5344121248641f38620b56c947ea90d
BLAKE2b-256 6e413e516c81341b367d7149c2a427423d8bcc0b8d40852780019d6b1c645c66

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