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

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

grpcio_tools-1.31.0rc2-cp38-cp38-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.8Windows x86-64

grpcio_tools-1.31.0rc2-cp38-cp38-win32.whl (1.3 MB view details)

Uploaded CPython 3.8Windows x86

grpcio_tools-1.31.0rc2-cp38-cp38-manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.8

grpcio_tools-1.31.0rc2-cp38-cp38-manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

grpcio_tools-1.31.0rc2-cp38-cp38-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

grpcio_tools-1.31.0rc2-cp37-cp37m-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.7mWindows x86-64

grpcio_tools-1.31.0rc2-cp37-cp37m-win32.whl (1.3 MB view details)

Uploaded CPython 3.7mWindows x86

grpcio_tools-1.31.0rc2-cp37-cp37m-manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.7m

grpcio_tools-1.31.0rc2-cp37-cp37m-manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.7m

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

grpcio_tools-1.31.0rc2-cp37-cp37m-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

grpcio_tools-1.31.0rc2-cp36-cp36m-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.6mWindows x86-64

grpcio_tools-1.31.0rc2-cp36-cp36m-win32.whl (1.3 MB view details)

Uploaded CPython 3.6mWindows x86

grpcio_tools-1.31.0rc2-cp36-cp36m-manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.6m

grpcio_tools-1.31.0rc2-cp36-cp36m-manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

grpcio_tools-1.31.0rc2-cp36-cp36m-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

