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 $(curl -L https://grpc.io/release) 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.27.0rc1.tar.gz (2.0 MB view details)

Uploaded Source

Built Distributions

grpcio_tools-1.27.0rc1-cp38-cp38-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.8 Windows x86-64

grpcio_tools-1.27.0rc1-cp38-cp38-win32.whl (1.3 MB view details)

Uploaded CPython 3.8 Windows x86

grpcio_tools-1.27.0rc1-cp38-cp38-manylinux2010_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

grpcio_tools-1.27.0rc1-cp38-cp38-manylinux1_i686.whl (2.3 MB view details)

Uploaded CPython 3.8

grpcio_tools-1.27.0rc1-cp38-cp38-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

grpcio_tools-1.27.0rc1-cp37-cp37m-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.7m Windows x86-64

grpcio_tools-1.27.0rc1-cp37-cp37m-win32.whl (1.2 MB view details)

Uploaded CPython 3.7m Windows x86

grpcio_tools-1.27.0rc1-cp37-cp37m-manylinux2010_x86_64.whl (2.4 MB view details)

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

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

grpcio_tools-1.27.0rc1-cp37-cp37m-manylinux1_i686.whl (2.3 MB view details)

Uploaded CPython 3.7m

grpcio_tools-1.27.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

grpcio_tools-1.27.0rc1-cp36-cp36m-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.6m Windows x86-64

grpcio_tools-1.27.0rc1-cp36-cp36m-win32.whl (1.3 MB view details)

Uploaded CPython 3.6m Windows x86

grpcio_tools-1.27.0rc1-cp36-cp36m-manylinux2010_x86_64.whl (2.4 MB view details)

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

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

grpcio_tools-1.27.0rc1-cp36-cp36m-manylinux1_i686.whl (2.3 MB view details)

Uploaded CPython 3.6m

grpcio_tools-1.27.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

grpcio_tools-1.27.0rc1-cp36-cp36m-linux_armv7l.whl (24.9 MB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

grpcio_tools-1.27.0rc1-cp35-cp35m-win32.whl (1.3 MB view details)

Uploaded CPython 3.5m Windows x86

grpcio_tools-1.27.0rc1-cp35-cp35m-manylinux2010_x86_64.whl (2.4 MB view details)

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

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

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

grpcio_tools-1.27.0rc1-cp35-cp35m-manylinux1_i686.whl (2.3 MB view details)

Uploaded CPython 3.5m

grpcio_tools-1.27.0rc1-cp35-cp35m-macosx_10_9_intel.whl (3.9 MB view details)

Uploaded CPython 3.5m macOS 10.9+ intel

grpcio_tools-1.27.0rc1-cp35-cp35m-linux_armv7l.whl (24.9 MB view details)

Uploaded CPython 3.5m

grpcio_tools-1.27.0rc1-cp27-cp27mu-manylinux2010_x86_64.whl (2.4 MB view details)

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

grpcio_tools-1.27.0rc1-cp27-cp27mu-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

grpcio_tools-1.27.0rc1-cp27-cp27mu-manylinux1_i686.whl (2.3 MB view details)

Uploaded CPython 2.7mu

grpcio_tools-1.27.0rc1-cp27-cp27mu-linux_armv7l.whl (24.9 MB view details)

Uploaded CPython 2.7mu

grpcio_tools-1.27.0rc1-cp27-cp27m-win_amd64.whl (1.9 MB view details)

Uploaded CPython 2.7m Windows x86-64

grpcio_tools-1.27.0rc1-cp27-cp27m-win32.whl (2.0 MB view details)

Uploaded CPython 2.7m Windows x86

grpcio_tools-1.27.0rc1-cp27-cp27m-manylinux2010_x86_64.whl (2.4 MB view details)

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

grpcio_tools-1.27.0rc1-cp27-cp27m-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

grpcio_tools-1.27.0rc1-cp27-cp27m-manylinux1_i686.whl (2.3 MB view details)

Uploaded CPython 2.7m

grpcio_tools-1.27.0rc1-cp27-cp27m-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

Details for the file grpcio-tools-1.27.0rc1.tar.gz.

File metadata

  • Download URL: grpcio-tools-1.27.0rc1.tar.gz
  • Upload date:
  • Size: 2.0 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.17rc1

File hashes

Hashes for grpcio-tools-1.27.0rc1.tar.gz
Algorithm Hash digest
SHA256 77478e8cec896d8446223011e31c0ea74ef36a6d53bf635a316872716c3a840d
MD5 bb6f6c935a74a523ee9babfa348f154c
BLAKE2b-256 221c87238bbcfb62322de2ea09f7c835c9ebcf84ba8c6dca46a901cbcf754fac

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.0rc1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: grpcio_tools-1.27.0rc1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.6 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.17rc1

File hashes

Hashes for grpcio_tools-1.27.0rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 01da422361faf2af4005161de1e6c06cb300ff2d212e2686d6ac9468072bbaa8
MD5 8b459d6866b856e25f2ad5e675e1f058
BLAKE2b-256 0024a107ccdda75f8e3c33a27aa4d8702dac39e28ace9ba1b85ed2f2dda277e8

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.0rc1-cp38-cp38-win32.whl.

File metadata

  • Download URL: grpcio_tools-1.27.0rc1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.3 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.17rc1

File hashes

Hashes for grpcio_tools-1.27.0rc1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 c261c5932eb4aaac0e24f02c0eae5411511251485181c8ff6df9df78c03bea9a
MD5 ab1d9e13f3ef6204d9981df6cf0d0cac
BLAKE2b-256 866e9dfc7bde000e9223e2811f606cbb5fa3f8d2170bcee7f238726b333773fa

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.0rc1-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.27.0rc1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.4 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.17rc1

File hashes

Hashes for grpcio_tools-1.27.0rc1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 30659af62a8433f344f44d3d33b0ad7e2bad2da60d17a6a8ae7bf75e5a33f1b9
MD5 9ab3b6f35af2e6a9ae98a2f94b92e529
BLAKE2b-256 b12ebe767e2a0f66f124ba19b3a345790253feb2dc0fcbed6a73ca94046ac132

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.0rc1-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.27.0rc1-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.17rc1

File hashes

Hashes for grpcio_tools-1.27.0rc1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e44df8c424e657c805b6634f7c784a36acf19a7aeaea5acfb391fe97bce522b3
MD5 7ff3c784ae8189b5c3ff3f492f0bf083
BLAKE2b-256 28cf33a347c9cbfa5f854182de867b932c1abbcdf5ebf8b703f85a378ffaa12c

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.0rc1-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.27.0rc1-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.3 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.17rc1

File hashes

Hashes for grpcio_tools-1.27.0rc1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4822729e3512c5dd8f49f47d5a336a9d6d61a07f8dbe6ff81fcf11b66ec4ffa8
MD5 f1904b0fee72bc80593f5d8b44150298
BLAKE2b-256 030d1e4a8bee938e54828611792713ed429045e81338ae1fa99314a8c9d2808c

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.0rc1-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.27.0rc1-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 2.3 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.17rc1

File hashes

Hashes for grpcio_tools-1.27.0rc1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 99c360c69ea87e85afe219d5062b0b1f9cf3ad3c19f1d2f25c6543c2274c874a
MD5 871b83009973eee486bb5cce744a8439
BLAKE2b-256 92f2372d1ee3467227cda6663ee2bbbc7841fa776f84271c49b10f60f20c6e35

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.0rc1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.27.0rc1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.8, macOS 10.9+ 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.17rc1

File hashes

Hashes for grpcio_tools-1.27.0rc1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a8cd0b8d7324c4033478bb2437f37404fe8850293684270795003e38289c11e5
MD5 07990b89e39ca616fe42c0165daf5236
BLAKE2b-256 4890c3eef8d91f456cb45662be91c61b99d3c371906b5c1e2c35171e34c75b05

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.0rc1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: grpcio_tools-1.27.0rc1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.5 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.17rc1

File hashes

Hashes for grpcio_tools-1.27.0rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 da457543d30a5cd5777ed7093fd9dd8583663d9a644805bb4cf71392d0068b35
MD5 a57f545fe96826c33582fe0d0f633987
BLAKE2b-256 d0aad1555fe17beabc15df0c032d4d270b626a04da660bb04c99ca42ee2b786d

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.0rc1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: grpcio_tools-1.27.0rc1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.2 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.17rc1

File hashes

Hashes for grpcio_tools-1.27.0rc1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 c30ca6d21c71ab30445d453c0aa0a073f4d67c423894c0be2aca9a7aa69e83d5
MD5 9a37a57d528032181ab3ca35876d1977
BLAKE2b-256 adaf9cb13126c82e570590ce295cebf1a44f7854438b9f39c80f3e1df036bb80

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.0rc1-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.27.0rc1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.4 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.17rc1

File hashes

Hashes for grpcio_tools-1.27.0rc1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b06a00399f5169b1255914924870a52c03ab7ee6b7afc4dbad0772e739b155ed
MD5 25b6910426a753badb68f852de4f6f6f
BLAKE2b-256 e319c49f32d190ce52a152e50921409012598b93470fbc36888c8c7d9ca14ec8

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.0rc1-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.27.0rc1-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.17rc1

File hashes

Hashes for grpcio_tools-1.27.0rc1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 66e8148145f3b9118a62a395b58809e9f0637f1b82faf663370829afa4c87c48
MD5 70d11b403237ca99996c06a7aba3a12c
BLAKE2b-256 bf11367b66b6600a943aaad7dea1e6e8792326e9ac7de96ad85ebc0ce4c70e3c

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.0rc1-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.27.0rc1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.3 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.17rc1

File hashes

Hashes for grpcio_tools-1.27.0rc1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8a12833d117e5a6edfc4ecad8d1a26932e5b80aadd490bc8bfa6c0e991d63309
MD5 ca6a538769ee5139df89a09b2b8c5a14
BLAKE2b-256 279319e31649087ce778c1cf1ffa4af84574fbc473b0ffe79ce41e065a1cf83c

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.0rc1-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.27.0rc1-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.3 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.17rc1

File hashes

Hashes for grpcio_tools-1.27.0rc1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 fb61ae3848b98adcc6345bd99df3d3c59705dec1b65282e26bf0b3831f0e759d
MD5 b29e8183866842f6dd5a114764f86201
BLAKE2b-256 b25456d73c2f3f76fc74bf4137bc9f33d762c521de26686e15927fd2f8244dba

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.27.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.7m, macOS 10.9+ 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.17rc1

File hashes

Hashes for grpcio_tools-1.27.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 38596c3bba76fae3cdcbb0f5cc170a8fba58429786eae405fd632247f36a9d53
MD5 b27fea74f40cea691a324705d889a753
BLAKE2b-256 d77c10f27e566aca1e010c78645e90b928beeb59d09df0ac39ed5996f4a64aa1

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.0rc1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: grpcio_tools-1.27.0rc1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 1.6 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.17rc1

File hashes

Hashes for grpcio_tools-1.27.0rc1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 ba08b6d27d8449fe3b39dfd10b90bd9b36e97a26c9fbc9b384aaefe86c1d8dcd
MD5 78bf851c8581bb415018aa24a87445fe
BLAKE2b-256 4e71b579534ae58cf764d506c7744aade450028002e2039c206271655f30058b

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.0rc1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: grpcio_tools-1.27.0rc1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.3 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.17rc1

File hashes

Hashes for grpcio_tools-1.27.0rc1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 369130c11117a5e9edf58891d271fcc525fca432025c9fe20e9e1715a4e2a59e
MD5 1be1431fd915d68a35c367deb206ad29
BLAKE2b-256 4fc5b26e26bbe29be6a999551dfb52b3619f4d81c46f05ebe775c07b5ac8f219

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.0rc1-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.27.0rc1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.4 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.17rc1

File hashes

Hashes for grpcio_tools-1.27.0rc1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ad68ee100e5022c1b17c8bc0e5ed84224eb9d9e813ddb094898e4fdf719769b1
MD5 bb2021bfb18688f132b84632024459db
BLAKE2b-256 23b9cf295070acd8089cf4491da428ae8e3ec97a1fe2f9a253108cb6de8d5176

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.0rc1-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.27.0rc1-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.17rc1

File hashes

Hashes for grpcio_tools-1.27.0rc1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f3a4f1f389d2cd5bc3636d0f00fb87eef70b25d39928c9b3ef3d51e252b34610
MD5 45532433468579f909696ac92f2b566f
BLAKE2b-256 dfaedf0a108949e4043098f232cbb96a6d37d1e4fd0e7d671f2baed069c14679

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.0rc1-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.27.0rc1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.3 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.17rc1

File hashes

Hashes for grpcio_tools-1.27.0rc1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1865eb22abca74a3ca3cebcda2596d2dd97e071d661db7a0f66ad744bbb95c98
MD5 2a72aa4488a2a7de46a3b0228c4c2a21
BLAKE2b-256 8b60c581a131980799831d31e6c67d029c6a8ff177d274572bc2134716ddc14f

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.0rc1-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.27.0rc1-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.3 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.17rc1

File hashes

Hashes for grpcio_tools-1.27.0rc1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 fbe58913f1524e315bf66d9a71d2960e8d14ef757916fb9fd7f02d8029ecc5f0
MD5 61c63004c85f1c010d49eb114df6fb1e
BLAKE2b-256 81410045ce3bb9f7b1da0aa8d481e8a05566d27a286a3dc978d7f28882ac5852

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.27.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.6m, macOS 10.9+ 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.17rc1

File hashes

Hashes for grpcio_tools-1.27.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b0bdc962bd3dced47d8d5d8da5ec42e48db51786f50efedbf9ddc9030fcc0f1f
MD5 0da5462815c1870b6eeb4c2409fe10a6
BLAKE2b-256 1e47834031fc5baf63f9e1c244bccdef997a2a3ccbf9b1e2f30af9974b031e0c

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.0rc1-cp36-cp36m-linux_armv7l.whl.

File metadata

  • Download URL: grpcio_tools-1.27.0rc1-cp36-cp36m-linux_armv7l.whl
  • Upload date:
  • Size: 24.9 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.17rc1

File hashes

Hashes for grpcio_tools-1.27.0rc1-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 5b034e913ab31958d7cf6f25d0a74328fb203c8527d6bfa56982e375b08c7dca
MD5 855234b7cced1054bec4961c83e0222d
BLAKE2b-256 35dc890091d17734d1f4ced489ae5ba4bd3dfd7f861c3e6569bb0bbb52f73315

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.0rc1-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: grpcio_tools-1.27.0rc1-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.17rc1

File hashes

Hashes for grpcio_tools-1.27.0rc1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 ba31ae9a0587f7bbf37e441f1c382a39d6bf45b6566da6f75fd4be187ee65188
MD5 cd2ecdf902f24b455dda127e1c027e52
BLAKE2b-256 c670dc2c310a4551013469326357ca2862c55a3dc5ec16f9aaf4cd481bce0aa2

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.0rc1-cp35-cp35m-win32.whl.

File metadata

  • Download URL: grpcio_tools-1.27.0rc1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 1.3 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.17rc1

File hashes

Hashes for grpcio_tools-1.27.0rc1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 a63ccad82074e0e39a7b0a0ebb7e962d03b0c9eebde42457f8958647d02b16a1
MD5 1fd65cc2fe36df7e8da40681c889b7b1
BLAKE2b-256 b17d0d54c62bda9977b5fa63ddfd406fe9d014dabd9e18710f46c3432d6a571d

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.0rc1-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.27.0rc1-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.4 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.17rc1

File hashes

Hashes for grpcio_tools-1.27.0rc1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 bd685c27ed271b74b7420a2cbd88c817376e2c6aef87edd5eff5edc7150c600b
MD5 9420ba426357869f912b80d0b1c23e07
BLAKE2b-256 ac557acc588a7139e86b09f51926b48df4391f6df9598ff0849c1638805e5eca

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.0rc1-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.27.0rc1-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.17rc1

File hashes

Hashes for grpcio_tools-1.27.0rc1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 641180f00cfb7aab481346f73a0d6bd697031e1443a57f5ad195d039da8b2451
MD5 e78f85cb014e567212c922d584565239
BLAKE2b-256 0673ff9394e286ccffbde7dcc0b697e94af162761c6b524d4c35478fe4c40cfa

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.0rc1-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.27.0rc1-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.3 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.17rc1

File hashes

Hashes for grpcio_tools-1.27.0rc1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bd6a04124fb4f4ae36dd52f29c708048a5ea983417bdd5f2254c0e1c70a9cc49
MD5 252855bfd0e23aed2dc20c8cc9bd74df
BLAKE2b-256 d9b3b1d119c4229260ab1f9c7182aed216b097c9cf5dbcf777a35afa0bd31a12

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.0rc1-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.27.0rc1-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.3 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.17rc1

File hashes

Hashes for grpcio_tools-1.27.0rc1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 487d1660df818b3e806984cdf72efad217fe3e26091730eae16f454d398f3228
MD5 156fa2b8ddb0734e77406355825325bf
BLAKE2b-256 b1e87130690d642c14bfa6e5e03d70e7c6d7a10b832d94e31b37077ac88ee82d

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.0rc1-cp35-cp35m-macosx_10_9_intel.whl.

File metadata

  • Download URL: grpcio_tools-1.27.0rc1-cp35-cp35m-macosx_10_9_intel.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.5m, macOS 10.9+ 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.17rc1

File hashes

Hashes for grpcio_tools-1.27.0rc1-cp35-cp35m-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 d9bd2c1aefbb314287a7bec991e72766d46f959cee4eac2c27f6c5fe2692b7f5
MD5 f12a1ae454a7b35e9ff50296a368c1f0
BLAKE2b-256 a071be8db319f6960505dec3f8a2877a7c2c8ef341841ccf549c59ee028500ed

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.0rc1-cp35-cp35m-linux_armv7l.whl.

File metadata

  • Download URL: grpcio_tools-1.27.0rc1-cp35-cp35m-linux_armv7l.whl
  • Upload date:
  • Size: 24.9 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.17rc1

File hashes

Hashes for grpcio_tools-1.27.0rc1-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 f190fde1874c19eb9450476ebe78922e6299483b51db61ee24bea0594d50ebd4
MD5 5906d31aac4c57825d98e6be4af407d9
BLAKE2b-256 7d55ea4b8b8d8a1605dd17ca2cc86867ebff9d9a30d82664a1bc61ee5cb90f36

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.0rc1-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.27.0rc1-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.4 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.17rc1

File hashes

Hashes for grpcio_tools-1.27.0rc1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4a49426bea09a7da873ca09f2a9c7803fdc39bc33b141fb175e03851bfc81a8c
MD5 bfafd203705e76ba2294029f4b1a46b7
BLAKE2b-256 7ec052fb4e27752c08f703c3b5eea20c7351167d42855e492128a616938c0fbe

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.0rc1-cp27-cp27mu-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.27.0rc1-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.5 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.17rc1

File hashes

Hashes for grpcio_tools-1.27.0rc1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 bae2646144995bc0ecba7428d7543d15fbcafb5570ad557a8c61833db5cf1e23
MD5 491077391a3001b5b5dd6a7ad38b7690
BLAKE2b-256 e9c343c619cc5b82b1c7aafbc4fc197f01da60fcca07d1eeb54d2d6384990755

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.0rc1-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.27.0rc1-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 2.7mu
  • 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.17rc1

File hashes

Hashes for grpcio_tools-1.27.0rc1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a770a06ca3d45953e4bbb4e11d9e33136859237e0fee928f2c1f5f9691a3fc59
MD5 b935f72cb98b362b43e5bd7e52eb883a
BLAKE2b-256 ec9823b59a352f7e27bd1bded173e73eac0127d208d782d0cf26ff2ae41d937a

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.0rc1-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.27.0rc1-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 2.7mu
  • 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.17rc1

File hashes

Hashes for grpcio_tools-1.27.0rc1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 0d27bd04ca7fdbae9ab7515bf513e4894ede2492a1e8a05b2794cf894e61e0ca
MD5 145d40f6fd357c26fc9ac2b19609ba15
BLAKE2b-256 63c36631e862eba7dbe3966bb933491a493d74e852ca0b39ef7d4e8ece5b3175

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.0rc1-cp27-cp27mu-linux_armv7l.whl.

File metadata

  • Download URL: grpcio_tools-1.27.0rc1-cp27-cp27mu-linux_armv7l.whl
  • Upload date:
  • Size: 24.9 MB
  • Tags: CPython 2.7mu
  • 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.17rc1

File hashes

Hashes for grpcio_tools-1.27.0rc1-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 a91761dd9abd2c663db97dae1c32210610c68166ac8ee667a39748dbb88beb87
MD5 023ee3c24ba99ec8c23a90b70c13f4db
BLAKE2b-256 88608e3a55c33f58b775e4631b6d7082d5bef3d748b70dc2fd82e384d3b5a9a1

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.0rc1-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: grpcio_tools-1.27.0rc1-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 1.9 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.17rc1

File hashes

Hashes for grpcio_tools-1.27.0rc1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 6ac55dc0d4c88c772f2ef79ada05f7df06dd5980bbf0085464f0df7f3acffd2b
MD5 d01771a20ea7872e832213cfd5d2b5f5
BLAKE2b-256 1304c94997833478499a5536e481c7e2ea0fe0c62b661f54680193ed9cf035d9

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.0rc1-cp27-cp27m-win32.whl.

File metadata

  • Download URL: grpcio_tools-1.27.0rc1-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 2.0 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.17rc1

File hashes

Hashes for grpcio_tools-1.27.0rc1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 c7cb5ac6ca8cd175567e05d2303fe5ccf19470c3116fecdcc473e39dd3d8a4a0
MD5 235fe1b6e24d2e49c1c80e4339273da5
BLAKE2b-256 5983ebe4661c24ba0a417a4adbe1e9b2522cb299092d38c70b0c446afd29c6ad

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.0rc1-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.27.0rc1-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.4 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.17rc1

File hashes

Hashes for grpcio_tools-1.27.0rc1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3ebcf12528cd0b251bc7f473dd7380eb3af25300db6fceea8a06475c10f0006b
MD5 37a675a4781e1431aa825c7e67648509
BLAKE2b-256 c6411582a22832101403354848358fd159a19e9e88627e6ddda91783d083dc3d

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.0rc1-cp27-cp27m-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.27.0rc1-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.5 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.17rc1

File hashes

Hashes for grpcio_tools-1.27.0rc1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ab42a20606dcec2f09d9f081610ddba2dafb9577bd3cc8336a5ed1817eaa0cf4
MD5 07972a85cfc10843a587b0150f26cd68
BLAKE2b-256 8ea1f7f774fb7a7a5c313748c1497e96949382e09933bb736c2113c0392f464d

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.0rc1-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.27.0rc1-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 2.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.17rc1

File hashes

Hashes for grpcio_tools-1.27.0rc1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f2d4115863daa30c12189216bd22515a8de4200947c05653dceb4962254ff68c
MD5 e749d9410bc3f4a01c121b5cdd749d81
BLAKE2b-256 3c1d7b07f7ddb104b722390592a7daec5bfa9c5f14e803e1bc208a1d1abd12df

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.0rc1-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.27.0rc1-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 2.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.17rc1

File hashes

Hashes for grpcio_tools-1.27.0rc1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 683b9a5deca72ee9ad1643b04f16a5b980a6ca54b47ec672a84734be3f85c816
MD5 cfd09ec51c4ee4f9e89165549fce4471
BLAKE2b-256 21efa3bee942c120e119a372785acf17aa1a2804472190531fcd8d81e5f1c6ce

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.0rc1-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.27.0rc1-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 2.7m, macOS 10.9+ 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.17rc1

File hashes

Hashes for grpcio_tools-1.27.0rc1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 32f6da748b4e563aae555cddfb1aa859c4b6018c310df4962c9d225a59917009
MD5 49d9758b87b8e3577eb32141c6c5a80d
BLAKE2b-256 98cf6760aa8b5a02836408e46529d1efa8e59bbadb0419222852e8cb6f0a4528

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