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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

grpcio_tools-1.26.0-cp38-cp38-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

grpcio_tools-1.26.0-cp37-cp37m-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

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

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

grpcio_tools-1.26.0-cp36-cp36m-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

grpcio_tools-1.26.0-cp36-cp36m-linux_armv7l.whl (22.0 MB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

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

grpcio_tools-1.26.0-cp35-cp35m-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m macOS 10.9+ intel

grpcio_tools-1.26.0-cp35-cp35m-linux_armv7l.whl (22.0 MB view details)

Uploaded CPython 3.5m

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

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

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

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

grpcio_tools-1.26.0-cp27-cp27mu-linux_armv7l.whl (22.0 MB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

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

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

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

grpcio_tools-1.26.0-cp27-cp27m-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: grpcio-tools-1.26.0.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.26.0.tar.gz
Algorithm Hash digest
SHA256 5580b86cf49936c9c74f0def44d3582a7a1bb720eba8a14805c3a61efa790c70
MD5 a88f390ce94adca62a8a003fd758bfac
BLAKE2b-256 a77d09e5e439a46d42a5f1762191721968a1f9cdea8b940793ac1aed85d58360

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0-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.26.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e7e90bad5466347a3648358e9f437e72d5f6d6025fe741171a88aca8b9d864df
MD5 3c870e116a799d3bca46e1aaac681434
BLAKE2b-256 e9018eb6ebae4539d063f1a25ab5ca807394b33c50ee000981dfee82d9460fe1

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0-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.26.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 3922dffd8160d54dc00c7d32b30776a974cc098086493c668faffac19e752087
MD5 27d5f8290c339e833eac20ace8e792cb
BLAKE2b-256 7b753d60186268d2a2b78a054f475d06d3c26bff895228c660e7c377cfb309c2

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0-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.26.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 27ae784acff3d2fa04e3b4dc72f8d60a55d654f90e410adf08f46a4d2d673dd3
MD5 47580fad785b7d6e937e6ed59707c4d0
BLAKE2b-256 75f5ba5f66145a76e38ea55c942e91030ff791133f58863e3cffddb0ac893c75

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.26.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 bfe0e33aea60da100b214c72c1746cc0194bb8da910004518c185041cc795543
MD5 12f72fe4fa197afe30bbfdaa485de8cc
BLAKE2b-256 b355f1898dfcdb281d206af0a5c9f3cc315f3da40dae7409b690552f1d581fad

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0-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.26.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b1bc78efefb8e085c072add2c02326fdecad9b8644b3be11e715ea4c6102ad87
MD5 8af8406b22ccf19e6503b41c84a39018
BLAKE2b-256 8a942d7bdcbe97e832e4fc6a4a311b7f47075c92e9c23d9eecb20ac9c62f3510

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0-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.26.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 131aa8c3862a555819428856f872ab9e919e351d7cd60c98012e12d2fb6afc45
MD5 2b47251dff792d3f0f7b9acd3c0bb0df
BLAKE2b-256 41cc5baed0e42ac1470decff626a555b1f3303ac1a8d55d81ab136dfdbebfa58

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.9 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.26.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c56d0ac769bf1f01dbb6ec6b6492849e70cd35bdeeb660e206a70ab43917ae92
MD5 b3a254075a169515b539ee600e7fead1
BLAKE2b-256 08126744fd5ba3381615c57ccda494bc017934d05c23e2fddca1a9bc4e41feca

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0-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.26.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 f290cccc972533a288c2ebc55eb3c0fbe0c6a0d0a9775cb34ce6bfb11fe14a11
MD5 f9a24912463241c86045a6ba50bd4874
BLAKE2b-256 87e6fd03381846498b66de99ccdc08d8d587d1c5d05b5d936c5b75ed641be8e8

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0-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.26.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 fb043e45f91634776acdfe4b8dfc96b636c53a458799179041ab633e15c3d833
MD5 a9d26b02c17c349573e62fc90f59dbfe
BLAKE2b-256 45f2cb0d33afd18869e5aa4d3219c3df16fc8c96a2da580a0304a48df4f6c1e1

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0-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.26.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 96c6f657b93f49243d083840d27a5a686a1fc26044a80ebf8585734d5152d4ee
MD5 f42007d03fb37a33f443e946b2a918d6
BLAKE2b-256 e214e776756b4469bc4ac4b39938550e0e859dd5fef5a2ead5e49cab2764f96e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.26.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 33c6bee5a02408018dc10a5737818d2159f14cbb0613df41cc93ba6cbaeea095
MD5 7c9dd8fa160cf16cac56966035898608
BLAKE2b-256 5e350972bf6fd1f33c906a5d4625b70deb86ef48f3812c9127932649885a5828

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0-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.26.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4ba7e5afc93b413bbb5f3dd65ba583e078ff5895a5053d825ab793cf7720ae96
MD5 152e490f7d3ce5f670a26a02ada5080c
BLAKE2b-256 d11dbe20d3237b92dfadd5bd56cbde0e5dc5dd708d7dec5a875889fc436c70de

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0-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.26.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 6f356a445ba7afc634b1046d9f51d3ae37afbf4fe1a500285aca37677462a7b9
MD5 98f38abdd4cb00a0b2b567e3faa617a3
BLAKE2b-256 117015e2ace4fa03b010c223e0588c371cfd8bb7b25aca3a250d05b56047501b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.9 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.26.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0286f704e55e3012fec3910400fe1a4ed11aeb66d3ec4b7f8041845af7fb7206
MD5 7587de3fe54136ab85eac805c919434d
BLAKE2b-256 bc315eaf98bec3330004be0700bc9656321feecdf7bd7acf7d25add553176296

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0-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.26.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 a908d5af2f26673e970c7c03703437bf95d10e88dad3322e7e267467db44a04d
MD5 24c1a70b6d4d30c84ba01ba62250c0e3
BLAKE2b-256 ff631faad27ba42d88e4c7961c6b005fdef3b5589cc0484f4c217f7f14e230ef

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0-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.26.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 0e3b5469912430f19407ebe14cfd1bece1b5a277c4d43e1b65dbff19d9475ccc
MD5 95f7a664d6c39512ea7d74362ad92c09
BLAKE2b-256 df191e34550944344a38049219ca6afa9bcca852ca5f6a18b90335fe7c7a03a5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0-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.26.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d62ab00dea7fa0813fc813a6c848da2eeda5cb71893b892a229d23949de0cecd
MD5 17abf984f649571b980b97fe7427c917
BLAKE2b-256 d130fcfe8d23830fe4df8520157241a0b0f01dbd53d3bec6aeb4b2ffd7e33182

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.26.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c15f0718cbc3986e747d5b0734198dce0ac07d188ec5e063b1e9889ac947f86e
MD5 0f88ec9b607c926bd14fac7311885b0c
BLAKE2b-256 7dba5b8c3cb7e9053111fe48f9a3754c8359ffb8367b2867b2a5e1e63d2162e2

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0-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.26.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 58a879208bd84d6819a61c1b0618655574ef9df1d63a0e2f434fdcb5cfa1fb57
MD5 65e9978de9afd5e5c1ce86ac1c7f15b8
BLAKE2b-256 ee938af2ea9fbe701106b6cd3596bb4c7d3d97ac7560a5562ae21914b11236d8

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0-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.26.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7f7430434bd997584f2136a675559ba0d4afdf7cb71d9bbc429b0cc831e6828c
MD5 45897ff7e3e0c034d29c0f2099c24d95
BLAKE2b-256 7f75e924abe3e35387d8dfedf7d7cf24a5bd23eb1b16ead6050c252310cd3db8

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.9 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.26.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9a2091371298f04ef350f776365945537d0befa95bad5623d80c4207bdff9d3a
MD5 189dd0ab0843f8d5cf44a05e64973942
BLAKE2b-256 37638eda597182f63f8deb9f117009cafc427e660b29c5ba7b2a94b2ce18ce76

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0-cp36-cp36m-linux_armv7l.whl
  • Upload date:
  • Size: 22.0 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.26.0-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 9af72b764b41ba939e8e0a7ae9ec8a17d1c46a18797c6342cba6483f29e1790f
MD5 18e8960b24de8f1fdac241b5507ffca7
BLAKE2b-256 730ab38a7767381c7c305c6ffbfab5ff6c192a0a219bab8cf2b185f09ff64e51

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.26.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 d396fdb7026986e6d3897bb207cc7d5bc536a82a2e50af806a24b3d254c73bc3
MD5 8227dfa59879324bdfdd27b683fd4a97
BLAKE2b-256 48a3268573ea3e505fc4391bd918d0e359a6942721bef8b584d8a6020713c433

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0-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.26.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 68259fd06188951d152665ffe44f9660edd715c102ae4bc4216eca4c4666dadf
MD5 1b9100d0af010aac49b7cc302043094e
BLAKE2b-256 6c2639f6fa2ba47429bf7ad48bd8fbd2dcdc30ec8cd166353357f2db122c769e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0-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.26.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 facb8c588cdd6adc51ae7545f59283565dae8d946c6163e578b70ab6bf161215
MD5 320007d037d51b2c692208463022783d
BLAKE2b-256 c9968b0f8ab98261cdb7cbd0906c4c5a8f5a148a45b976504538dae5542878c5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.5 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.26.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 da75e33e185c8be17a82ec4a97f5c75ec05d57e85f8b285f86e2a22484849e4a
MD5 d9c0ce258c5737daf75ca296c3ad1588
BLAKE2b-256 4849b09706bf1dbf2df9981091573714092fd7ee54b8020e10a45f84a98a0728

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0-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.26.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b97e74ffe121dfa9ae7ec94393fce4e95e9e0a343827663e989dc4b7c918d1a5
MD5 5dd5caad6603453e3aedc97f9c513fc0
BLAKE2b-256 0963d585b9a807e92c5c37e34c487f68b0eb91ebd5484b7e8d303df95be96f31

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0-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.26.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 eae371a663ceeef8f930323a120a9d11e13e1c49903a66ddb4ada4830d5bcb7d
MD5 c033f41c31617de24fa53736b3301b06
BLAKE2b-256 663d103300b111a4604562a38daadfbd33a570f171f3d5bdc4e0717f8ffd1f08

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0-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.26.0-cp35-cp35m-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 033a4e80dc78d9c11860800bd5a66b65ff385be8f669e96b02e795364c860597
MD5 f9776b3f069fafa1f9570435c7a767b0
BLAKE2b-256 cddb52223020541b6a7ca457a085d8a4d66b828d847bc7d0e00b1327849b2edd

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0-cp35-cp35m-linux_armv7l.whl
  • Upload date:
  • Size: 22.0 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.26.0-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 1783b8fa74f58a643e7780112fc4eb6110789672e852a691fad6af6b94a90c4a
MD5 f05c4e69da4aebce71e93533639ab8cf
BLAKE2b-256 60b7886d52bd74a40a22661585199433e167f06d53609de69bfc2b83cee8ad6f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0-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.26.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ab841c69581085b6f9aa54044a13db6ec31183513f7cce0862d29c9b7b4e3c64
MD5 bfbb484b3664b4b04a3fcf9b0a6ce4bc
BLAKE2b-256 de315f5bb4ea847698c990dc290bca37c02e8e397164248757912299dbd00806

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0-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.26.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6cea124cbd9081a587e1954b98e9a27c7cca6ae72babc3046ab6b439a5730679
MD5 323b11ea14ceeac2b6a6918147de5b35
BLAKE2b-256 24d473a971b2fdd27b1171ec345516325e6ef34c623855e9dde8db459fd9d4d7

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0-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.26.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 dcbd1fbb540638c9ad9c3a071b392b654f79666a2bc12808080b0e9f674b9a80
MD5 5e95ecccc4d9b9b5a6eae56b383b4ae0
BLAKE2b-256 7aaff262f8794888dca6aefa8e3ae5c0681901db89b38e8d57b168a8ad5f266f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0-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.26.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1e80f74854bd1c7263942e836d69f95ffc66bb45bf14bf3e1ab61113271b5884
MD5 292ac6af9ec1fcf47d794ff86d3067bd
BLAKE2b-256 f9dba33f41275e1ca8ae369c977f23152b4085263ed879352f50ddc6ac3a80f1

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0-cp27-cp27mu-linux_armv7l.whl
  • Upload date:
  • Size: 22.0 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.26.0-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 bba8d3b61ec113bb94596599d2568217b22ddfc7baa46c00dec5106cfd4e914b
MD5 514a2c12e06847ce1994be1630b19ced
BLAKE2b-256 de73e9349deec4b401117b546eaf2dce66b6e9e639ad9076c0b53548a6748ad9

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0-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.26.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 376a1840d1f5d25e9c3391557d6b3eeb3de17be697b0e55d8247d0262fcbaacf
MD5 d245e788ffc9792b1564a132a84390cb
BLAKE2b-256 2380d0b84310a6811b964b41fb5456f246010fdc81c6de1bfe2e9c34ffa3256a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0-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.26.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 a209002e3d4787f0e90e29f15cddbe83dc9054238c0da7f539c913002a348cc1
MD5 d9e03e5df1e621251522f197e95f1591
BLAKE2b-256 4d63e835dc5dc962d22b4f1d502adc091ab1e21f490dd87bcf469250e80220ab

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0-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.26.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 51ac9c4f8a542cd20c6776fde781c84c0acd8faba55ec14f121c6b4eb4245e89
MD5 24108978c0c5fb44ae652649ba7585ec
BLAKE2b-256 55d799b9df4389eaa8c6a06621c74a5ed7b770f7b68bde71a7c3e153ebaa487e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0-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.26.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4e9a1276f8699d06518cec8caceb2c423fc7f971765cab7550d39f281795fd81
MD5 f25136a83186c5b8745ef12c114e401f
BLAKE2b-256 be30628413195035325ad19eb98a21d8bf4f1a0eebd6769216f04483037bc729

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0-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.26.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 826c19f26b41e99691e77823ad67f04dc0b69e514212907695e330c6f106415c
MD5 40c07decc2ec914cc8dcbd67cad9eef4
BLAKE2b-256 de7de4ef0efc30dc42a9f19d0e8363fe5361da8affe6c369f906325fa75f6069

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0-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.26.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 675918f83fa35bd54f4c29d95d8652c6215d5e95a13b6f14e626cdef6d0fce79
MD5 0b58430e07ac0d628b76b37444cbd68b
BLAKE2b-256 6d21828fa46a9600e547179167ceea901a4f7425396167a4f4ed9f3985e584fd

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.9 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.26.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 809d60f15a32c21dc221ddb591aff8adfdde4e05095414eb8e015cdfef361615
MD5 0c457100731fac1ba6cc5bde61bd1cfb
BLAKE2b-256 229a49ae9dbe0341d3c3e8b3535459c546047985a70c10f7161e7fc1aec1826a

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