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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

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

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

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

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

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m macOS 10.9+ intel

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.4m Windows x86-64

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

Uploaded CPython 3.4m Windows x86

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

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

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

Uploaded CPython 3.4m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.4m

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

Uploaded CPython 3.4m

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

Uploaded CPython 3.4m macOS 10.9+ intel

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

Uploaded CPython 3.4m

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

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

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

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

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

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

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

grpcio_tools-1.24.3-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.24.3.tar.gz.

File metadata

  • Download URL: grpcio-tools-1.24.3.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.16

File hashes

Hashes for grpcio-tools-1.24.3.tar.gz
Algorithm Hash digest
SHA256 5efc92721a364e049ad3a174d5b20a21009fae9db04b3e5020ed0b534d9c022f
MD5 7a92e51e7d6b7e2623ca9802ed168c31
BLAKE2b-256 454fe880d7c227e4409d52f9e0883af053a4b9d7775f19467e40f4aaf46d2d78

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 02b527b1e05f9ad446b0b70d5c4615493a93aab3ddf9ca1495939f97a6df9de9
MD5 28fbd1b9ff72320ae5f7138a83b276e6
BLAKE2b-256 5779d99756e36dda6102a8f0c0bcdda2b4ffde91aa2f8e9b2d7d9b691b1adb88

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7fd5daecba6eb1bad14854aec933f992d84ca702e766789bc60cef6c6a3c3077
MD5 d0bf9ca9c34e276ad9877c4471428fe2
BLAKE2b-256 2da70d9835f6d6595813401c015fbe64e151bd925c89f6c470b0b0bff6f68ab0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 12c251d48c217502b9c092c4450d9f1bfe81c049934ad4e31de1cb71814798a4
MD5 3ce0fe6d2364a9f641576216bb4e3cc7
BLAKE2b-256 0d18fe701fca36d4895873b7806c0778e80e5f3e4ddf2938b263bad991e1face

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7a98160c255e38b7a99cc27b2f1c925ef7d8ec4a615ad9ef67ca346372818523
MD5 9488dd4ffb709918bbaa78c36d9777c3
BLAKE2b-256 d8de3e684eb296fa21bc8ddd2fd77f3bc946ae90229620b1f295f1f6e5ab33fe

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 de9ef57eff471e6314db7723545c84988a495755d7097ed2052b37612e6f8836
MD5 89eefa479f4198027d6b2065c46d880b
BLAKE2b-256 99bb1e8906124d768b47ca35bb87fa97b17cc8404971e162a45e4388d4b5bb92

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 269a353037a99a03637fef1174ece25e9334bdace4b5f7a393374d439ecc7133
MD5 65d9277727c36210d0c3eed7eabb5f77
BLAKE2b-256 e14938099b7a32f08da774c44760af2c8f78d5266b71425740e0afd22085737f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2cb00f6d504d48b9adccbb30c181b6e9e90c891d13d85d832c841042253c11bd
MD5 3a348b51fe302d5951552004cd3e2066
BLAKE2b-256 c8c5c8426588f937faeb0da182451eaebb0e495e7b3e6a01d2a0203bf47dc074

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e7e97bca1eeb3795594e5f16ea8c08359fdc9242e6057858b7a692dd22b10f18
MD5 d8e6a12d880a02b1154e4cff1db887d8
BLAKE2b-256 e8be12df84738d1bfb901f7d41ba2065e8ad54935e40c4a05dcad71f3f3fc91c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6bb3ba89b5134e2b38749aefcf3206fce7a6c30cdcce9e14938d5d792a6c07e1
MD5 a5c6486afef614a3fff6f8a77641cbe1
BLAKE2b-256 d2151e1b794a366459b5c0394850735eadea268326cfad26d3c064f94de0520b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 89426e7157ba45c1fd64e94456b50e2120f70031427c5f686af783dd9a10f258
MD5 3176dfe026dbb7fc747f08b10e30f141
BLAKE2b-256 999707c9c2d0856e22ade3a44e94748248293b5019a53c2f7a70147aeff97e85

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4b933a26fb0c7e724a571a6e48d25f02aa1fa0acedce58ca8dd768d555c21129
MD5 74d9501d1833700e686ab6c2196419e1
BLAKE2b-256 0656882d93a6ee36d9d0882fba635bc0a092cba9c8f2c7aaaa6015c98b3773b3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 8f32aaeef3f21273dd8a1d2127ceae4da9c32a3df924627500c9b15b2bec3c5e
MD5 377530e7a7d1baabff080dac85cd4e85
BLAKE2b-256 e11156951c09ab4eab3d5b6c2c07922be310f5f750e54ba861951b51981abd28

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 14ff158a7994f3d938593834cc2c8fd375ad8cc7768821d56353ffa02015e995
MD5 8efb8c804fd31805bc692392d4adbd93
BLAKE2b-256 0a8adfb9426a56b343d4533e76fb0afbfb3f53e54d2d24cad0dc2d5483c3e48c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9a9d3ba59bddd9bf24b931f79f7e5675dec1850a3e5e3f33d408648e4489c9be
MD5 91c0177e1598e684d463fdeb1450730b
BLAKE2b-256 4aba343f5991555f813a27e33a9e105395a01c0b98e92a95c616394561b4b761

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 896a58626d04df9f80dc156abca582dfa7b1de3ed64b4b2f212faedff19cb9d0
MD5 e0dfb0b31220afd9f40029c446e78daa
BLAKE2b-256 46ee391f81f1842d4c249c28f54a0d86200089b56b24c8fe77ec68424fd4678c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 63395b9216444bb1d83728d6e7bad4178da4eee667655c4e8305de13d78fd10f
MD5 2f866e97f0b31ec4a08f2cd013f13091
BLAKE2b-256 9f6466babcc6adc54a7925f192cf552fef23a0b6922a1e8da117e66953b4ebdb

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 65433b58a592da216d01e877a4d5766a341bb32b58d384dabeb093496056b228
MD5 671ca49e8f4ab5f89f8ad99807c01e29
BLAKE2b-256 450e94ad4ce891c1ac4b5a813a9bc6f3121a1958db07fbc4d9c3da47252bba80

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 177bdfecf5c3093fdc4ca7599a7065ce867ccea8e2d401378e5411d6d7c5634b
MD5 5939b7d0b8cca82ebe7f79c48a57920d
BLAKE2b-256 0b15b63c719cd36896d8ecd099975df5acce46a3569bda6218c34f9e4b42b6df

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 c6b31d51bdeae6dfce880c1675e189ca86311f8632ebb4616bb43448a5e7ffa8
MD5 42775dbc7843a343895f8eff600adde9
BLAKE2b-256 abfac5962f0e292e6e26d6be1f5f6581664ad9552e9cfac9208ceb2521c04083

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 12a9aba25bf9f7015f39cf22437a4f29974878a8e8623f33e3069e168926c752
MD5 7b050ef82025e2f8bf2e81907d857621
BLAKE2b-256 03aa06a9c335f7b8a1b267bf56967be479c12328bb89ae70783028b55b6c65b8

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 e37ad8f060cfdd214395221d73262628837747ee09f44537d7ded364df91eabd
MD5 803045019d4a157e5dd03dbe6de9b37b
BLAKE2b-256 94b0d9fe23054fa0c96aa35fff8a3101c0f8b02cc0524746d58fb70ae0d8f5ca

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 bf19f2940a99a0a45218c6063c7a7fc23a696077b8c48f78496231f018f4a329
MD5 2af1e4b627ca337765b70f6f7cd28d98
BLAKE2b-256 153fb52081ac9c961f4081586b05bfb2e4701a93e117eaca2b923858d3067072

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b1f537e528abb3be681a9735fa110b641e33b9fb83e0b61c777e1dd7df71d73e
MD5 dd9d0bb60d265a9e159cb00ad0a65d6f
BLAKE2b-256 b4e9aa2a50ac8aac02589a3db074b06d0f27bd0df427f2d64872b02b87a1409e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 23caa6a0268247d5644a73b5595740c78f39b0376523f0bc84b25778c34aee5a
MD5 2bf6e14aa086b4400af0466defb2069a
BLAKE2b-256 36facb61af2322edfe25c14022a1ea30fcdd1999fd86d35b3adb60b4a83d01d4

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1ecaa56b142bdc8548c9545def4cf3ca5e1eabda5d90bd48cd52e18368e07cc5
MD5 4e8759d4d0c29fd4c631069bd12aaa32
BLAKE2b-256 206f71b54ebe2fc52e73ef228e07548fe70f2e94c466ee31a82f040d2355386f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp35-cp35m-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 559eee2e579a85981ee9461a64213e130653c3e213689e1fd8b9bf60330a58c7
MD5 01d9d2170b10eb335c0176b5ea432634
BLAKE2b-256 e0f77861d899220a87f4868e92c9e2b3c6c567a2ce13adc8ef8617580ceff926

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 422407165166f48c65885ee7b251c6fe71f9475877389ae6cb88d48c539419a0
MD5 e476ead1bcc05c49ad7e61971a4b8853
BLAKE2b-256 8bd6b4e32d4c6290ae4607e86692fce41d0f118075d758619065811ea23026c4

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 275ad665a40622d53d1ed1ddbb8f7973c16a3569c6b5a9530876c2b2bbf5ca2b
MD5 2412d9aec5e7878b364f1ae2280f6537
BLAKE2b-256 a4ebad21fe2ef10754f885e604453a978dc3ff8c6c759d0eae2eaa280abc8aed

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 8b8195098afc83cca778af37fe8eebffb4d13f440ddaed8e42ecc5212912e82f
MD5 22a4059f2b65fb938ef5111f089ef141
BLAKE2b-256 c1743399ab51a48e0315c53b62adc739b83e4b65cbda0783d2a45e85668dd54d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp34-cp34m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2ce979dc1dfce40be30c76af7f7257f85ca81d291f6eb4c943fb9ad26333183f
MD5 0bd14217eebe094e023833706b154dff
BLAKE2b-256 3d5389c755c1f22b0bbb4d1946d11fb5d29945945ef78e3b4a20ea717f68cbd3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp34-cp34m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e96b0fbbb32ebc85e810d5bdd00b1e325f1da3fc47b668752cee8bde00749fec
MD5 3ab59039b8dea56f3c58b0a3b07470a1
BLAKE2b-256 8d1b6cccc51e948e1b4daf266cae7d002ae3393a62c41fc13605302107c6e508

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b837da888d2af02755aaa386012450a171e069c3d738e282b69a020f7551fe39
MD5 31dd82d16d6d5610624dcec55d5bbc57
BLAKE2b-256 71718f2c6a3c211f740b32e1aa83e96a24e40ab13a7bb90ce4d2f0cafb732adf

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d08e4870c4285ba275e7b1f509c6f92b3f1fe25a5a11268268d63d0ab96febdb
MD5 a0e5423d3c4341ae8042e745264bab14
BLAKE2b-256 3945eac8adcdf84c3c3b22bcf6a5f5a7dcb242e023860bccb9a054286199aa34

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp34-cp34m-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 e9923b323ec3a58018829110faed8c43e3a0655a58312735b597e4cf8f685b99
MD5 317ad6f0e91631889e581c0d5155ba29
BLAKE2b-256 fb8c6c77b435cd489f606d72e44528953989736a84bb14a6f5ad50100b3f1c0e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp34-cp34m-linux_armv7l.whl
Algorithm Hash digest
SHA256 38edeed6e516337db581a6943f7cbaf2f284ba1df80811e1667f267752be0153
MD5 07b4d6df12e0709815ea9e6df61d97d6
BLAKE2b-256 ea753fc6c081ba41092ac0ffae91d3cf2c6ac82424b219990b72c499d38689d0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9ac91409150f0e9a5f6fb6bacb022b578a52601db638bb4305fe89acdf5be46e
MD5 7954c510a001611cef75977addeb1f1b
BLAKE2b-256 e583c70fed2e6fe4a3f2ba8b0738aef75a2889416ea02ca14cb31ffd57a4b8bb

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 91d1455213e76dc884a6210eb3465b08a99e6861515c169ead0725e6d21f2502
MD5 6cc47011168e45f4630ab13012ce4de4
BLAKE2b-256 277d5d363a637a567675b41a5e1bf9c54d891d98aae13ac3cc439778c5f653c3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8889079e97f0e08097d81201097e00b32d67324bcfd61ddd3c42734b440a1f86
MD5 b9db775ef3c77084faa40f1f8cfd9b6b
BLAKE2b-256 37dc74592883fb8b53a15979779fe191d28e6e3963eeb2d3d94315dbd280a40f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 06e92200d48e45d91ff04ebc833481c47273227df7538e3abc8917f0df57c73b
MD5 cf89d17dca338e124c6553c4d9a7b2e5
BLAKE2b-256 9e4e552dbe74466118f6952d725bc7ac50fe24f6f3f2ce6289485e934767e3b3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 fd4c3b38134be7b8fc6caffa42b83c7314ceb62baa8b7e1682d31969523d5014
MD5 951400475232638e69ebe0e8db006ea1
BLAKE2b-256 d3fdca11226942ccc6a6381fa94d2e426de044be559c0d1a90cd798878480cf0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 5005776a674867072b57fbb07e4f74ef60fefbbae2c2bddb15b9f64a119cebf4
MD5 9281706485bebe4f22d689375004887b
BLAKE2b-256 a7485e0fc11575d7c58ef4f78994553a83b228cf476196c7f874b051cadb1938

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 eb13439cefe14b347390271b47c5eac390fcc3bb04318c870fe1a26173fe5e3f
MD5 820f5bd17e75930b51382ebc330dc8f9
BLAKE2b-256 06fc4b510aca1523ad78d3f75767484163faf51687b237d82190e50f34f847f6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 27f4750251a49227e5aa66f562a021cefe5844297b62975a9509bcbba35b7194
MD5 89ed14cf56c23673937773139e253897
BLAKE2b-256 854db3aa33e0184c9ae8808879619c18bfb02dcc6faa4f9296fddf8a28db49d1

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 bf8332d68096eac48572d783133d733f8fac2e3a5de4ef5a1bfcc47648b1fa5c
MD5 124b864ddc016b3ffb32e9b0aafd1fbf
BLAKE2b-256 82ac1e02b411498d7baf010be58a9c90faa3d78af82cbe55245ab373c73e6bf2

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9c22bf4b2e6c214fe44dca8976b58090ec10ee5d6f8e2856a51a05f44347cad3
MD5 2cf8501fa367d709d4ac03d05f526e31
BLAKE2b-256 9aee925fdd149f6861e1885f5a75403a9d2727bf9b959f82168b0ad7a25d8dde

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 4f935a365ab7e9bcd2f1f4455965704f06212e2cea3e32d5b8453f9ba4852880
MD5 c51f07fb81f1a66b286024589c0ab810
BLAKE2b-256 5a9fe4643313f5a85c78338d9cab4d6cb620602d1f4caa382c3715e711daeeb9

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.24.3-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.16

File hashes

Hashes for grpcio_tools-1.24.3-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 107f5b81190193b5032a60c55483be3f8cbb0a0951c5ba6a1c2d2e7d6c720cd6
MD5 32c98f149aeeaf16fd836f8c2aa48a4e
BLAKE2b-256 8b2a1f581dafe3de03634a9c2acd1965beaa4e28a64aca6f059d7d5f1aa475a2

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