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

Uploaded Source

Built Distributions

grpcio_tools-1.25.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.25.0-cp38-cp38-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

grpcio_tools-1.25.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.25.0-cp37-cp37m-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

grpcio_tools-1.25.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.25.0-cp36-cp36m-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

grpcio_tools-1.25.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.25.0-cp36-cp36m-linux_armv7l.whl (22.0 MB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

grpcio_tools-1.25.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.25.0-cp35-cp35m-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m macOS 10.9+ intel

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

Uploaded CPython 3.5m

grpcio_tools-1.25.0-cp34-cp34m-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.4m Windows x86-64

grpcio_tools-1.25.0-cp34-cp34m-win32.whl (2.0 MB view details)

Uploaded CPython 3.4m Windows x86

grpcio_tools-1.25.0-cp34-cp34m-manylinux2010_x86_64.whl (2.4 MB view details)

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

grpcio_tools-1.25.0-cp34-cp34m-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.4m manylinux: glibc 2.12+ i686

grpcio_tools-1.25.0-cp34-cp34m-manylinux1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.4m

grpcio_tools-1.25.0-cp34-cp34m-manylinux1_i686.whl (2.3 MB view details)

Uploaded CPython 3.4m

grpcio_tools-1.25.0-cp34-cp34m-macosx_10_9_intel.whl (3.9 MB view details)

Uploaded CPython 3.4m macOS 10.9+ intel

grpcio_tools-1.25.0-cp34-cp34m-linux_armv7l.whl (22.0 MB view details)

Uploaded CPython 3.4m

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

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

grpcio_tools-1.25.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.25.0.tar.gz.

File metadata

  • Download URL: grpcio-tools-1.25.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.25.0.tar.gz
Algorithm Hash digest
SHA256 988014c714ca654b3b7ca9f4dabfe487b00e023bfdd9eaf1bb0fed82bf8c4255
MD5 00813e18ece15b46f2df104e377343ee
BLAKE2b-256 e19300edac4d6c8dc2e4c208f08a1317fbbd18ff766c9e71312473765a326a7a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.25.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b02701d40f1ccf16bc8c46f56bdbf89e03110bd8fd570c854e72299ce2920c35
MD5 dbb82d8a46a2d67a392dbf23bc34a9fe
BLAKE2b-256 353e76404669fad19ae4af499cad157cf8c432364abe27e6b16b154a5b35c295

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.25.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c1a482fdd8952a7f0098f78161a4deef8a500e54babef302548cd9f1e326d42c
MD5 f080d765c3626ee67835863be9f2d9e3
BLAKE2b-256 2894eaaffc56d787987d581ac2f3686c34eb3732d92bb6478bdb24c70621cdd1

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.25.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c765512cb5cb4afaf652837b8cc69229dee14c8e92f15a6ea0f4dfd646902dd2
MD5 845e2a4b7d4e296ff76e11c0dabf4f56
BLAKE2b-256 914d46bb92b04d2d801cd1e9da49b5212599ae738741e06d771551f999ea8020

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.25.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 6f70fc9a82a0145296358720cf24f83a657a745e8b51ec9564f4c9e678c5b872
MD5 4002845df2059fec13a93d3fa45bbf52
BLAKE2b-256 0720e7b44ace191e1b21ab080e0e6d824984aa772a61f2b90c82bf600e249ad0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.25.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 eab3684ce9dec3a934a36ba79e8435210d07c50906425ab157eeb4b14503a925
MD5 3be680c6e3b5a981b604e04e7089e17e
BLAKE2b-256 7d5e85a64e1bdcaf50b111595342054eb1d5f088fdbdc98e479d005797dbea91

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.25.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 b0ef0da2eec959def8ba508b2a763c492f1fb989446a422d1456ac17dc1b19f4
MD5 56a638d16baa31ff7536c290faae6259
BLAKE2b-256 70c8cc0eb5d6db6d300b69be9268b18c934c46f185e19e4ee8169763a2aaee35

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.25.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 bbfb58f5c0aa27b599141bb5eacaf8116b55ad89bc5a2c3afd5e965d840ad341
MD5 18260f371c28bf683b2f267984f8f909
BLAKE2b-256 edefdadb31c41dd4d2d5838048b39120f02ab88101190883650b16366e8d6f1c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.25.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ac7649cff7354d2f04ebe2872f786a1d07547deded61f3d39036ebb569de91bc
MD5 2fc93307011a714be26211edcba20611
BLAKE2b-256 501d24247c9c7978942a36a9abcf11cbe93b220cbb8364a696e3988e86e3de01

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.25.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bb8264ccf8ff904a1a396dc757ac1560b24f270b90e7dabb0ae3f637cb351bb3
MD5 7ece300990fc3a807b5666014e9ed739
BLAKE2b-256 1387dcfe0cc7ce67d7c04fd92970c1e10df397bac744fe265e027f6067a1bd0d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.25.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 79b5b1c172dafb0e76aa95bf572d4c7afc0bf97a1669b2228a0bc151071c4666
MD5 0c7624c8e7f9006b317b4ee2ffff47dc
BLAKE2b-256 10ccd9cbfb6499eb22b531d64e12970deda883aef48ad0cffabfc644352c1706

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.25.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 406b530c283a2bb804a10ee97928290b0b60788cd114ddfce0faa681cccfe4b8
MD5 822dacc205bb12531b6faa932fa1f5b2
BLAKE2b-256 ca2fd86f81af975441d637c13a40401b962c5e562b2ad0ec9e2dcec6066e9226

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.25.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 4b40291d67a1fecb5170ed9ec32016e2ae07908a8fa143d2d37311b2bcbeb2c5
MD5 96dd62e64cbfaf3046e563e1f18978f2
BLAKE2b-256 2785827f1298622ef25627b8041656dc17e7f67acaba5046a8524d856ef6d8e6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.25.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 c871f5a89012ae44d9233305d74dfdd2059a78f0cb0303d38a4b6a562c6f9ba7
MD5 853707eed418e28e21136ac10dacfb3b
BLAKE2b-256 d707557bade5a1439d9e3727e6dc4f1d89c95c43c3c85bf80a69d370686d0a07

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.25.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f258b32dffd27ef1eb5f5f01ebb115dfad07677b0510b41f786c511a62ded033
MD5 61c4848df416f8e7dbd8e5248d9a24b4
BLAKE2b-256 ec72d43bd9dde2d0054f26cd62344585af423eee21593f8777bf8d1e184445c5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.25.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c40efc662fa037898488e31756242af68a8ab5729f939bc8c9ba259bc32e7d6a
MD5 d10da25fea47bbd24590bc1a7e89919d
BLAKE2b-256 1cf2d920305962541eb1c86d1e7d7aafb77c91277ebbed1bf99c99d1829c8e58

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.25.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 02ae9708bdd3f329b1abe1ee16b1d768b2dd7a036a8a57e342d08ee8ca054cec
MD5 357a7384f1ba9273650e93b6e45749e3
BLAKE2b-256 bb3c9730ea55256db9d8f0ae783265553315e4652e0b50b27cc26b5d3741a20b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.25.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 6fb4739eb5eef051945b16b3c434d08653ea05f0313cf88495ced5d9db641745
MD5 f16a72729950b282f15fe108d5cda59e
BLAKE2b-256 caed54d266cc87ba25a55cbac951741d7fac617d821d9538adbd6b8e138ef546

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.25.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5226371a2b569c62be0d0590ccff7bbb9566762f243933efbd4b695f9f108cd5
MD5 56bc4c4d07521dd9dd2fcc6d934c2933
BLAKE2b-256 250b2d98e019d27fb2eebe42cd9e95f78964a1071ac2148e1805afcd2d8169ae

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.25.0-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 64f6027887e32a938f00b2344c337c6d4f7c4cf157ec2e84b1dd6b6fddad8e50
MD5 e29d6f66a1434a9c172e90b300afe75a
BLAKE2b-256 95bc02a7b122a52235db281e1e6479ea3aeeb1ef9969b59e53dcd729a87dd724

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.25.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 d3619b43009a5c82cb7ef11847518236140d7ffdcc6600e1a151b8b49350693a
MD5 e020aeed9d81833f410a393e2745d768
BLAKE2b-256 8c7285fe4a6b7a26612eca57db4e2454eb183ce4fa08f9e99213cf2165865b6a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.25.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 651b0441e8d8f302b44fb50397fe73dcd5e61b790533438e690055abdef3b234
MD5 78fb6a88c8a80fb7dd70456ecb60d8d5
BLAKE2b-256 ebe55d0b54e396b8d56a1f67b54d04d4cf1b3f516dd3758b09e4c298f21c249f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.25.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 49e7682e505e6a1d35459dae1d8a616a08d5cfa6f05de00235aff2e15786af14
MD5 f744c17d743c42a5bc03486af3f68f15
BLAKE2b-256 40c0fda2354e37e0c4540a5979577c1c49c224b324b28ee13b9018fc2b2412a6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.25.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f7fc690a517c8f3765796ed005bb3273895a985a8593977291bad24568e018e3
MD5 60871899b7c8e99a66a17c5a4e13b313
BLAKE2b-256 0b8b3b090c0a1761cca482986b1b0ab0691bf19aad42621c4202920384f7e4e8

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.25.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 532a19419535a92a1b621222f70d6da7624151fe69afa4a1063be56e7a2b884a
MD5 9d07684225f01c08237ec694a62ef34b
BLAKE2b-256 2b8076bec28f4639a77286d05e6ca6fbaa02d556d82e8caeda528006cea530e0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.25.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 52aab4cbab10683f8830420c0b55ccdc6344702b4a0940913d71fe928dd731c9
MD5 4915520bf070c9eea6207ee14e495f52
BLAKE2b-256 5d2c7fd6eee0ac58b6a62a15c4e50b0a89c6c33affb29eab616a9a3876714970

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.25.0-cp35-cp35m-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 314354c7321c84a6e176a99afe1945c933b8a38b4f837255c8decfef8d07f24e
MD5 4fb06d5f3e4af1e90776152826d50a49
BLAKE2b-256 d0441f010ce296338833905b2246ab48022e4f98dbcc3dfe1f7cbc24adb8e762

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.25.0-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 4b72b04cba6ecd1940d6eda07886f80fe71fb2e669f1095ebab58b1eb17a53fa
MD5 2bcc23aaed70d6e98d1126a1dfffc9ed
BLAKE2b-256 35a59eb40c46e9a6206e03e30895d6c4d972baa554a4b5faa889d1c2774e3655

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.25.0-cp34-cp34m-win_amd64.whl.

File metadata

  • Download URL: grpcio_tools-1.25.0-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.4m, 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.25.0-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 7d02755480cec3c0222f35397e810bfaf4cf9f2bf2e626f7f6efc1d40fffb7fa
MD5 5b9ad2fb8ac048956f385b1432feef25
BLAKE2b-256 81a8ee79dfaa6f73c5a44e8e698b5bee3a62d95867b9c86d95487e19daab7f44

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.25.0-cp34-cp34m-win32.whl.

File metadata

  • Download URL: grpcio_tools-1.25.0-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.4m, 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.25.0-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 6c029341132a0e64cbd2dba1dda9a125e06a798b9ec864569afdecce626dd5d5
MD5 8c002ca35585c8452001076f3e103752
BLAKE2b-256 25d294208d3b5f54947ab8dd9b62493e140ade4805e5eff29772fbd95c4edc73

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.25.0-cp34-cp34m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.25.0-cp34-cp34m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.4m, 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.25.0-cp34-cp34m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 818f2b8168760cf16e66fe85894a37afcff5378a64939549663a371216618498
MD5 97b2250e724ae653ed38dc671154ec9f
BLAKE2b-256 8b57820307c184d1a66a37027d2f39d2cbdf829fedf6e184f9f6d4a65c72f6bb

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.25.0-cp34-cp34m-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.25.0-cp34-cp34m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.4m, 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.25.0-cp34-cp34m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8b17347a90a14386641ffe57743bbb01a16a7149c95905364d3c8091ad377bd8
MD5 d957eaab6bd1500da1a9ea2a1dea48e2
BLAKE2b-256 3cec1e5ef23db9c06e295da855a4f34c1298575c202342a9f2bbe10d121fbeb5

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.25.0-cp34-cp34m-manylinux1_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.25.0-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.4m
  • 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.25.0-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4a5c2b38078fc4b949e4e70f7e25cb80443d1ee9a648ce4223aa3c040a0d3b9b
MD5 819c3869e743117b261b2e2e38168396
BLAKE2b-256 d0a6bb93a45ce10106548b2a3062f3b50a61f579e3c05b0490a8d2e39f02c1f0

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.25.0-cp34-cp34m-manylinux1_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.25.0-cp34-cp34m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.4m
  • 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.25.0-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 4ce0261bd4426482a96467ed9ad8411417a6932c331a5bb35aa1907f618f34f6
MD5 f0b79037b3f20c291090e07238381b80
BLAKE2b-256 35b508ba34bc0ad817b27198bbfcb991fdccb4ae98019f2eef722543c7993723

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.25.0-cp34-cp34m-macosx_10_9_intel.whl.

File metadata

  • Download URL: grpcio_tools-1.25.0-cp34-cp34m-macosx_10_9_intel.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.4m, 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.25.0-cp34-cp34m-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 dc17a8a8b39cb37380d927d4669882af4ccc7d3ee298a15a3004f4b18ecd2ac3
MD5 af1d5951af44904efe7b37fc7cdc0e0f
BLAKE2b-256 99feee2712c2da4d3210f9b92da0b6d1e00ef520e7d3938245ca05929b702e0a

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.25.0-cp34-cp34m-linux_armv7l.whl.

File metadata

  • Download URL: grpcio_tools-1.25.0-cp34-cp34m-linux_armv7l.whl
  • Upload date:
  • Size: 22.0 MB
  • Tags: CPython 3.4m
  • 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.25.0-cp34-cp34m-linux_armv7l.whl
Algorithm Hash digest
SHA256 c5ad07adae3fe62761bc662c554c2734203f0f700616fc58138b852a7ef5e40e
MD5 1289e1b6110fe93988498889d329d811
BLAKE2b-256 f6cc7b97f5f38c69dbc342f3d3288e3191ef5d93c8ae7aa46bd8dbb864beb6d5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.25.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 007c075eb9611379fa8f520a1865b9afd850469495b0e4a46e1349b2dc1744ce
MD5 fcb8132dd72cd30ff6a60af6fe4ee085
BLAKE2b-256 32b58d22168ad53af9d65a865b2d05497dc0d3e2722083c06ce60371754d7cb8

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.25.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f550c94728b67a7eeddc35b03c99552f2d7aac09c52935ad4b0552d0843fd03c
MD5 d82fc252355f0992bef89d320649c68e
BLAKE2b-256 ae06a2fc7d2255a0c5ca14d641ecb74e374dd44ae9397b506f1ef750142bcd1f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.25.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cc950fb17c1172d0c0129e8c6e787206e7ef8c24a8e39005f8cc297e9faa4f9a
MD5 e367b80af79537d10f3c9300706a4d72
BLAKE2b-256 b1aadad5c54983c28a1cea3b80b505bae2a359785ddfa24d4303effa373a96d0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.25.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 9a83d39e198cbed5d093f43790b92945ab74140357ec00e53ae13b421489ffb7
MD5 b4c89ff52d4355201ea85cd343b17de9
BLAKE2b-256 abe4e12bd98d2acf4c5e8a040f052b41ca2cdaf1be86fe00fee5b325e91e4a92

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.25.0-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 6e64214709f37b347875ac83cfed4e9cfd287f255dab2836521f591620412c40
MD5 190fcc2aa33d667a75d39a68f3afc453
BLAKE2b-256 bab96f632cd4754a9dfdf0cdaa1e2d8eeced44118d939a038b8eb971e86c1f0d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.25.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 2f10226bfea4f947de355008b14fb4711c85fc1121570833a96f0e2cd8de580f
MD5 4dafb5e3e2afea7f2b991c637020e69e
BLAKE2b-256 32d169d6eb8254adb362ca2815d8b2b36b0a49ee77971166b8ed07944dc9b83c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.25.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 834564c2fba02c31179af081bd80aada8dfdcca52c80e241353f6063b6154bd2
MD5 4386a3af4a7723bc2a6dcd90dea7a592
BLAKE2b-256 e8500137edcde4e10e2c490c179c60f42fd4d57f5ef6761a935400f915f1ad62

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.25.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 902e13dbaca9733e4668928967b301526197ecffacb8c7a0acc0c7045de8836f
MD5 d41f4321103268f3ee0872ed02be2d3c
BLAKE2b-256 46c329e629a3b2dc920485ab489379f295e013671d0d9df86a464e50a19ebaae

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.25.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5a8d44add097e0a3a7c27e66a8ed0aa2fd561cda77381e818cf7862d4ad0f629
MD5 fc94e3c324fd58b2fccf959e2092d4ba
BLAKE2b-256 30eed06417b3807959a30b95bd0103b73771f4fd8433f81ff6aa68014a576923

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.25.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b013d93bc6dc5c7bf3642bf30e673daee46f9a4984fbd9588a9cda1071278414
MD5 eb5973ff5c4b2a100635708c37b4db6b
BLAKE2b-256 ca1898edcb86ff72af229af2194a4056d23d842b85e100f63b67ea394da65b41

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.25.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 4cc95d5fddebb9348fafcc4c0147745882794ded7cfd5282b2aa158596c77a8a
MD5 ec23dca423ab8ce917b688bc5bbc7d91
BLAKE2b-256 111dfe8556cbb8da20756d1d7da6a75d3f8e8b1ef7fabc2bf6db318e129b9faf

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.25.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 67d12ec4548dd2b1f15c9e3a953c8f48d8c3441c2d8bd143fc3af95a1c041c2b
MD5 25ab5993a9e0300caa59ff72a7bc6c7b
BLAKE2b-256 f29f2728880e319d13aee0314f64ba6d430a7f9aaf1f93061a831b106c4bb27e

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