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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

grpcio_tools-1.27.2-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.2-cp38-cp38-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

grpcio_tools-1.27.2-cp38-cp38-manylinux1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.8

grpcio_tools-1.27.2-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.2-cp37-cp37m-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

grpcio_tools-1.27.2-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.2-cp37-cp37m-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

grpcio_tools-1.27.2-cp37-cp37m-manylinux1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

grpcio_tools-1.27.2-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.2-cp36-cp36m-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

grpcio_tools-1.27.2-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.2-cp36-cp36m-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

grpcio_tools-1.27.2-cp36-cp36m-manylinux1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

grpcio_tools-1.27.2-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.2-cp36-cp36m-linux_armv7l.whl (24.9 MB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

grpcio_tools-1.27.2-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.2-cp35-cp35m-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

grpcio_tools-1.27.2-cp35-cp35m-manylinux1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m macOS 10.9+ intel

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

Uploaded CPython 3.5m

grpcio_tools-1.27.2-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.2-cp27-cp27mu-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

grpcio_tools-1.27.2-cp27-cp27mu-manylinux1_x86_64.whl (2.3 MB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

grpcio_tools-1.27.2-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.2-cp27-cp27m-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

grpcio_tools-1.27.2-cp27-cp27m-manylinux1_x86_64.whl (2.3 MB view details)

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

grpcio_tools-1.27.2-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.2.tar.gz.

File metadata

  • Download URL: grpcio-tools-1.27.2.tar.gz
  • Upload date:
  • Size: 2.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.17rc1

File hashes

Hashes for grpcio-tools-1.27.2.tar.gz
Algorithm Hash digest
SHA256 845a51305af9fc7f9e2078edaec9a759153195f6cf1fbb12b1fa6f077e56b260
MD5 fa7e9c3e0a7886469b14603da94a7586
BLAKE2b-256 348108f956aab9a2f28ea01e29c1935a67f48627a595bdc78c2a401467ae06c0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.27.2-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.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 84724458c86ff9b14c29b49e321f34d80445b379f4cd4d0494c694b49b1d6f88
MD5 c980ed0e7e87a7eb82af1c6c572e910f
BLAKE2b-256 294a46e4730bf0fdd96090087c8a8cb2108c4d127281282af818763c991d6ad0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.27.2-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.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 8e7738a4b93842bca1158cde81a3587c9b7111823e40a1ddf73292ca9d58e08b
MD5 78f7a3ac5d4aaf4bd52be0ad6ae15b62
BLAKE2b-256 8201f6c473bccbeea37640e3866e67ce0f269489a9663b011389ba2b00cb34f8

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.27.2-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.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.2-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a3d2aec4b09c8e59fee8b0d1ed668d09e8c48b738f03f5d8401d7eb409111c47
MD5 0a86954536e99d54f0af3743d401454d
BLAKE2b-256 ae625a8f0f07f65b8a0ba664d7e1fa54acf8f9861d403efce6d470d7652b8916

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.27.2-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.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.2-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1266b577abe7c720fd16a83d0a4999a192e87c4a98fc9f97e0b99b106b3e155f
MD5 bc00fd4838c18e1aa318c8eb907199ee
BLAKE2b-256 22d54323dd1313241106f699b64e003da189b5d4cf18b66d7c656948d0812f49

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.2-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.27.2-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.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.2-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 aaa5ae26883c3d58d1a4323981f96b941fa09bb8f0f368d97c6225585280cf04
MD5 ece493bee207db2cf44cd4f1e6ea0f0f
BLAKE2b-256 6e67603574b43826a5c393532d102ea23f43ad6984b506c1ca82bf63fa436ddb

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.2-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.27.2-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.2-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f5450aa904e720f9c6407b59e96a8951ed6a95463f49444b6d2594b067d39588
MD5 5980e19617c5ada286bf041072db0939
BLAKE2b-256 965d87ccc7063931d33be1a6c1b990129a972393e5ffb622efef327df8ea1e04

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.2-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.27.2-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.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 00c5080cfb197ed20ecf0d0ff2d07f1fc9c42c724cad21c40ff2d048de5712b1
MD5 da374cc3baec817fe46d81ab3c09a449
BLAKE2b-256 b89946ee3292d8beadc890926495d620187628df11cc2d16b3c80ee849816009

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.27.2-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.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 59fbeb5bb9a7b94eb61642ac2cee1db5233b8094ca76fc56d4e0c6c20b5dd85f
MD5 5f04ef2431439a417c03761cb017d80a
BLAKE2b-256 fd097f38c1789198bfe179707f38ea31c5fe973ee92046c6cecbc657269b8734

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.27.2-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.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 2ca280af2cae1a014a238057bd3c0a254527569a6a9169a01c07f0590081d530
MD5 231ba4fd16f77159deef8a49cf198077
BLAKE2b-256 5690ecd59f4a3c746decd22a9fe7714ab5f754244e7afdbfa525c6fd384d6662

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.27.2-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.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.2-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 57f8b9e2c7f55cd45f6dd930d6de61deb42d3eb7f9788137fbc7155cf724132a
MD5 cb71506c43a1db50b6bab1ea44143983
BLAKE2b-256 ad5c5f1ee0cb68fef0fe2901809306208cfc95811975aeb6c7d95146c7102ffd

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.27.2-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.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.2-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 43a1573400527a23e4174d88604fde7a9d9a69bf9473c21936b7f409858f8ebb
MD5 d7de22c1b3c600d17f60980e36979c6e
BLAKE2b-256 a221fba45f7cd2591487f8899559058bbab0bdd97e94de09bbbead07d6fe07d3

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.2-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.27.2-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.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.2-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e6932518db389ede8bf06b4119bbd3e17f42d4626e72dec2b8955b20ec732cb6
MD5 fa39f806a7086670dc2e9e5d8c019d30
BLAKE2b-256 b62a58c0e6fedda4f632c4ce04c6ef394eb74f1e1727921f770b744855fff676

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.2-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.27.2-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.2-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ef624b6134aef737b3daa4fb7e806cb8c5749efecd0b1fa9ce4f7e060c7a0221
MD5 2edbfcae297a5e28433293a077fae741
BLAKE2b-256 5222d7522ae69040ac0e4af668412c873938a3aa6fdb260857367a522596d91c

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.2-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.27.2-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.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 627c91923df75091d8c4d244af38d5ab7ed8d786d480751d6c2b9267fbb92fe0
MD5 9d16f82a87de525121accb981e26ebd0
BLAKE2b-256 01ebfda16952ee83405ac74d8cbe9b3c9b466989ac5c3dd9408586e3d9c40b1b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.27.2-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.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 ee50b0cf0d28748ef9f941894eb50fc464bd61b8e96aaf80c5056bea9b80d580
MD5 019a536da7204a44bf98f0fb287c2b07
BLAKE2b-256 a0c0241e6a0ad71a24b73d20765a795d9e399208f7aee6ee044554741c0e61cf

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.27.2-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.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 520b7dafddd0f82cb7e4f6e9c6ba1049aa804d0e207870def9fe7f94d1e14090
MD5 b646c0509e24d01ba6b02a48198dfe80
BLAKE2b-256 2542ed2f13251d1db0327dbaa2d3231c9bd0fcc38b5c0cf913cfe6e618db2b71

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.27.2-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.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.2-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e17b2e0936b04ced99769e26111e1e86ba81619d1b2691b1364f795e45560953
MD5 5fdcd10d879033cebdd1eb561624f0f9
BLAKE2b-256 2f5c9906632341bf5e67d4934ce1fe72d1c74dae96b64ae1e8c2bfb2a04e8e35

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.27.2-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.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.2-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c1bb8f47d58e9f7c4825abfe01e6b85eda53c8b31d2267ca4cddf3c4d0829b80
MD5 840483874c133830de7892698324d02e
BLAKE2b-256 369199a36a1c291a54b0266a0529dcd11e9135d8823a451635f3359528adad16

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.2-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.27.2-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.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.2-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f8514453411d72cc3cf7d481f2b6057e5b7436736d0cd39ee2b2f72088bbf497
MD5 0f31fc63623dbab5d56937e4400d609f
BLAKE2b-256 3c8faa4ac12c4116b64ebcfb080e2f3ab11af036651d3935317f5d13d8e519fd

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.2-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.27.2-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.2-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b56caecc16307b088a431a4038c3b3bb7d0e7f9988cbd0e9fa04ac937455ea38
MD5 c35608db6c159eb61d0da65476be2ee2
BLAKE2b-256 37249b3936292ba784a655f2a9ca91c408bb49a29e8b5f88c969f2d38314cc84

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.2-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.27.2-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.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.2-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9ba88c2d99bcaf7b9cb720925e3290d73b2367d238c5779363fd5598b2dc98c7
MD5 65dfbad9e1d3879f1b2688f8b44cea9d
BLAKE2b-256 15a2ba2c43d55a19db1d4bf47099a5ae0190357c774abbc4a4804bd517ef27c3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.27.2-cp36-cp36m-linux_armv7l.whl
  • Upload date:
  • Size: 24.9 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.2-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 5fd7efc2fd3370bd2c72dc58f31a407a5dff5498befa145da211b2e8c6a52c63
MD5 c4dd9533cd11399e56adde349265b6cc
BLAKE2b-256 e8834b848a314e50cf9b68632b84d33f9cb9f853ac76ae4eefcf7f2b4405a964

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.27.2-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.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.2-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 77e25c241e33b75612f2aa62985f746c6f6803ec4e452da508bb7f8d90a69db4
MD5 0374eee8656fc7c6c4035f301bcfcf4e
BLAKE2b-256 bcd709a02b602721159780858c43bf5f1c02182959851f812a47c576438041a6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.27.2-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.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.2-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 a140bf853edb2b5e8692fe94869e3e34077d7599170c113d07a58286c604f4fe
MD5 1a1dfefe3234160f2fe23605d0bc26b5
BLAKE2b-256 b3faad631a29fc502d621a6823bca5fb22c7c310800026dedd729f6c628ef64d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.27.2-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.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.2-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ea4b3ad696d976d5eac74ec8df9a2c692113e455446ee38d5b3bd87f8e034fa6
MD5 1c22b555c0ff34604ee197317cd66e49
BLAKE2b-256 7635ac5f663b9f5c6761b17475007a3b1d41de58630889aa81eaca8da1c713bb

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.27.2-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.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.2-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 915a695bc112517af48126ee0ecdb6aff05ed33f3eeef28f0d076f1f6b52ef5e
MD5 9b2f6bbe1a6054d0adadf3b6f0e5661e
BLAKE2b-256 6cf518657f68bd69f208e08eb33c2098b9aa2f4298e280eade5b438c6fac7de9

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.2-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.27.2-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.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.2-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6016c07d6566e3109a3c032cf3861902d66501ecc08a5a84c47e43027302f367
MD5 0c064399d36816a46fd48dd11155a5a0
BLAKE2b-256 b6eaf75ba0f8d1e0fbfef74bec22b66a9deb2ac1417ce586cdafd61cd80a1698

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.2-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.27.2-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.2-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1de5a273eaffeb3d126a63345e9e848ea7db740762f700eb8b5d84c5e3e7687d
MD5 73c239b8d0c63ed4fb83ed9621087274
BLAKE2b-256 ccb426c509bcd776df4e4709cbd6cfbe4eb92576a6eedec4ac3687276f614af6

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.2-cp35-cp35m-macosx_10_9_intel.whl.

File metadata

  • Download URL: grpcio_tools-1.27.2-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.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.2-cp35-cp35m-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 16dc3fad04fe18d50777c56af7b2d9b9984cd1cfc71184646eb431196d1645c6
MD5 490a032593d8538009acc9bd65192dd9
BLAKE2b-256 3327852c302d04e7af36e9ea450223a69706507981c3c9f73a93cf647638d797

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.2-cp35-cp35m-linux_armv7l.whl.

File metadata

  • Download URL: grpcio_tools-1.27.2-cp35-cp35m-linux_armv7l.whl
  • Upload date:
  • Size: 24.9 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.2-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 dcbc06556f3713a9348c4fce02d05d91e678fc320fb2bcf0ddf8e4bb11d17867
MD5 1222a81ddd9f4f53990c212f9ac9148c
BLAKE2b-256 4865cbbe62f5fdbb7c5bb1de00ffc05f3e5d29912bd6dec350f007b0f73be2f2

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.27.2-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.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.2-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 69c4a63919b9007e845d9f8980becd2f89d808a4a431ca32b9723ee37b521cb1
MD5 c47bf4dd547b8453a0e042598481bc76
BLAKE2b-256 f917582cab0ca580e8d79709925875cc650390ed36034958789db62ebe1b33da

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.27.2-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.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.2-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a8f892378b0b02526635b806f59141abbb429d19bec56e869e04f396502c9651
MD5 06a7a2fa9990e2c72d437bb9a4de5443
BLAKE2b-256 e35a355f8d4787dca64ffbdc538694e67bfa5ed3edac1c5e431af849078ce939

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.2-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.27.2-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.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.2-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bd7f59ff1252a3db8a143b13ea1c1e93d4b8cf4b852eb48b22ef1e6942f62a84
MD5 7a2df933544047933de99ff7d266910b
BLAKE2b-256 2193f8b7d6029b57def302709484d853c8b100ba82fbdb9e0a1bc7e08a73cb3a

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.2-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.27.2-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.2-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 87e8ca2c2d2d3e09b2a2bed5d740d7b3e64028dafb7d6be543b77eec85590736
MD5 ce55231b29086eefaafd65dbca526416
BLAKE2b-256 9c51f25477bd7b51eda2d5d78e7872f820329965c380d1ec4d36c69169f0b2ea

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.2-cp27-cp27mu-linux_armv7l.whl.

File metadata

  • Download URL: grpcio_tools-1.27.2-cp27-cp27mu-linux_armv7l.whl
  • Upload date:
  • Size: 24.9 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.2-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 4698c6b6a57f73b14d91a542c69ff33a2da8729691b7060a5d7f6383624d045e
MD5 8395f1aa5145d9d89e8a81683b967574
BLAKE2b-256 80f26f8042e970d19eadc98c9a5572651351f5c453d9c48ace4709aa5438afb5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.27.2-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.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.2-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 7b54b283ec83190680903a9037376dc915e1f03852a2d574ba4d981b7a1fd3d0
MD5 a71daabd78a7fca67ce25ad183527e02
BLAKE2b-256 25c05edb01d0fe3b290f5c987bed4c23d8d66904678b492a2d90a207b1e31959

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.27.2-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.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.2-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 d1a5e5fa47ba9557a7d3b31605631805adc66cdba9d95b5d10dfc52cca1fed53
MD5 2337ba8b927b8e3facc5fec2c4fa53bf
BLAKE2b-256 d4b35d0493c832dbb84bd1bf12c3e375cbdda031b719542ae12369ad601e70be

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.27.2-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.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.2-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a14dc7a36c845991d908a7179502ca47bcba5ae1817c4426ce68cf2c97b20ad9
MD5 5b9c95b4228c7b7b9e2887cc50a02318
BLAKE2b-256 161260e7be8ea3b5133f4dc57e35aeae548da4250f9cf89cb542ca900aad3599

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.27.2-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.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.2-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 fae91f30dc050a8d0b32d20dc700e6092f0bd2138d83e9570fff3f0372c1b27e
MD5 6581adc388bc2cebca2ae8c85bbf1a9b
BLAKE2b-256 8a70450d187508181ea7891e455060880cd96c5613cba1a48a46a0e3f9fcbe02

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.2-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.27.2-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.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.2-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 069826dd02ce1886444cf4519c4fe1b05ac9ef41491f26e97400640531db47f6
MD5 6edec7fc0a27d6ba284d92631fc05908
BLAKE2b-256 f793daf2e25acd9054ec5acac945bcc3bf1544167e887d9c18bdf9aac8b58bd1

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.2-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.27.2-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.2-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 99961156a36aae4a402d6b14c1e7efde642794b3ddbf32c51db0cb3a199e8b11
MD5 7b48ee95dbaaa0fd7ab8737ee6c0f93a
BLAKE2b-256 0152d04fc5026b1145511bd8333e52823d769a7fbc28798fff43bea78b735ebb

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.2-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.27.2-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.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.2-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7a2d5fb558ac153a326e742ebfd7020eb781c43d3ffd920abd42b2e6c6fdfb37
MD5 577e7215fd92c372a5a4f4a299608293
BLAKE2b-256 d4faadd094256f625b4b821bdac68dc86dddeccae5ede24eb6b5e6672e758791

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