Skip to main content

Protobuf code generator for gRPC

Project description

Package for gRPC Python tools.

Supported Python Versions

Python >= 3.5

Deprecated Python Versions

Python == 2.7. Python 2.7 support will be removed on January 1, 2020.

Installation

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

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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.9 Windows x86-64

grpcio_tools-1.37.0-cp39-cp39-win32.whl (1.5 MB view details)

Uploaded CPython 3.9 Windows x86

grpcio_tools-1.37.0-cp39-cp39-manylinux2010_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

grpcio_tools-1.37.0-cp39-cp39-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

grpcio_tools-1.37.0-cp39-cp39-macosx_10_10_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9 macOS 10.10+ x86-64

grpcio_tools-1.37.0-cp39-cp39-linux_armv7l.whl (24.6 MB view details)

Uploaded CPython 3.9

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

Uploaded CPython 3.8 Windows x86-64

grpcio_tools-1.37.0-cp38-cp38-win32.whl (1.5 MB view details)

Uploaded CPython 3.8 Windows x86

grpcio_tools-1.37.0-cp38-cp38-manylinux2010_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

grpcio_tools-1.37.0-cp38-cp38-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

grpcio_tools-1.37.0-cp38-cp38-macosx_10_10_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.8 macOS 10.10+ x86-64

