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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m

File details

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

File metadata

  • Download URL: grpcio-tools-1.46.1.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.1.tar.gz
Algorithm Hash digest
SHA256 d54d80a4cfd7da002893711af613c9c9358dddfdd27feea44eb902c495b09105
MD5 5a1c211ca1a9ba289bc907996b7a9d43
BLAKE2b-256 f299be726a40d301aaf5af15aa29a302833437f1d51fb436bb90322b17657f6c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.1-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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9dccfadfbba63c9d8d8f7de4aa484e3d01291e49bc17bde9ab40d9ff07ecd156
MD5 53d92eaa10627bbc404ac12e2f5748a4
BLAKE2b-256 d6b4a7b7f8cd644b5a929ff56ba1c02023a4ebd1a09daa34fede708ddba0f712

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.1-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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 24e5137d41df88e7a32bb3776f52a64490a98c064844026e9e4417350bd15315
MD5 1eb78f46b249f9e5c504367a4735b7e0
BLAKE2b-256 6f026d23de528d7fb41741111c2156e35f83fcb5ddb2c3f4b82b77d48a16dd8c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.1-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.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 774461be1d50a9ed58257eb2794f7d8fe94e850c42ddd447967a7ef5b7c069a7
MD5 7d688767737555bd5a6da8a3a47a9678
BLAKE2b-256 ee9ff12dbd99f2399d73d7d7a881f9ef3e76ac8c601fe42ef6622c4ec30ca1cc

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.1-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.1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 45fe8830a77f8b7c2a12572c1bf32f9c991996b77d3497aa9ba5d82d1a46fcf1
MD5 f6ffb21f2582d3e974465feded99f6fd
BLAKE2b-256 2c66bfef799d32ff7eb1229c53ea5bfdb3b7a9435b2814a5da33eb676fa4e529

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 df2948642b44471975a26eda04e6e265c2897e58d7f55d0b71ad7d2aa5595111
MD5 dcc343e6a9b9967625cec84fa9639c2f
BLAKE2b-256 b89ccd6930c045b5aaabfaba389a5fe87b73653f1a572d16ed7fdb4567fe9297

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 41f541c07720b5f42cc4ceee773cbc6f2811ca647c8c88a0f0df4498acc6b058
MD5 17253b4ad1d16d4a164867d49967a1c1
BLAKE2b-256 9efad2f04bfc048a195b07300b9207a6740085a32369f451ba401d82429fb8f3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.1-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.1-cp310-cp310-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 cc2712e36db64d345a14883502db3c4dfe7fad435f8c2d7e3e5988e7add6d5d1
MD5 282bcd94208fa093eb7baa0ae35b178a
BLAKE2b-256 aec9bfae6d907b43bff9037ef6dec74cb6f83fa674b5f757a570260a596d2831

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.1-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.1-cp310-cp310-macosx_10_10_universal2.whl
Algorithm Hash digest
SHA256 698bf579b58de7cfc6d858d3ec1f2028fc8ab4b495d044c0e38580b72d74d535
MD5 86e77d161ef05781dfb9e3be746d97bf
BLAKE2b-256 a3adf4707acad3c4d4d49fb5fe0c8e1a6bc65ec524c269af4cad205eddd84082

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.1-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.1-cp310-cp310-linux_armv7l.whl
Algorithm Hash digest
SHA256 d59a4e2316acbaea4492ff5c0f3f9860fd67a1d40fb2ad7959a035b5eba986f2
MD5 68092182562ea6142917fafeec7774f8
BLAKE2b-256 419decd271979246c75297c8f947f24e8339548ff7d7424cfb71d3e77c8bbdf6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.1-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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ed3f4ebc28a04fcfffedf252a11f05916ab890876a03e8860e94002173c438c1
MD5 8e36f7bee88347c13aeb1e22d81d11e7
BLAKE2b-256 66ab5d3893b76163386e44d9c20f588e86100e7fa337895864dc6a9b0ba58208

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.1-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.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 53caa9686b4b9f1810e89d049cbe7d6db023227cf8281f685d1be80526a33e25
MD5 60e9adf69340c89bc9b450557c057eb2
BLAKE2b-256 c163f2b29e8a9c45d19cdb1055ca34be3f6e84befcc29e0fd94c57f360965b24

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.1-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.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c25d5154c118dfc1063c2300bb46ba45dd190192cd3fa4b6a17624db05bab6a6
MD5 638ef3210a99d73197ba86d915214912
BLAKE2b-256 d72dc5cb6bc997aa25ea9904e22fa68c5a924f941b08d512caf31375f6c08336

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.1-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.1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b158044ede23a11ab84007e26e5d7bc44d59bf31215a51e3ac6332ddebba9c5f
MD5 3d718692ea8db138e26ee5dcda75649d
BLAKE2b-256 c14e0328ef0ff0389a5af2ab8c026c2f3f6f0023b69959aa93411f2b39e8167e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 26008be99b8067ce79a95266cd07a0b067d81551c85bb39307fc165fa2d10d4f
MD5 e6ed22805960357bbf669f232f38e3df
BLAKE2b-256 0ce4634d5d5972159d5afc5321bc144b0a10bab18a00fb9120cf66cce6c1afb5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7db2954a6db34f87301715aeabab2faee12c3ecb449a83f32e8a5c62c94b4280
MD5 6f3d6e908dabe7a4eace7b2401ce0b77
BLAKE2b-256 371206296ecd2a54f232b0c6e3cb28b211a9010502d26af36c60ea1ec2624580

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.1-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.1-cp39-cp39-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 0de7e014f19ffc1fd21b2b70ba940f8a1b22ff2b57ca6407e60f9e0b6ce0e4c5
MD5 2bac5c5de5f15f373ebd8377cbabfcd1
BLAKE2b-256 fcfb2db003c078474583d2cf98e93d835d302337643dd85a4639cdc70ef12354

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 25d2833e3980fe602ed48abe764f6a87c928a1451e03e5bb99358dc89a466bcb
MD5 8c4f18e17b702a3de5ad07ee7dcc2ef4
BLAKE2b-256 ae3e433e7e5ab62c5ac0080edb0509c4f26c8ca5f073b702fe422672c84dfddc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7794b271803d66ddc917fd8a22a447060f8220fde0f8eb8f602f18261f5d7def
MD5 f4fcf65f89eddb85ed16e2acdf26ad84
BLAKE2b-256 d1febe0b5a0b593cc9b851dfcc20aae6f1f1e8df54a9047e272134000a340177

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.1-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.1-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 fa523c2e921d2e73318232f30e3d5b773f9209606487cf56a0ede2ebd23514cd
MD5 06e870a84edf480b22cd57506e99eaeb
BLAKE2b-256 6fc5f7ea72432956501c8c6757835193e9fb3d599c9ed80bc90308afc1903016

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.1-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.1-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 31d57f9f86ff425391c8f65881d26c18c458c9ad6a9bf13e4eb5b31d22b4e2a2
MD5 7b1ee5b4f2375ba40e3eec6a4369b237
BLAKE2b-256 880e67d6c76c2d1b96d40bfdfe7e746464630e844838551da9c754f587821aeb

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.1-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.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 fa9b0d536cb2ec7b4bf24ed9418f305eb34de0a7fea0a8ce2339d32697327f81
MD5 12986fe7b6575be351b8478150d5fbb0
BLAKE2b-256 5c5a0a16fe7e12812ebe52afd218f24ab28afdf46488476525e672098761da8b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.1-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.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 8a49727e9cdfc4bdbe275a59b469161c7ee385fee1af111132fbb4b1b4f49290
MD5 de56255e31e01360b0ba0a3003b4e384
BLAKE2b-256 dd3c5ad035669f60b241693d58f2576835a26ea2e994a09b2c77bffeb24a8758

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.1-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.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3340b512284cf4a8106f5a6dcc34c23c403da94947b0c119a7c32afef5a7aa1d
MD5 5a7e083ccd0be930e7d6a0248339f96d
BLAKE2b-256 cbaea1754a09976e7c016578f7a2105f4c22a9c9815b24f444a01e67f9f9f76b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.1-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.1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ef268d63e5d18d31579755a5511ee30979b56db2229a74ee4841668023a67f0f
MD5 501ce01ca66a1baa8a3fa0906d501657
BLAKE2b-256 bad7d58bcf1d569fcc047c4ea2f570058038f39bb5c538472671e4427122f843

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fbce0597f699dfa9393b889c9ff0845046f64b07e9d3c057afa201d6cb688a34
MD5 676cf732b78174df71c703c33671a543
BLAKE2b-256 f63e56bbdce585bc02be68df06506125858ceca44822b490c2ca544ecadfe7b7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e787b0fddec8e174e657ce05fd5117426cf5dcc19d04c4596cc98b1970c9cfed
MD5 fdc92c0ee9330672e860246d3a74e22b
BLAKE2b-256 2445d79d9e3985ca9ae7979a0a76f07e0d339ed2500a36b87ffce7afe272e2fa

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.1-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.1-cp38-cp38-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 30e7e93b7efa55e5ca815401edde3593303d2c786ade9e1b5955f0b3b4ebb27c
MD5 b6f2bb374f52bd6ac70a5c65790a1aa0
BLAKE2b-256 cce52a877d3af36c2c14fe06dde7489fbc0ff95a5d6091bf050a201606a66f1f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6bd11766f2919b613c87d711500a94fa71c7333e4721ebe70311a0f9fbe29e7f
MD5 750f181cd183198a6cf2f960736bf65b
BLAKE2b-256 1e66ba2256580e79acc7a9762a2ba242bd9f722097caa2aed0b95663e6c2a7a7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c026d86c91476e2d91f894a188e3933b89af4970b72fdd742688061a4e8ee366
MD5 1b1c425cbec5e8f3a863bff8f3140879
BLAKE2b-256 05dc54cdb234786ddce9c10e3088907bddc385d33b3d0e606e98cda47cc0e250

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.1-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.1-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 9c240fbde2e0c3f725b8ccb11c8bbf6db16fb21e8632b9b46d8fa44e103dc942
MD5 26d7c5a02a51b1fdbec270befb7b5dc7
BLAKE2b-256 3e058217a0a51279c9e438f0bcfa1afd73523d7ceb929a7fbed0cd207d13a10d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.1-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.1-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 94239ae2d716f62ad672d9f2c8ca7344d0046a42725a178bce6f3db8e1769ed0
MD5 c208f9778dd8373c428d8a193821602c
BLAKE2b-256 6273b132411528cf0b58e5a3bb3550db493a8b51bb259a7e39958160432c3cd2

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.1-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.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 7d14fa74efa956e129e3360f4a36ca8778da6cfdbd6f4e6840441e1f2f8e50ab
MD5 d7c80d419eff581167622b9f48b2396a
BLAKE2b-256 692d98d5ee1fd7f6439b4fc3cae28c401bcb24a836b9ed536c782de7e4b56bf1

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.1-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.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 0739385b36169a20fe14364ca74478b8624845e4e01c7ae7e69f0639304f7a65
MD5 79dbd859d1848d32da00beeddac46263
BLAKE2b-256 6e7206784a0f6da792fcf2107b3a8eb67d43925b62004a468218bc9d13c270a1

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.1-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.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0529e33c1de2f88e9585b664b634f0daa273bb3defe107f5af2606f74b2a1c84
MD5 99256f838b0ecdda5c87cf657e355ec8
BLAKE2b-256 920ea384fa33a8dde4a3279c7312f53ac90420d76c16a0faf603d708136cb6c3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.1-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.1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 64d1bb16e96a53f9f035e96187f4c2653ee0e33238247f6102da8e5224481283
MD5 e758f617ffb93b3532ead65b817a1d89
BLAKE2b-256 7a50ec3a943ae1ff158f19744e53693560ce498fa6bb00f182328679f565b8f3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cb8bc9ddf7e89928f076ba6a1255c8b718122846a7ffe3b1354944a91aa1e8bf
MD5 8be6e3c4035c5649335d146ed61437a8
BLAKE2b-256 a0dd6083983e7d11f8f70be3cac99ffc86bcb1e55c3d1f85eb6d48466a67b600

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8e50bace6f9ee965e34e05cb404071c6e4b6151e01439db81e2a5187dd2edd0a
MD5 ccbbe41deda365945d761614da1cff7d
BLAKE2b-256 fa02e4fec36d25e10a6c3389f7ab2516f7cef65ffaebfe8111dd809da029c157

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.1-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.1-cp37-cp37m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 ce01113910e3a1a80a031d18d1730c971589084b49a8bbce3b312deb9c444928
MD5 ee39554ee9447373a3c50fbdcee72da1
BLAKE2b-256 9534ab4b02b635479d01fe74929a5a401d7318bc5e939c4a877684e3deddcb1c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 25d0ed7ef49e5750a976ac51dc0aba121f052301dd90ff0a7b3dfbb0de097610
MD5 849dba661e6b7e52553b34424ef97e6b
BLAKE2b-256 2b852f1091eaba81d6e4fba3817da4de0d28323cec09f7012488034b4606e893

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3056adde4dba80c0b3f1b2ec4cf0b0ce6deab0b8064716a8bcf359779e8562a9
MD5 7cce14a4b5bf6183e76fa509885ce1a2
BLAKE2b-256 47a21e45dda80c3e1574a1a906e8e909f306e340566806e5010239cf7a57876c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.1-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.1-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 bfbb34e5da01abde8112491a2d3b96bb4e17aa3cde5ca4f6fde90505d5704994
MD5 e87ffd94f1971ebdc0f16a986d9c8607
BLAKE2b-256 b950ddceeaebfa31de2efa8adec7b99d2fc163edb8ec8c1a82c1144906c63520

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.1-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.1-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 e63b2c4effc26d817da41c6ff28e10f522565422ee273fd573f58256df81032b
MD5 ae0d061991b6373ddae19d40d4f64513
BLAKE2b-256 d4b31e9d91a806e86b232bdc42f24bf82ab8845b8d60c1dd764ffd794aa1a808

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.1-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.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 227534af22475a076e5b2a7990a40a89bf1bd1bc4ac842128c51bbcfe057715d
MD5 6229d18e50be67713fd192e60ce88fb4
BLAKE2b-256 d5550a1e40a5a72c875e0cdf562971f37109d0833d72dca7690999692a87e71a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.1-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.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 0dd48913421eb995cdc0cb52c210c10668baab7074147679db96cf572796f75b
MD5 a177bd91f123564655512b5918602634
BLAKE2b-256 192c92d8caf40889047471cc6af603901397b41f9bd84721cce507f00613f5d2

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.1-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.1-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bcb8bb53b1ee6317f29c9ecf93dd290519c0ace7aab7b925851a3cba397f28fd
MD5 bf62f93574d3b5883f4165bf540af911
BLAKE2b-256 4e647f0977acafde2e3efc70b76e6dacaa24a5959a2f06085aaafd3a2da9c7db

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.1-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.1-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e70a5cd01ff71a228cc3d38e3cb056de52aadab5c0050b4255eea0699b5d50a8
MD5 d1524ab40a12b9fe22764d40874e9d54
BLAKE2b-256 257bf3ac496f369f8f95a3acd85e25e738e13cc8ab43e948fba95e65dba52fb5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b38861db8ac93bb61e891c77d3e4039418217298fb148f430cd60f74a19a0f1
MD5 fbcfd3581b0504c9fa4144b0a73539c2
BLAKE2b-256 42e9ef60800bd25e5942f16ddfb2121d77b982dcf39c4a318a7596cb89392e8d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 47e335bad24cf6b3b2137e3f41cbc0f987806ec294ee106ec313f37d2e296434
MD5 6800c926bd23bee2692771d11b3293e8
BLAKE2b-256 f07d086a4bd19e19ea4562e0da08a15fbea9923fd1c980ec8bb69b46deec7421

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.1-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.1-cp36-cp36m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 cb627cbb5b143d34aa8d260c6e75574f2d5b47a39499501741c4a391a57c35c6
MD5 e7e07eee423991ba7fd22c69b9b9c42b
BLAKE2b-256 e4364eb94df1659e9ea7a1ad3c48928180bae5097b6bc00dfaf2299214bee083

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.1-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e1a1eb453fd595573e892014044d815f3fb230ecd06a0dff3ceb67c325cf974b
MD5 2351d3136177927dcdd96e21eed50b3d
BLAKE2b-256 1651d12cf524bee5b18869a5e3117ac8af7c33a2008e8ed37919161b77841fc4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.46.1-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 83d70164e4f86995cdf0b43ad16b0afe038b8ce42fcac1be637471371c1ef60c
MD5 4be1c12ee097d06c314967a7eb3e6ede
BLAKE2b-256 fee20687184b3e597c21f01c41e1da7ca90484e8f58f4acdd6ef86888722526c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.1-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.1-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 18ee79a031f6537ce2fcfbb0a092e670e554d8db4f62ac0c9c4b1f65ba0ad111
MD5 2b64040c51720378c14bed000ff60068
BLAKE2b-256 17eada9b33c2e8aca2438707ca6fc848794a3cb089a20a259e9167f526e34e4b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.46.1-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.1-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 9b96b53e1bdb26e30a9fb5eedcf835b174d020a7d8461ec6b813679b224c997d
MD5 a9be85277bf5db948bc76bc59d362fe8
BLAKE2b-256 a21bac6f559c848a25e2c0243af8cedbec16cedb9996a574bf33724179ff26c4

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