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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

grpcio_tools-1.44.0-cp310-cp310-manylinux_2_17_aarch64.whl (31.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

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

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

grpcio_tools-1.44.0-cp310-cp310-linux_armv7l.whl (37.3 MB view details)

Uploaded CPython 3.10

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

grpcio_tools-1.44.0-cp39-cp39-manylinux_2_17_aarch64.whl (31.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.9 macOS 10.10+ x86-64

grpcio_tools-1.44.0-cp39-cp39-linux_armv7l.whl (37.3 MB view details)

Uploaded CPython 3.9

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

grpcio_tools-1.44.0-cp38-cp38-manylinux_2_17_aarch64.whl (31.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8 macOS 10.10+ x86-64

grpcio_tools-1.44.0-cp38-cp38-linux_armv7l.whl (37.3 MB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

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

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

grpcio_tools-1.44.0-cp37-cp37m-manylinux_2_17_aarch64.whl (31.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

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

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

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m macOS 10.10+ x86-64

grpcio_tools-1.44.0-cp37-cp37m-linux_armv7l.whl (37.2 MB view details)

Uploaded CPython 3.7m

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

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

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

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

grpcio_tools-1.44.0-cp36-cp36m-manylinux_2_17_aarch64.whl (31.3 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

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

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

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m macOS 10.10+ x86-64

grpcio_tools-1.44.0-cp36-cp36m-linux_armv7l.whl (37.2 MB view details)

Uploaded CPython 3.6m

File details

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

File metadata

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

File hashes

Hashes for grpcio-tools-1.44.0.tar.gz
Algorithm Hash digest
SHA256 be37f458ea510c9a8f1caabbc2b258d12e55d189a567f5edcace90f27dc0efbf
MD5 f6ff4b03a899e9e7f894178d216a5b6b
BLAKE2b-256 533ebdb69af20f03ce1ad54a65625302b137d3a040958f214cee5efa3ca0b0c4

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.44.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3e16260dfe6e997330473863e01466b0992369ae2337a0249b390b4651cff424
MD5 8006e855d4af30803e99c7bb3d572c9d
BLAKE2b-256 ff921d3071b330af8405b0df7945eb4162546a0ef9a7c8fd1a68baba53d994b3

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.44.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 90d1fac188bac838c4169eb3b67197887fa0572ea8a90519a20cddb080800549
MD5 3ef4b7be88b6d43b4346cc02e54dcf8b
BLAKE2b-256 d64240375915cf7396b1d68fb87357521984537459902de340a0bfb0c8bfbd73

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.44.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 121c9765cee8636201cf0d4e80bc7b509813194919bccdb66e9671c4ece6dac3
MD5 2b4b69608fdfba730adcc1cc610ae315
BLAKE2b-256 3c080461a640d172067e4e502458a22168cf67ebf492b5ca98d0fa4a5c23fc35

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.44.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5caef118deb8cdee1978fd3d8e388a9b256cd8d34e4a8895731ac0e86fa5e47c
MD5 8379ad1a96474f49e889760396f0492c
BLAKE2b-256 c741da1269cc98dfac2eb7c5f3ac7438ea5a603d49f5a0f99b2ecf159ca25f8b

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.44.0-cp310-cp310-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 65c2fe3cdc5425180f01dd303e28d4f363d38f4c2e3a7e1a87caedd5417e23bb
MD5 28fe9df4d6de1831fb64ebe19eb822b5
BLAKE2b-256 3845e0d068847b0f2a0b2921ef557c055d9c24a08860701e80d07a677a2b1221

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.44.0-cp310-cp310-macosx_10_10_universal2.whl
Algorithm Hash digest
SHA256 1d120082236f8d2877f8a19366476b82c3562423b877b7c471a142432e31c2c4
MD5 8bc241afd7d131c33c0cc926c7b83f34
BLAKE2b-256 ecebd962c9aa400ef53448152db006f3cf5f5db9d528fbe1ecafd55b7c37ead7

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.44.0-cp310-cp310-linux_armv7l.whl
Algorithm Hash digest
SHA256 9f58529e24f613019a85c258a274d441d89e0cad8cf7fca21ef3807ba5840c5d
MD5 b69c85477cf284c5697fbd7324b9fb41
BLAKE2b-256 a7fef5505fba18ac163e102f4e27fafe7303adedd2a193e618d39392d404cf9a

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.44.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4eb93619c8cb3773fb899504e3e30a0dc79d3904fd7a84091d15552178e1e920
MD5 70a852f53d2ba23549ccfc22addd1836
BLAKE2b-256 2d903d72a63bc63d8555bb62e2eaa25cd2c64aaf7c0bdc666aa52feca231d127

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.44.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 fb8c7b9d24e2c4dc77e7800e83b68081729ac6094b781b2afdabf08af18c3b28
MD5 1387f9d17afb52e27507e2a1ec45e1f5
BLAKE2b-256 0edfde2066da4ce5a8e7b9ca4d6e57a3a00637729b4421945ff38f861be5c61d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.44.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c04ec47905c4f6d6dad34d29f6ace652cc1ddc986f55aaa5559b72104c3f5cf
MD5 370426068f8a2ac100f1f1975802ac7e
BLAKE2b-256 674f221056457ef5ed23f2e00530cc561919ddff9d7e3b86a38fa40d07b1a314

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.44.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e44b9572c2226b85976e0d6054e22d7c59ebd6c9425ee71e5bc8910434aee3e1
MD5 4a36eb92217284eab615edcd8625e75d
BLAKE2b-256 fa5528bd79134e4d00cfc55d1086f0a1eb8fe7ebeb274fde878bef147f1ee9f7

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.44.0-cp39-cp39-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 3c0be60721ae1ba09c4f29572a145f412e561b9201e19428758893709827f472
MD5 2eb581078ebf8b54eb61ea1f49a2850c
BLAKE2b-256 11c915bbd8566abebbf47d63032a8fc3337ad43511452bc8ca3df31ee9a69beb

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.44.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c3253bee8b68fe422754faf0f286aa068861c926a7b11e4daeb44b9af767c7f1
MD5 9094e39f338e65f698d2c3d31df5f0d3
BLAKE2b-256 070a2765ff20474a262477bc5e6077cf94ee84c84943532bdad41cdef74a884f

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.44.0-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a58aaaec0d846d142edd8e794ebb80aa429abfd581f4493a60a603aac0c50ac8
MD5 3d27693681cf18fc047ef85c77996163
BLAKE2b-256 adac7150b9470d7137f0db16137bdd171e0721c02478b6f2596fb87d7cbfc0f8

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.44.0-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 a169bfd7a1fe8cc11472eeeeab3088b3c5d56caac12b2192a920b73adcbc974c
MD5 6ea8fe2572350fc4484c9036899ec815
BLAKE2b-256 9df497733bb670bec5f9d4038443d132237e698d2cb8edc7a825c8eee3eff74b

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.44.0-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 398eda759194d355eb09f7beabae6e4fb45b3877cf7efe505b49095fa4889cef
MD5 c4cf36ee01db41d3d94950f39bb84f0a
BLAKE2b-256 a4a9a12396a748bca274252699504f03f4c60da0061a2451db7c717dbbd8bd1e

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.44.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ceb6441c24176705c5ab056e65a8b330e107107c5a492ba094d1b862a136d15d
MD5 86d48d6aeeea021c76c3bd52e5e3c1b0
BLAKE2b-256 5e823cb3198100eba4069473c49d301a48028f80a8186db5be897ed221e2c491

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.44.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2c516124356476d9afa126acce10ce568733120afbd9ae17ee01d44b9da20a67
MD5 7adc66731f47f38ca1d259c9323325aa
BLAKE2b-256 cabc5479d9c9a39493b0e021b08572494397e8a713b34b32728181a2e3329d73

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.44.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 69bfa6fc1515c202fe428ba9f99e2b2f947b01bafc15d868798235b2e2d36baa
MD5 8ccf2c51811dd08b46571e7c72ede88f
BLAKE2b-256 0cab6bc77bb47dc8b950c4957553fbb3d040be0b3d16ff2fe44bef0a5cbac7a6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.44.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6cdf72947c6b0b03aa6dac06117a095947d02d43a5c6343051f4ce161fd0abcb
MD5 406b50fcc05ab71769197da4b2d50ad2
BLAKE2b-256 1604bbfcf4e0f11c31a60056b7aba94b1e2a04076114f7e27de8a9fdfbce6e32

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.44.0-cp38-cp38-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 37045ba850d423cdacede77b266b127025818a5a36d80f1fd7a5a1614a6a0de5
MD5 6a1d701bbb3106be0280f9c79e36c42f
BLAKE2b-256 fe529051f41c6d63cd3ed90c4f1254e3f10112e6e67c96f6efd5f6fb61975cf6

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.44.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 674fb8d9c0e2d75166c4385753962485b757897223fc92a19c9e513ab80b96f7
MD5 bceb5fe54d7ccd9666a68fb5d2abd1a1
BLAKE2b-256 fe65eabed143917aec9314271307f27ee110b3d88ced74403c8b036b96b947f3

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.44.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1972caf8f695b91edc6444134445798692fe71276f0cde7604d55e65179adf93
MD5 e9b86721773a2ddd86116c50872b6420
BLAKE2b-256 ae147a875c50c1cf67422f48fe380c6bc4047f00f7f19f3ac387cabdef009a4c

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.44.0-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 ea36a294f7c70fd2f2bfb5dcf08602006304aa65b055ebd4f7c709e2a89deba7
MD5 2e24bdb93583b79c1531c5ac220332ff
BLAKE2b-256 12e7dadc18d4805e3e22133f09b393a07b99fa376162bba855b979394c06dcb0

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.44.0-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 cb8baa1d4cea35ca662c24098377bdd9514c56f227da0e38b43cd9b8223bfcc6
MD5 d767fdfdb4aa6736740d15509047e7f6
BLAKE2b-256 30ae4d17be0720ef975728e1e63b0d05244f118467533b7b24ae6f5faf6dc9ba

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.44.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 1f87fc86d0b4181b6b4da6ec6a29511dca000e6b5694fdd6bbf87d125128bc41
MD5 899424395e4573a4d2ffdbebb791e88a
BLAKE2b-256 d506283e19d7fa177a0a63781e82b09514d191a4789bf86cddbf390e78517c64

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.44.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 3f0e1d1f3f5a6f0c9f8b5441819dbec831ce7e9ffe04768e4b0d965a95fbbe5e
MD5 5bf56ece764d500daf7ccfd1fe9f72ec
BLAKE2b-256 9dba7608b615eec69358cb67d85cf8ae57477431078ea97c88456e666d566cd2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.44.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f9f0c5b4567631fec993826e694e83d86a972b3e2e9b05cb0c56839b0316d26c
MD5 cd5a84017a62add55c3e4efbba4c032d
BLAKE2b-256 6a06b6960b5cce7da2409123fda0b65c64595d03b9339084f8b3643baf370750

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.44.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b41c419829f01734d65958ba9b01b759061d8f7e0698f9612ba6b8837269f7a9
MD5 d514e3c3ba1084002bc2cb44c78e9c83
BLAKE2b-256 645c88341d6341b1a6f1bad8617940f8486994cd5d424dc2859df1dc8fc5bdc2

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.44.0-cp37-cp37m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 3d6c8548b199591757dbfe89ed14e23782d6079d6d201c6c314c72f4086883aa
MD5 cd50a121aa92a54c76feffd9ba466dbc
BLAKE2b-256 ce6fcb31b7adbfd43e77ff1f9ceaaa097d839e673054b872e418f2708a181c35

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.44.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6138d2c7eec7ed57585bc58e2dbcb65635a2d574ac632abd29949d3e68936bab
MD5 fa01a2301609f3317bfe9c396a215756
BLAKE2b-256 f72ad3fb0e908c6bb845400b92443d1c51577b7c3f1ca410790b6fcd2ecbff83

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.44.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5ade6b13dc4e148f400c8f55a6ef0b14216a3371d7a9e559571d5981b6cec36b
MD5 aafd8214b3d063049671c5a333d31457
BLAKE2b-256 cbdac9d25820e4a783aebd80e47d7269f6fd6a561106c826997cfc47d53aa658

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.44.0-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 c13e0cb486cfa15320ddcd70452a4d736e6ce319c03d6b3c0c2513ec8d2748fb
MD5 92b184f489c5b454e38af7054b3dd6ae
BLAKE2b-256 63529ba3bb4340254cffefbc5b1fd6de3c43262bff7aa053aea9ad6030593bba

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.44.0-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 614c427ff235d92f103e9189f0230197c8f2f817d0dd9fd078f5d2ea4d920d02
MD5 99e170f48aef875b70556c678e261963
BLAKE2b-256 c4ad4879c3f0168df10c077a8643a892931490267e8e49c55ba2e87b636f116d

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.44.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 71fb6e7e66b918803b1bebd0231560981ab86c2546a3318a45822ce94de5e83d
MD5 d038bc69191c8d909cc53a630f84c6e2
BLAKE2b-256 812a663609e35cc429f180203edab9b2516b76df19cf20b12d1134b7e2a013e0

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.44.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 33d93027840a873c7b59402fe6db8263b88c56e2f84aa0b6281c05cc8bd314a1
MD5 1eb23a4e69d09da3c762632dbe6735ec
BLAKE2b-256 8d57bea07436637b0483270477072d913e830a99bd9f1ffacbd3d7a454485b92

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.44.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b421dc9b27bcaff4c73644cd3801e4893b11ba3eb39729246fd3de98d9f685b
MD5 bed0aef309e18bcfa1efeb835cac2781
BLAKE2b-256 e9c3bc9c3ee355dfe549f6ff99c1707794ce73b5b7afa2c3e041dc23d2fe5a84

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.44.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2b211f12e4cbc0fde8e0f982b0f581cce38874666a02ebfed93c23dcaeb8a4e0
MD5 a9f7cbee9220fc49ccd18c6aff134c69
BLAKE2b-256 04740594b3bf50c43b64ec260373a6e48968adaf4b0afd6acce439cd7a1a2937

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.44.0-cp36-cp36m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 b73fd87a44ba1b91866b0254193c37cdb001737759b77b637cebe0c816d38342
MD5 89d0116dd8e3f58eb51d85b2cb765136
BLAKE2b-256 a7ce5f8ec083422542a69eda0b5a8666444bf7fa9b36db0e19dc3e155c4f5c21

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.44.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3c9abc4a40c62f46d5e43e49c7afc567dedf12eeef95933ac9ea2986baa2420b
MD5 0e46b71438544f3cee6bc34d0632ea2e
BLAKE2b-256 48faffa81e6ae374cf5d637b572d83c72799c164ad9238144183be8068712a20

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.44.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f7ce16766b24b88ec0e4355f5dd66c2eee6af210e889fcb7961c9c4634c687de
MD5 3481385ac84ab4493afb19b0c89b92e1
BLAKE2b-256 94c469d2367da489ac1bda5fce78b3a03ca8948cb4721737f06dd2a2c73aba9f

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.44.0-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 395609c06f69fbc79518b30a01931127088a3f9ef2cc2a35269c5f187eefd38c
MD5 354a4f1962779a77c633f38f4973dd2f
BLAKE2b-256 367b01198444b3e2a3e14ce29ff172d62b3a1e7e2efe44f8ac1af8d328d6659d

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.44.0-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 608414cc1093e1e9e5980c97a6ee78e51dffff359e7a3f123d1fb9d95b8763a5
MD5 ec8b125d8284d7eef350f474da51b727
BLAKE2b-256 bd573ecc35675cd1ef48e0ec4fa592b3d7d16b83dcc0172bd33075d861e927cd

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