grpcio_tools-1.37.0-cp38-cp38-linux_armv7l.whl (24.6 MB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.7m Windows x86-64

grpcio_tools-1.37.0-cp37-cp37m-win32.whl (1.5 MB view details)

Uploaded CPython 3.7m Windows x86

grpcio_tools-1.37.0-cp37-cp37m-manylinux2010_x86_64.whl (2.5 MB view details)

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

grpcio_tools-1.37.0-cp37-cp37m-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

grpcio_tools-1.37.0-cp37-cp37m-macosx_10_10_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.7m macOS 10.10+ x86-64

grpcio_tools-1.37.0-cp37-cp37m-linux_armv7l.whl (24.6 MB view details)

Uploaded CPython 3.7m

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

Uploaded CPython 3.6m Windows x86-64

grpcio_tools-1.37.0-cp36-cp36m-win32.whl (1.5 MB view details)

Uploaded CPython 3.6m Windows x86

grpcio_tools-1.37.0-cp36-cp36m-manylinux2010_x86_64.whl (2.5 MB view details)

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

grpcio_tools-1.37.0-cp36-cp36m-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

grpcio_tools-1.37.0-cp36-cp36m-macosx_10_10_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.6m macOS 10.10+ x86-64

grpcio_tools-1.37.0-cp36-cp36m-linux_armv7l.whl (24.6 MB view details)

Uploaded CPython 3.6m

grpcio_tools-1.37.0-cp35-cp35m-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.5m Windows x86-64

grpcio_tools-1.37.0-cp35-cp35m-win32.whl (1.4 MB view details)

Uploaded CPython 3.5m Windows x86

grpcio_tools-1.37.0-cp35-cp35m-manylinux2010_x86_64.whl (2.5 MB view details)

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

grpcio_tools-1.37.0-cp35-cp35m-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

grpcio_tools-1.37.0-cp35-cp35m-macosx_10_10_intel.whl (4.0 MB view details)

Uploaded CPython 3.5m macOS 10.10+ intel

grpcio_tools-1.37.0-cp27-cp27mu-manylinux2010_x86_64.whl (2.5 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ x86-64

grpcio_tools-1.37.0-cp27-cp27mu-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

grpcio_tools-1.37.0-cp27-cp27m-win_amd64.whl (2.0 MB view details)

Uploaded CPython 2.7m Windows x86-64

grpcio_tools-1.37.0-cp27-cp27m-win32.whl (2.1 MB view details)

Uploaded CPython 2.7m Windows x86

grpcio_tools-1.37.0-cp27-cp27m-manylinux2010_x86_64.whl (2.5 MB view details)

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

grpcio_tools-1.37.0-cp27-cp27m-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

grpcio_tools-1.37.0-cp27-cp27m-macosx_10_10_x86_64.whl (2.0 MB view details)

Uploaded CPython 2.7m macOS 10.10+ x86-64

File details

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

File metadata

  • Download URL: grpcio-tools-1.37.0.tar.gz
  • Upload date:
  • Size: 2.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio-tools-1.37.0.tar.gz
Algorithm Hash digest
SHA256 3ec510c1b6bfc32effc639acf9a055e72dab7a7b6757bf72f2132790d6a7cf1c
MD5 015ada618f496bb9c357c82567eecb54
BLAKE2b-256 fa1f11c0b2b27e426314bcb1f90ad854b3be76eedc2a8d34026972cfcabe30e3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.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/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 bde7358fc84fcb1b227d6cd53cfd40179851df9a3bbf650d492a180baa1e4986
MD5 72f60db31b78263c9237b86e79ff3bca
BLAKE2b-256 35be6bfd8032d1d7d5f4da4f19215d82b98ac3cae137b7f8cd106dc570fee7ba

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 841ebb76cb0588cfe1b3c71205b011aadaa179e09593c890715a0d670b570ab7
MD5 196b2305a516ccfaff19da891817869d
BLAKE2b-256 25336b2c998e27e7839d67f5de23d31822e6bc95896119257cf2a0b17bbf5146

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.37.0-cp39-cp39-manylinux2014_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.37.0-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 83e9f3da8f8b3580f074e3ffa900d7317b6dbdbea641af2d1d49c63b37521117
MD5 df86d83c0ca7bc7420244c8fc08f3592
BLAKE2b-256 deadad5ef20ef59fc8d3227423ac61a8c3d3c0208b50e207b9c7777059cfcd26

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.37.0-cp39-cp39-manylinux2014_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.37.0-cp39-cp39-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 92d373659a1dd405a1b945a7594dcc3e173fb983ea6dd489a3f008ce7759c5b9
MD5 a7e038018a4e021f39309f20aab9b2cc
BLAKE2b-256 223a5e69e3003f1ded32b147366de26f5cb2e8ea9ab53cdee8067d8737b7bdc9

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.37.0-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

  • Download URL: grpcio_tools-1.37.0-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 25.5 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d1a91ccad1edb71bf9b5dfc2f48253041510e44190a0cd324b5728cebc4203cf
MD5 51d7a60b07298c8b47d5a67a88335fb5
BLAKE2b-256 b99aefec7aab27f15ec3f68ce07b41aec9f704deeb762474289d84b1ffcce72c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.0-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 07d400f5d22131d4d8e77cc80a923e669cc6ff08cfe8848eefcc1b26078c9847
MD5 bcb76f68f877da490905f4c1b0d4f638
BLAKE2b-256 41d7ce02fe59cd487f5605f009b042777e3e7ada043b787c24b27637706a4722

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.0-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 be352ff2360bcc691c036bfa2c13e99e560e3d619dc93b113c735906d9a88c4b
MD5 3b2231032cc1d98aa96cead79423ef30
BLAKE2b-256 4957967b6df11c5978382d046c1c70e425f7b0e592cf1cee0229d509f1195e8c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.0-cp39-cp39-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.9, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 374d7444d71bdebb3a879ff4bc52e0470ad5b77be9a8c6c5896793aef245e179
MD5 045f6a6b64bafcd80ba8c2702f7c3a22
BLAKE2b-256 b57dcc21bd90abaa2eab673872b23a93bb8fafe9a2744e2a36ec400003b8a47a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.0-cp39-cp39-linux_armv7l.whl
  • Upload date:
  • Size: 24.6 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 b48e64b706ef3abe8feb4acc6aeaa12588fdc1a2d65477ebbaa7a443089b5f08
MD5 252cb667abc4ebd15e9339a76ec5888f
BLAKE2b-256 b88950acb1fdc646099d8006cb3fd067aefd430f001924a80bbe92f8b599e9e5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.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/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 480a2e98e386e737c54056baffeab09c7d400a050df9fda585c30b0e1b3595cc
MD5 9f292e10792a777e20559dfeccd3115c
BLAKE2b-256 73b0f6de438d6f1042dfef600eafdae422781174a2b07f64efcaef51af78f3e8

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a32de26574d91d88bd6fdbf94766e67883364c5f38f205c734ffa24608be17bd
MD5 edf0bae4575892f1a444e821f751c5db
BLAKE2b-256 271e1bd2e522d52fc0208ab2b6f300d1e6ac7583448e6337a91b3ffd18652278

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.37.0-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.37.0-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ae34e6219194afbae65033cc416182b3473f9d0595733757861e8f5832091713
MD5 2c2a8a970b022c7787e18b0bf85bcbf5
BLAKE2b-256 2b2b9a9c7d7be45ff20a6f476792e3d7764f9007fb16cbc8cab3c04014156b8b

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.37.0-cp38-cp38-manylinux2014_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.37.0-cp38-cp38-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 055b2044f8724e5ae02c927fe58880ef39fc5bdf546b9126d90cae5fb4661879
MD5 4d017da739f8eca2faa9cafe07b53847
BLAKE2b-256 b38917f4cc162b98b0f52f8f37cfd5c45cc69cae4528317f8234475edbff4e74

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.37.0-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

  • Download URL: grpcio_tools-1.37.0-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 25.5 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f06956775853d214af4878c82b571ad5ae4baf866234299cc544d2f6d863b29
MD5 08bb694aefbe1c7b1038ffbb6eaca67f
BLAKE2b-256 1e2d20be4454eb4c8706f0175f2a3c764c7215f8d95cbe5d802301e3cfdb746e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f86f05a47a65b84635a6402a4114b29a7dfc9bbd92049d301fed052100832a33
MD5 cda8e6a3429f1c1a2649d152cac0e3cc
BLAKE2b-256 b110ad1e9682e437ac742cc00f6ef913944877a7c4ff87927d42af01ad5635c7

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 350327f66b259632556d8d68f4c00d5d3628473ee58442920782594c821bf548
MD5 f269bc9d90ec6655db6e0c5ce36ad81c
BLAKE2b-256 f335d597a4d3713a285149d80a60df28ba3d8bb5931199588396561ca5418a09

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.0-cp38-cp38-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.8, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 ff3be2289c6d2b52667d26ad749ca36a2953f124536b231c99fc4f2ab9e51ef6
MD5 b847ed662c2a2890d3155c7fa166e934
BLAKE2b-256 09e077313f21811969307dc491e961a0ed57c6d521fa38d88a5ed531667e3e77

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.0-cp38-cp38-linux_armv7l.whl
  • Upload date:
  • Size: 24.6 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 52e24726e9d64350d60e47d0d07a02d0daa5edc0b46a360ca88a5e44dfa7a037
MD5 76b4aeeaf3628de0ef1b49c34d314ba6
BLAKE2b-256 3e9cf69c50741a6c95a27ce4340daa9979a418d49087e8cda312dbbf51a7d8a9

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.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/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 5e1098bf352eb72e69a132abd5ab1bd569e27a51e7daa858b7fbe4e85e07c941
MD5 e432cfeb9851e17d8cca9b8ed838950a
BLAKE2b-256 62877b84528b921f573bbde8735b18d3fe98f6c416f037b5446174ca5ac1e46a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 de1f83271686296ec1f96ac2ba9b0a9f302e867cf42dab300ea372190c80b3d6
MD5 60aa8ad9fa225c0cdf10b2ab5e1e34d9
BLAKE2b-256 0c232187ce0898c3beb443d5d89350f00cbf25592cbd6fa63c5114b3eba4ed20

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.37.0-cp37-cp37m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.37.0-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d5e174c6c2a32ec925f4cd94330339a5aceea1963f22bbcde9a02fde4b6b6b0f
MD5 2bec3802eead29d3353e461bc2367ff2
BLAKE2b-256 437e45ce1a5d2f5f84991323bf375cec826d07a1dd15f64a4c74c3e67839cd9c

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.37.0-cp37-cp37m-manylinux2014_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.37.0-cp37-cp37m-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 545f0b4ec1f4c19e241de19e68d428f866334ae642cedeb77e07d5146e464816
MD5 bc6f9ea2d87cffe7a47f006e2308f35a
BLAKE2b-256 d4d31ebc71c0724b5ec7d127fcc43c197523cb4af7341e64d9f58e6692ca7a98

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.37.0-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: grpcio_tools-1.37.0-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 25.5 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f477ca35024fc8cd6da68e3f9a4a7fcb3b65b307ccd9c822735ffdf1131c250d
MD5 7736c302ca4bb45625551802bb20388e
BLAKE2b-256 7ab2c94ecac7246c53bd1363077328cca3ab5d5569a9b6d34c412d33248711bb

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 44a3808fbce1ce5184ee3443ecdbfad8aa1c0ddec1dd61bf4211fbcd4eb76416
MD5 c6aba05105f259b9ae4c4df4ceaf8516
BLAKE2b-256 c19f78797b6b4411319cd24bfc331925a54b6d28903384fbb64b661657a5afd5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b9d4350874eb98ea56067b670b72d0f8ebe85513cfc4b4821125e1a8daf64e9c
MD5 2663b30e07e6cb7519a0227d19c80eb7
BLAKE2b-256 5fd97fea874b6a57e2af780240345cb9e1eb5039e59829a673545ab8cfb26448

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.0-cp37-cp37m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.7m, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 dd33af18e69e05ba3f80877db94d49baf4cf3695e4a22ca44739ea4036090fcc
MD5 7030e7dd8ee4dd13409ce49155051d0b
BLAKE2b-256 d6c4c739751a32cfe4fe63789820c83b5f27d93f4427e753b9deff375363b38a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.0-cp37-cp37m-linux_armv7l.whl
  • Upload date:
  • Size: 24.6 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 c6f1fa84ef5a040f5e4940f66cfff3f071b89ac40b1c7998924668993eba98d5
MD5 065ed58c6b21f60563389618b37f6f0b
BLAKE2b-256 28d8c300f4ef8059bc94097ae89fedee72fafbbc7f801f8c2deaa1c6b1740548

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.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/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 ccdb1b5076f0a07b8876d7811003e3ddbb16b91eb547bcb4285cccaa24c0539c
MD5 caf4f2906acff4603e3d754a0b284542
BLAKE2b-256 aa4844aa09b7699107acae5c5474e067108d226b6b61d846bbd65356f208c0fd

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 806411475a6d66384901b78bf2c9f9957890a3499c8ebee7127bc9938091775d
MD5 7b458dab945255442bdba676533cabdb
BLAKE2b-256 cc57cd948a586ccd563d3fe0fd6851a3f2ecb0eadf42dfd1e215923ba83e404b

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.37.0-cp36-cp36m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.37.0-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8a1573c8788aa43a886ece51bbc2e3a1bad575df101b06e173f82359a864cd10
MD5 9da075b31f23759a90474f12b21dc8d8
BLAKE2b-256 ca4b0b55c7fb84c346098bd2a50f33fd7e0ed8b8b100fd270a878ca6a6d9f379

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.37.0-cp36-cp36m-manylinux2014_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.37.0-cp36-cp36m-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 265e19db587be9f2f8d2b99fd69a14e65d2cd419f23cd0ac381c9615ae2ee958
MD5 3cdb4b93ec2bba6c73609738047947a9
BLAKE2b-256 f95506f4cf18d665d9da569ba14930c528526ea13037d98fcfdc83dad1e9853f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b684ddabdc81bb73583dadebce7a5807a1e7b3f55d52e615618f8d502fe5cadd
MD5 e9a771226f4189e7573511dfbe3ddc2f
BLAKE2b-256 1473a23340ab30788ec1583be0bd1dd6a84fc32a1594549c0fb7a37ac354f397

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 206fa2aa48d8887941e7407a5a90e4a76d45e8aee99d23af27ae7dfd3b410d64
MD5 b9229a799a5480650ec30eed06c932da
BLAKE2b-256 062c73d74b5911d4fb835e61caa59f4b804e13cbc302ceaa7fbf52289ebd232f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.0-cp36-cp36m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.6m, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 731b21a74b456539c505386f5d60369a1ddf72a65dc9bf7747f18a52ad39089a
MD5 ffedc0aca03924a804c32c734560eb87
BLAKE2b-256 efd2508b8d1bd42a08ec53eac5ba177d2c8211202bb0338828b29a23bb22c4f1

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.0-cp36-cp36m-linux_armv7l.whl
  • Upload date:
  • Size: 24.6 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 92fd9db40762c45f15ebcd2e264a1c0b2e281c12fd0a70977629c9efc8d1d8b3
MD5 3c7f2db87d2ca096736382c8a205b44b
BLAKE2b-256 55d40d8a2c84eaaaa953c1fd9b2819462c9060c5f30e54ae9bdcb20f4315d3ae

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.37.0-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: grpcio_tools-1.37.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 450c15eea7159951b0cdbc9d6703e1f7fa7cc7a3d851d7ec43a2c6e2023e7655
MD5 7b5f557b01866f5aa8753d025e5bba0b
BLAKE2b-256 017f647a62d4159b446745d4c24788b4e69cca4c2ded22f91818cb1933bcc82a

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.37.0-cp35-cp35m-win32.whl.

File metadata

  • Download URL: grpcio_tools-1.37.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 888b74dedebf8a00e8ab178acf0c7c844afa3fc69966fea9cb6239ccdf6bf319
MD5 3296951e54890b41ecab0c1fd4b556ba
BLAKE2b-256 d3f40be68754d1f2beb370c6986aecc2f45c5ac870647ff565b1ae69beb6395c

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.37.0-cp35-cp35m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.37.0-cp35-cp35m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c53457000e033281955894ed3de0a2efdec3a8d68b7f4ee3b03e66c18a270a2a
MD5 9a8f587a67da13e777b979e4650128ae
BLAKE2b-256 9559aeb6124b0efbd2cc20654e834e533fa69ba8daffe326d1bd36eeb2536dcf

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.37.0-cp35-cp35m-manylinux2014_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.37.0-cp35-cp35m-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3f9c05dac8a3466f73b794c99c7e1a7dc1238c2d907f3c344682018f0a018dac
MD5 3751e7757eb05458cd2e14b14e633506
BLAKE2b-256 edf0929ec897c26aba8cbd3235793ed6544bbd366502461986cce0c12b447a60

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.37.0-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.37.0-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 99def9a3a5c78f502a6416f72ced3e6b511276614cec9bdbfa580bdada84ccaf
MD5 23fb432ee3081ef6fb8ca48b3bcd98b8
BLAKE2b-256 559ec44dd04e7f16ae331f33da5851ac22527417bdf37abffa55a7476c2830aa

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.37.0-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.37.0-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 501af4e929bbb6ab0c98b02a504963d80eff653b031e97d64e9d42a0e4b7e79f
MD5 e2f03548a178f7c6d28d8727df43e9ea
BLAKE2b-256 227c6ec29d3ca737e13831e7526e2b623548d99d959983298f096cc464766a7e

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.37.0-cp35-cp35m-macosx_10_10_intel.whl.

File metadata

  • Download URL: grpcio_tools-1.37.0-cp35-cp35m-macosx_10_10_intel.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.5m, macOS 10.10+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp35-cp35m-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 557dcb595f359795955c13c77d4ce6761b9502a8cd6dd9814d05a1fd882994aa
MD5 d8a7492936cc581df2b04bc1df47968c
BLAKE2b-256 3c2b8c5c7565789b7a690555b534f5e5e3d40af570cdfea0cb94c3fa99d40036

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.37.0-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.37.0-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e7c87cb0a90d1f2cfd9cb0afa936663d639da97d67ad72102f30827709202d94
MD5 ff5f02696228b5453caba0ba4e68a4d4
BLAKE2b-256 bb514fb0e98d0b56947b8e1b6451f2b16243fbe33d465a5db2c2509b6fe12566

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.37.0-cp27-cp27mu-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.37.0-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d5087058710468e2054049b24e31a88bfba4c244a0f1f4cc32b5439bb265d9e7
MD5 329317e40d2f64f0aba4539eae5edf0d
BLAKE2b-256 30721804d98e8b6aa15578367206ebeeac44428442345dd54bc5674c908e706c

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.37.0-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: grpcio_tools-1.37.0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 2fc318becc701d4f1a6ba200cdf44c1485a1eb8eef506064585092b0d43eef82
MD5 0477642aed3c2dcef61d2c9ae387fe1a
BLAKE2b-256 dd45d43c640989ce503603c65dfc1b6a40deb7fc50a902d691953c49882b2c24

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.37.0-cp27-cp27m-win32.whl.

File metadata

  • Download URL: grpcio_tools-1.37.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 df290c1dcf504c74b25a320202aa8d7b9e3c18f2db19b18613a2e8513970b17f
MD5 013a73f51db1c0925ac9175708d9ab4b
BLAKE2b-256 e0710c293d0c99f0dc873209a3022efc9a0a6dfe38866196b559c99953140a47

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.37.0-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.37.0-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c2ae27b64e7a113b57b7effc79afcb8dc1bde175d0fd69bfa496447aae18c125
MD5 89feea5b47fe3c78eae1485174b7b495
BLAKE2b-256 bd0a63ec2cb25cddf60d4bb644c940c3db14b3e721cc5d5e9296d36d6aa03bfc

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.37.0-cp27-cp27m-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.37.0-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3409fde6793cb9273e3515733d19b94baed70adeb65c7dc78cf992490fc947c5
MD5 bbaa1dc11c34847e0d6ce11afd48e4e3
BLAKE2b-256 3df040df7363a2befc02b361050f58b74b05d3192608c2152807dbcf7109c0c3

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.37.0-cp27-cp27m-macosx_10_10_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.37.0-cp27-cp27m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 2.7m, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0-cp27-cp27m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 4018d6c6ebe68020172753675463a958f3bc579ed4ee24dfe8f12076beea7011
MD5 17b98a99641b0df78e04b4842030c8cd
BLAKE2b-256 6733ae34157ca8d42dbf1765f4567d6d75dbdefda7b1236d807d57b498a81b87

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