grpcio_tools-1.31.0rc2-cp36-cp36m-linux_armv7l.whl (25.2 MB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.5mWindows x86-64

grpcio_tools-1.31.0rc2-cp35-cp35m-win32.whl (1.3 MB view details)

Uploaded CPython 3.5mWindows x86

grpcio_tools-1.31.0rc2-cp35-cp35m-manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.5m

grpcio_tools-1.31.0rc2-cp35-cp35m-manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.5m

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

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

grpcio_tools-1.31.0rc2-cp35-cp35m-macosx_10_9_intel.whl (4.0 MB view details)

Uploaded CPython 3.5mmacOS 10.9+ Intel (x86-64, i386)

grpcio_tools-1.31.0rc2-cp35-cp35m-linux_armv7l.whl (25.2 MB view details)

Uploaded CPython 3.5m

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

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

grpcio_tools-1.31.0rc2-cp27-cp27mu-linux_armv7l.whl (25.2 MB view details)

Uploaded CPython 2.7mu

grpcio_tools-1.31.0rc2-cp27-cp27m-win_amd64.whl (1.9 MB view details)

Uploaded CPython 2.7mWindows x86-64

grpcio_tools-1.31.0rc2-cp27-cp27m-win32.whl (2.0 MB view details)

Uploaded CPython 2.7mWindows x86

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

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

grpcio_tools-1.31.0rc2-cp27-cp27m-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

Details for the file grpcio-tools-1.31.0rc2.tar.gz.

File metadata

  • Download URL: grpcio-tools-1.31.0rc2.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.18rc1

File hashes

Hashes for grpcio-tools-1.31.0rc2.tar.gz
Algorithm Hash digest
SHA256 84d528ec954104d0afe7ef6a7cb2b7b6d75e27d9bfdba9dc39ed3df0deb864ec
MD5 e15dbcc77fe81dadaafa373740b8d2ca
BLAKE2b-256 b6a56060e32c7c6720ed06df39d466abbc4284936050b51ece67b4ef927d07f4

See more details on using hashes here.

File details

Details for the file grpcio_tools-1.31.0rc2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc2-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 85d314e21c720d799ab14a344c2c61fc46571175bac804eb30ae265566e3610e
MD5 9c90eaa5065bc03132e8159fc0cb7757
BLAKE2b-256 6affaf2bd7f63a3d941f52bfd9b5bd76b8b60b52114c70cb643f89f9023a45dc

See more details on using hashes here.

File details

Details for the file grpcio_tools-1.31.0rc2-cp38-cp38-win32.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc2-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 3e06d5bb1f80bbafa81999968d1f37fff6a9dc4c7188de89a9c5effe8b912bba
MD5 5bf140c0c41f49fbd071c1726c58e6ab
BLAKE2b-256 fb415e620c875db51782dc19b1af8c7b3eb98d326687a6f2f6d4e51804397554

See more details on using hashes here.

File details

Details for the file grpcio_tools-1.31.0rc2-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc2-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc2-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9947941ed378b351f31eaaa918baeee1b0886ed45e25264e400c572201a74efc
MD5 20bb494bad17a54c8a7151aae4b15027
BLAKE2b-256 9a02a65dfd242bd5acd72b81de5298fdb5518322b768ef0c9dd83f98cf3b9988

See more details on using hashes here.

File details

Details for the file grpcio_tools-1.31.0rc2-cp38-cp38-manylinux2014_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc2-cp38-cp38-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc2-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d0021f597d13b4b3f9d9885e1bd675495e841aa734b4faab5678a54594ea34c4
MD5 6a239b98c2434540c1935258a0a14ebe
BLAKE2b-256 1fa18c5207e7ea6d33a2c2dcca3cabf3a0696c4c29681482cf80d2ef74869b93

See more details on using hashes here.

File details

Details for the file grpcio_tools-1.31.0rc2-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc2-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc2-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 85970ad6ed401bc65d60ebfdd6223c6704c84bc65fdc35fea756120399a28c3e
MD5 0c92f852ba0ab28f743937de9142b4d8
BLAKE2b-256 3571b7ef03ef982d5c15fcbd25f9e4dcc5c1ea4c6492bf1e0e8a3b2742bd50e7

See more details on using hashes here.

File details

Details for the file grpcio_tools-1.31.0rc2-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc2-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc2-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 34ebd902e44b7f17d4fd54839ef8421ff235fe92faa1147a5d0b17c87fccdafa
MD5 c32a430736b79fed2cb7d1379e61de5c
BLAKE2b-256 91beeeb01ad3f3768b0a7d80eb60875608af36226adb563406aecf0ceaa2a942

See more details on using hashes here.

File details

Details for the file grpcio_tools-1.31.0rc2-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc2-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 123e2e646ec62a64f62416bc0d23b90081ee91e6724c50c8f83ca58a7a49fb5d
MD5 81556db4090f5c1bc4dbb568458ed983
BLAKE2b-256 4f56b759da1b2b7dc446afc72f319eb55e411ae99f980d14aaf0ae551b803750

See more details on using hashes here.

File details

Details for the file grpcio_tools-1.31.0rc2-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.6 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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 5141574f571cff40b0dd2eb0eed42fc52282159d8af74ac2c42894ed785c32ce
MD5 c4d3f192a2e515e7ecd3511823097761
BLAKE2b-256 ecebca2690c5459e279f8a20a5423921e040d7263596727adce558294c16e396

See more details on using hashes here.

File details

Details for the file grpcio_tools-1.31.0rc2-cp37-cp37m-win32.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.3 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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 fb43fe0d572f4187e32554b758fdd26d57db970867a3028c2dffc9650f415025
MD5 a447dadf88b0e980c17423918fca944e
BLAKE2b-256 40f16c153686545a3a83e2f5b9e8a9d05568c6684e43778c23a212efefa6a036

See more details on using hashes here.

File details

Details for the file grpcio_tools-1.31.0rc2-cp37-cp37m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc2-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc2-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e5a987037c843060d9858ce1fbb31199f9e93646c5702c4e97162f5e7eeef1a1
MD5 f620505a7cafa713cd660aa457fdb1b4
BLAKE2b-256 69deb46fe1cfe1d75d5a93d81e5fe1ac6af0b39ab77fdc0863713da87e85d2d3

See more details on using hashes here.

File details

Details for the file grpcio_tools-1.31.0rc2-cp37-cp37m-manylinux2014_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc2-cp37-cp37m-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc2-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1542662c8d948e298702e468fb36d9980720d5d8aef3193052fd4c323a5a76f2
MD5 a5a8fdb02193a1d918a975acb697d0ba
BLAKE2b-256 e6fbbce10e7598a137c5e6414a350a93f12a24e3f3d3ad7ab5635444c892f987

See more details on using hashes here.

File details

Details for the file grpcio_tools-1.31.0rc2-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc2-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc2-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 99460c1d3c11ece63a325f499e6ba277b6a8f0e596990b415a7c3b75a521d0e2
MD5 8fec7183d90d6d5bbc9981cd127d04be
BLAKE2b-256 0a8bc58d2facbbbe255509a28a85c59fb7e286ba60dd6e95354cf16fac710cdb

See more details on using hashes here.

File details

Details for the file grpcio_tools-1.31.0rc2-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc2-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc2-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 177a8fca993cae0332e25f6d1464273e0d032b5f4b952377489863f28be41084
MD5 bbec54038a824d2b66fff68335030f40
BLAKE2b-256 99f329a3cf9c5bd98bb958455bf5936d1cefab2d64d3c0a68ef17c589e18b07c

See more details on using hashes here.

File details

Details for the file grpcio_tools-1.31.0rc2-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc2-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 35d38285acb07b3e1291340fe4e54dd6432f6b78aec865bdca1717bbcf62e735
MD5 51b6f021be5c5eacad655c600ec30c87
BLAKE2b-256 6b16a3e1efe9d30f1e4b227bc768c52bd42d780d7a1cc20034743565118e48d7

See more details on using hashes here.

File details

Details for the file grpcio_tools-1.31.0rc2-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc2-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 16c274a458dcc48a19b811b3b76c6d6f9e4100f86a9841cad8dc3572aa7ab418
MD5 2fa8debacc69d14d1f2145a8e4acb77e
BLAKE2b-256 70f8f9ff43a854fe96abb019a0b8cdf05827ec647cb325f290a3d5c544754b52

See more details on using hashes here.

File details

Details for the file grpcio_tools-1.31.0rc2-cp36-cp36m-win32.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc2-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 037a4b5377e798bdfc540f23a5b02a8f6badec9c59cc97087a21926a4853c38a
MD5 d314ea160c0675aab3ad857ba04cc353
BLAKE2b-256 f6b262cf4b5f1ef807201db0c882afa699ffcd99706a165c4366d280e2ccfbc8

See more details on using hashes here.

File details

Details for the file grpcio_tools-1.31.0rc2-cp36-cp36m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc2-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc2-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b769051bfe1f88f91f10b29d44402207aec1fd1595de2dfaf1773b3fb3b0e3a
MD5 32504882f6eaadb5d834faf507dc9f2f
BLAKE2b-256 5fd388a737f555dd3a5fc5657db24c5796de358ee9893d845d65dcae92d818fa

See more details on using hashes here.

File details

Details for the file grpcio_tools-1.31.0rc2-cp36-cp36m-manylinux2014_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc2-cp36-cp36m-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc2-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2cfa868899f5fbb89c82ce1d69da59f06e9688e0dc0d743658c43f231759b986
MD5 87ec1965d0b03e0b4b23cebf50125e18
BLAKE2b-256 38210ba5602720060cfe3a1488e109d0ad5dba0ee6e00bcd9a24e7eed8a5c9c8

See more details on using hashes here.

File details

Details for the file grpcio_tools-1.31.0rc2-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc2-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc2-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e70b9b00cefc33940bd2d0c07f917e15e4587578fb4008630a401c60a9c4c796
MD5 47c5be7be8b63e6a979264ec3c309c5b
BLAKE2b-256 10aadd05859338a6b1c55034c7c876fbca31830f2ec4c5ea2955142a4fef5186

See more details on using hashes here.

File details

Details for the file grpcio_tools-1.31.0rc2-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc2-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc2-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b22e97b8f3ea6903b6019d090be5f2f6de3a9819243eb2704ac5d1c7f0ad9368
MD5 27162b7be7aba21d1a3301c5d8cfaec8
BLAKE2b-256 94d04b4d702471beea9ee35e585c2ef5b44ca44f1587c27d44a9da6ace10ac41

See more details on using hashes here.

File details

Details for the file grpcio_tools-1.31.0rc2-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc2-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc2-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dae527d5fa6380e79fb5b5eaa3f69af65582af93a3c063e5b9ae14646d574ed2
MD5 c8cda482a091e2ad10a62e9d713879e4
BLAKE2b-256 b34a84307dd542bcc5afc5ec7b53415ceda4234639016605c925580462d5eef7

See more details on using hashes here.

File details

Details for the file grpcio_tools-1.31.0rc2-cp36-cp36m-linux_armv7l.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc2-cp36-cp36m-linux_armv7l.whl
  • Upload date:
  • Size: 25.2 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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc2-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 5ce96d6d8625b69084dbbbd2137bf078412a4e89c2f83c7c44d2b5dcf3795873
MD5 3239c553c220277a08386273b6f07291
BLAKE2b-256 2fc04fe36c0e38a23861328f38018378227b6f8fbe60e5f973444d753599836d

See more details on using hashes here.

File details

Details for the file grpcio_tools-1.31.0rc2-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc2-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc2-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 ee493105e22693e0d75a8a0898b9219bb935f6c352ee2fb3942735b153999426
MD5 cd6c386975730dc4e4ffc8f5dd5a974b
BLAKE2b-256 8ae1fc819779b48e5c57b5ea11341f8c4d69f8a76b7cdce1210864489a6e7042

See more details on using hashes here.

File details

Details for the file grpcio_tools-1.31.0rc2-cp35-cp35m-win32.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc2-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc2-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 6e4e57f2a82628ea3efe278073563a2d314c256137470bf29af2dce7121aa4b5
MD5 6bca6576b77a5a631de3051e963bc943
BLAKE2b-256 dde8b1391480692c9f94efa130f901708eeaa990ff50160b55959ca1b3b0602c

See more details on using hashes here.

File details

Details for the file grpcio_tools-1.31.0rc2-cp35-cp35m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc2-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc2-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0c9aa36fb35347b92b9daa07c1b491979c657786a52483e3dfd222261f656376
MD5 14a17bcf28069e5837851466e068d356
BLAKE2b-256 b18bb42d9c3ee8b8302d059f73adf6a8d191f0e4ef2af3a6f577124c637e43a2

See more details on using hashes here.

File details

Details for the file grpcio_tools-1.31.0rc2-cp35-cp35m-manylinux2014_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc2-cp35-cp35m-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.6 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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc2-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7279d3d9b9428a46469fa8f9681c73adad18fb8d37edff419e21d7e072ae9a18
MD5 da1dd789f71d542161bdc8d0cbd8d4bb
BLAKE2b-256 4d519e238fecc9a3600f092e857d976a693607cd9f0f15aa6577ea445e80fd16

See more details on using hashes here.

File details

Details for the file grpcio_tools-1.31.0rc2-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc2-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc2-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 247101d67e9d604c34680e4b6e5eae1bdd4f5ef289d01cec72c467cfe0a6f0db
MD5 8291575007a60b1da224d89291f77196
BLAKE2b-256 481b7a4d93cf2124de381e4cd72de4ff2d9ee9d4a3695fd4efb68e4d0863d1e8

See more details on using hashes here.

File details

Details for the file grpcio_tools-1.31.0rc2-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc2-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc2-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6234bf39b1de78e76ec0e40f370189320a71adb58b415a9ce09e5b47c87bfc1c
MD5 a25a41d617e70a01a9d213586231c31e
BLAKE2b-256 3585f520516ddf2c461c4b94917a1967339c11528b351cefb34d1f55ed237d66

See more details on using hashes here.

File details

Details for the file grpcio_tools-1.31.0rc2-cp35-cp35m-macosx_10_9_intel.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc2-cp35-cp35m-macosx_10_9_intel.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.5m, macOS 10.9+ Intel (x86-64, i386)
  • 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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc2-cp35-cp35m-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 c9b7cb07bca856c4987c10a32ba6cd6dab65938699bad68685002979b31aa2d7
MD5 62077f881c0f485f86ca44f46b268fbe
BLAKE2b-256 7372db12741c6217c17e5cd36dab56c15b561174f16a756356a8b7d919d22738

See more details on using hashes here.

File details

Details for the file grpcio_tools-1.31.0rc2-cp35-cp35m-linux_armv7l.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc2-cp35-cp35m-linux_armv7l.whl
  • Upload date:
  • Size: 25.2 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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc2-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 5f789b196a9d70f25e512faca7addf7ec7f9f4720a5e3b10b111d928a68e858a
MD5 3701967b619b0a37935f6b42abc2e71b
BLAKE2b-256 210693372d0f8d852bdd0fbcb3fb8d84b3d50ddc609b928947a3c793b3dde09e

See more details on using hashes here.

File details

Details for the file grpcio_tools-1.31.0rc2-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc2-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc2-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 49de3903e7d98dd1f0c1f6ec3a7282c5cf9d00599db21922a76f72e0729595cc
MD5 64456c11b2237e6c4006ea9c171f789d
BLAKE2b-256 05dd87d799842d2b9e1c7cf75ec2eaf41cac765e9559469886f8a4b5f49343c2

See more details on using hashes here.

File details

Details for the file grpcio_tools-1.31.0rc2-cp27-cp27mu-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc2-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc2-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f8ab4456e2c15ebbe5830dce31c8b068108edd1d6a39c0b8063aa8baab1f8062
MD5 8fa7594673545bdc77750a3eaf2c4612
BLAKE2b-256 97afb2414d1c5187578e60f1980101409a3cc9bb36aa45e34966fb56a55259fe

See more details on using hashes here.

File details

Details for the file grpcio_tools-1.31.0rc2-cp27-cp27mu-linux_armv7l.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc2-cp27-cp27mu-linux_armv7l.whl
  • Upload date:
  • Size: 25.2 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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc2-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 3277f64ac1d0511affbd60550fdf6b4a2664f6fb6eac7e3e0ac57f1f4d592f29
MD5 19656505319b9cac1c42f6d83441c72e
BLAKE2b-256 b3ebabf74447cc01c789e93303f330aebb675e3c5d602d20252d86745afcca1a

See more details on using hashes here.

File details

Details for the file grpcio_tools-1.31.0rc2-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc2-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc2-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 451556fbcf1fa06b3607d1ef47078d4ae9e23ab8b6ef20993296df7cf0752736
MD5 b2ac6abeff27ebf430f57e9b7122e0da
BLAKE2b-256 12fc4f4c563e38c8572bd485d4135ed99ab97379f57a1aacda59e1997c99e40d

See more details on using hashes here.

File details

Details for the file grpcio_tools-1.31.0rc2-cp27-cp27m-win32.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc2-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc2-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 6599052c5ee518a880aeefbbaf802d1ed9bad50e1dac4a8cc0bfad8f3dacac44
MD5 0ef292e49e27e58d96e85c39cadfb0c9
BLAKE2b-256 24a93ae321a87a1e8bdac095f06280160cadb7ec74510e22cb3b79053bd84a7c

See more details on using hashes here.

File details

Details for the file grpcio_tools-1.31.0rc2-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc2-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc2-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e0065bc0b26ee8165e313bd91d99a26bc87af7fabc141865ffee08d2de305b14
MD5 b82d98c70ce116a3cc20ae8d53e4373c
BLAKE2b-256 1ae6463323d7f3df1aa63ed0a5cb304fa52cb1aac6277b1b519eb6f009996bac

See more details on using hashes here.

File details

Details for the file grpcio_tools-1.31.0rc2-cp27-cp27m-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc2-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc2-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8d5ac881a9f0b86f6cbd82cc7717fbd87cbf9faae3764822d51bda723b13a748
MD5 608df455e84819ab0ea9539351a1eaf6
BLAKE2b-256 aff8c5f8954bc179d7b9c1916fcd479c9ffc63b3bbf9d8e3064137fb51dd5f47

See more details on using hashes here.

File details

Details for the file grpcio_tools-1.31.0rc2-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc2-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc2-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 94599f562a32bc51cfda77f15cebdca155b6c6e8c7e2f2c42af3e495c9c29f35
MD5 3241d5c73553a886944a24d4a19de9c7
BLAKE2b-256 b1918023dd199cfe327f5cf6d98a2435621040eab77f7fac84102f8401b4febc

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page