Skip to main content

Protobuf code generator for gRPC

Project description

Package for gRPC Python tools.

Supported Python Versions

Python >= 3.5

Deprecated Python Versions

Python == 2.7. Python 2.7 support will be removed on January 1, 2020.

Installation

The gRPC Python tools package is available for Linux, Mac OS X, and Windows running Python 2.7.

Installing From PyPI

If you are installing locally…

$ pip install grpcio-tools

Else system wide (on Ubuntu)…

$ sudo pip install grpcio-tools

If you’re on Windows make sure that you installed the pip.exe component when you installed Python (if not go back and install it!) then invoke:

$ pip.exe install grpcio-tools

Windows users may need to invoke pip.exe from a command line ran as administrator.

n.b. On Windows and on Mac OS X one must have a recent release of pip to retrieve the proper wheel from PyPI. Be sure to upgrade to the latest version!

You might also need to install Cython to handle installation via the source distribution if gRPC Python’s system coverage with wheels does not happen to include your system.

Installing From Source

Building from source requires that you have the Python headers (usually a package named python-dev) and Cython installed. It further requires a GCC-like compiler to go smoothly; you can probably get it to work without GCC-like stuff, but you may end up having a bad time.

$ export REPO_ROOT=grpc  # REPO_ROOT can be any directory of your choice
$ git clone -b RELEASE_TAG_HERE https://github.com/grpc/grpc $REPO_ROOT
$ cd $REPO_ROOT
$ git submodule update --init

$ cd tools/distrib/python/grpcio_tools
$ python ../make_grpcio_tools.py

# For the next command do `sudo pip install` if you get permission-denied errors
$ GRPC_PYTHON_BUILD_WITH_CYTHON=1 pip install .

You cannot currently install Python from source on Windows. Things might work out for you in MSYS2 (follow the Linux instructions), but it isn’t officially supported at the moment.

Troubleshooting

Help, I …

  • … see a pkg_resources.VersionConflict when I try to install grpc

    This is likely because pip doesn’t own the offending dependency, which in turn is likely because your operating system’s package manager owns it. You’ll need to force the installation of the dependency:

    pip install --ignore-installed $OFFENDING_DEPENDENCY

    For example, if you get an error like the following:

    Traceback (most recent call last):
    File "<string>", line 17, in <module>
     ...
    File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 509, in find
      raise VersionConflict(dist, req)
    pkg_resources.VersionConflict: (six 1.8.0 (/usr/lib/python2.7/dist-packages), Requirement.parse('six>=1.10'))

    You can fix it by doing:

    sudo pip install --ignore-installed six
  • … see compiler errors on some platforms when either installing from source or from the source distribution

    If you see

    /tmp/pip-build-U8pSsr/cython/Cython/Plex/Scanners.c:4:20: fatal error: Python.h: No such file or directory
    #include "Python.h"
                    ^
    compilation terminated.

    You can fix it by installing python-dev package. i.e

    sudo apt-get install python-dev

    If you see something similar to:

    third_party/protobuf/src/google/protobuf/stubs/mathlimits.h:173:31: note: in expansion of macro 'SIGNED_INT_MAX'
    static const Type kPosMax = SIGNED_INT_MAX(Type); \\
                               ^

    And your toolchain is GCC (at the time of this writing, up through at least GCC 6.0), this is probably a bug where GCC chokes on constant expressions when the -fwrapv flag is specified. You should consider setting your environment with CFLAGS=-fno-wrapv or using clang (CC=clang).

Usage

Given protobuf include directories $INCLUDE, an output directory $OUTPUT, and proto files $PROTO_FILES, invoke as:

$ python -m grpc.tools.protoc -I$INCLUDE --python_out=$OUTPUT --grpc_python_out=$OUTPUT $PROTO_FILES

To use as a build step in distutils-based projects, you may use the provided command class in your setup.py:

setuptools.setup(
  # ...
  cmdclass={
    'build_proto_modules': grpc.tools.command.BuildPackageProtos,
  }
  # ...
)

Invocation of the command will walk the project tree and transpile every .proto file into a _pb2.py file in the same directory.

Note that this particular approach requires grpcio-tools to be installed on the machine before the setup script is invoked (i.e. no combination of setup_requires or install_requires will provide access to grpc.tools.command.BuildPackageProtos if it isn’t already installed). One way to work around this can be found in our grpcio-health-checking package:

class BuildPackageProtos(setuptools.Command):
  """Command to generate project *_pb2.py modules from proto files."""
  # ...
  def run(self):
    from grpc.tools import command
    command.build_package_protos(self.distribution.package_dir[''])

Now including grpcio-tools in setup_requires will provide the command on-setup as desired.

For more information on command classes, consult distutils and setuptools documentation.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

grpcio-tools-1.32.0.tar.gz (2.1 MB view details)

Uploaded Source

Built Distributions

grpcio_tools-1.32.0-cp38-cp38-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.8 Windows x86-64

grpcio_tools-1.32.0-cp38-cp38-win32.whl (1.4 MB view details)

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

grpcio_tools-1.32.0-cp38-cp38-manylinux2010_i686.whl (2.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m macOS 10.9+ x86-64

grpcio_tools-1.32.0-cp36-cp36m-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.6m Windows x86-64

grpcio_tools-1.32.0-cp36-cp36m-win32.whl (1.4 MB view details)

Uploaded CPython 3.6m Windows x86

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

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

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m macOS 10.9+ x86-64

grpcio_tools-1.32.0-cp36-cp36m-linux_armv7l.whl (25.6 MB view details)

Uploaded CPython 3.6m

grpcio_tools-1.32.0-cp35-cp35m-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.5m Windows x86-64

grpcio_tools-1.32.0-cp35-cp35m-win32.whl (1.4 MB view details)

Uploaded CPython 3.5m Windows x86

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

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

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

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

grpcio_tools-1.32.0-cp35-cp35m-macosx_10_9_intel.whl (4.1 MB view details)

Uploaded CPython 3.5m macOS 10.9+ intel

grpcio_tools-1.32.0-cp35-cp35m-linux_armv7l.whl (25.6 MB view details)

Uploaded CPython 3.5m

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

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

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

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

grpcio_tools-1.32.0-cp27-cp27mu-linux_armv7l.whl (25.6 MB view details)

Uploaded CPython 2.7mu

grpcio_tools-1.32.0-cp27-cp27m-win_amd64.whl (2.0 MB view details)

Uploaded CPython 2.7m Windows x86-64

grpcio_tools-1.32.0-cp27-cp27m-win32.whl (2.1 MB view details)

Uploaded CPython 2.7m Windows x86

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

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

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

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: grpcio-tools-1.32.0.tar.gz
  • Upload date:
  • Size: 2.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio-tools-1.32.0.tar.gz
Algorithm Hash digest
SHA256 28547272c51e1d2d343685b9f531e85bb90ad7bd93e726ba646b5627173cbc47
MD5 04207eabf345064dda69af91b13fb751
BLAKE2b-256 5c5b6eb80634fa6092d696fe300644f73ecfd7c686ba1c126622ed3c2cb29bf2

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.32.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9b92f998ed1d01925160e47e9546c742aa0de49009f8fa3bb79420252d8a888d
MD5 fea8d33a81729f924ac88fa640782804
BLAKE2b-256 5e387552349577046361a85249377091f933888ba0f1d32f8cae7dedef396f9d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.32.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 07c1da5f1dbd4db664d416f68db6a92d5c88b4073ec6be41fcc7aa4d632f60a9
MD5 d220735385d1c9244fb495edfcb63b8b
BLAKE2b-256 834bb7cd2bd6319266c5c2411f0392d2d216519a0f754e9353d514911a82747e

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.32.0-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.32.0-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.32.0-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6327f2c6acca4eac1d5a8e1ee92282682b83069d53199ff8ce18906e912086ed
MD5 17e2c342a22aa677164f88364ae3e792
BLAKE2b-256 f6b41b18d6d5145b12e7b3cd83e46e98762b9071abd5954cb1eab6660f39940d

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.32.0-cp38-cp38-manylinux2014_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.32.0-cp38-cp38-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.7 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.18

File hashes

Hashes for grpcio_tools-1.32.0-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 524f0460a49a3248d1cb462d0904e783a75bb3cecdcaea520c3688c8bccd9f2f
MD5 22f88ccec3cd46e9ee41f7c0577a5adf
BLAKE2b-256 ad0c85b9860ddb44c3e6d24f80c822d03e1c0df3a595f1ba92edf91e7256515a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.32.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fd059d37d9537fa1a89b1139f8cbed7530a5f81c8577560d3f7710fcec95efde
MD5 89d840a6774c572944665775a6224e2d
BLAKE2b-256 ed9725233b2fc90557e71ff80f59166ab880fd85f228ac2902841983c8d822d5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.7 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.18

File hashes

Hashes for grpcio_tools-1.32.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d3d01ebc1526cc9cdc5e29d2196bae43d56d8ec545dd30fead8b8b3e0b126808
MD5 8c2949b301fdc40c6326268583b5297c
BLAKE2b-256 f56c3e8e885325aee99a5f8b2f8a0851d85e5416125f6d30765a61c690241429

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.32.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c2da2a4b2209156d0f88f91bd5d4650a9ed830acb6f685881a26d67d3f671361
MD5 49766005fd6fe0e1596fd5cd65af3736
BLAKE2b-256 1d291caaab6cdbb6a2dfc3b99fbdbc06ce348030bd50be67018c9f7dba0a18e7

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.32.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 632bba5853e955072392aac42fbca16daf65adfc0ec094fa840afbb83c78bee8
MD5 49c92164b8f6e8f93ff81fe34c0fc0c0
BLAKE2b-256 e41e3742db9844304414155ae9a0b208aef51b10e97eaad6030dff57490b2055

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.32.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 de8ca90742bd41a19c1067fba6ffa13befd3ddb505d67eb297d6a418a5937a25
MD5 bc38b40265cedd0532649a35324f25c4
BLAKE2b-256 3650cdaed219aeed7d5b7128d823527aa71a05560496f54e27f69121a86479e8

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.32.0-cp37-cp37m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.32.0-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.32.0-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 708077380f458ef831e7da67f574abfb2fc6b6a24225c5976d92809b8930254c
MD5 153f48e65ca791bc9cb810d665adb7d9
BLAKE2b-256 6c0c5f9a6427cab2e97e7dc9059af26f58dd16424a4d100ca88a25b37c84bb98

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.32.0-cp37-cp37m-manylinux2014_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.32.0-cp37-cp37m-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.7 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.18

File hashes

Hashes for grpcio_tools-1.32.0-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d11f432ed6fde059b33c514b64fcbf4527f56e03ff94f52f95121547c6945825
MD5 adc6063393d139f787ce28b818f5ce36
BLAKE2b-256 1dcdce8c2a8292795402092b2b0f042e40a2da4bac52fc3ef868008ef1703b2a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.32.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 bcc62cb4a3c9a39fb9e349124018e7d7edf0f627592561410e28b590767b831f
MD5 378a83aef3dbddaabd7276106e9121fa
BLAKE2b-256 54422dc175fb24e5d3bec6521c22d4a814ac722d8ad54deb7d3e04bf8e73e2ec

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.32.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 adeae62f3bd1c6839e3822620f7650d30adb7398170e3a0b45a0059f9fe631c8
MD5 71df7ce8cfa2285b550d8c65722cc74b
BLAKE2b-256 91609472c786021cd9564ff1c365fa9b5c440416553c8f0f593e6d9b28faacbe

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.32.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f5f381943081792d82fe34c5a649d98a6b91741c6d62cbca8914943b8d1a4e8b
MD5 11c64efcde662b99d06b950feb382202
BLAKE2b-256 06c52687a0ef17b4444f2ea663572b982728eee93f629f64c6fe08fdae9368a9

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 1.7 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.18

File hashes

Hashes for grpcio_tools-1.32.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 a137b6079c96f11f0854a4793910f76aa4a62283947311b6e5131369fa226b48
MD5 8949b484804718789ef9114811d81c72
BLAKE2b-256 0cd67eafab6ee4d2e73abcdf966d84208ccb84a70896ecb10461cd8571d811ea

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.4 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.18

File hashes

Hashes for grpcio_tools-1.32.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 6155ed6fed3c9a41fd03156c31adb5012c2399992c929987d3fa8ff1cd3c7cd8
MD5 136a906cd3819f0f71ec799991199bc3
BLAKE2b-256 f04fd778097ad7d8e60baffd9920d6a142e000cf7b0023646caf48d287042cc7

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.32.0-cp36-cp36m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.32.0-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.32.0-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 71c451240e66245125e504abee5acc7ab30da099d5c17596d43ecc66e6034e20
MD5 f111cf831193404b2dd48f7a70a09ce5
BLAKE2b-256 d4b2fb6bde3a3deb67d4416fc0e2e2aa8b1ee0142659abb19fc9ded206e139d8

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.32.0-cp36-cp36m-manylinux2014_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.32.0-cp36-cp36m-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.7 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.18

File hashes

Hashes for grpcio_tools-1.32.0-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e83146ef8f17e3a35fe77a438794f0a4a50ea11085194bfea1b419c1b342f7b1
MD5 c3c61e53d53b738cfac431a13a56c408
BLAKE2b-256 3fb4043c2ca81b345373041b522ba5f2ef3e6ae733f8039653967d4f66eee3ac

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.32.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 541a6b992aa417a6305c965bb6896aa1a1ca37d00a82d5438074b18db6a37aad
MD5 d72d2fc77a709e027fb1d68b6704e343
BLAKE2b-256 5bdf7f5f1207eee7d579e3e51d80b95c433475399e365a7b7c194d010fcf24bf

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.32.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6aa6dd1d7e746c41803a209565d23e6027b0a5dd9b59596da37f99257cc58e65
MD5 eeab3982f8d6eecc3b98569a4b3e3343
BLAKE2b-256 535392020a0ac89264e9ee6eae72f74222fb3702f8371441dc998ff582c1d97d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.32.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 246caf8cdea97ff3710a810c55c9400e3aa7af1a5464a667d62184e38a58a031
MD5 1afe218c33db836b2594ede79fba6b8d
BLAKE2b-256 46af4a6d70079c0029578044ab140432a9bb1a246334bea001532615aef7c733

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.0-cp36-cp36m-linux_armv7l.whl
  • Upload date:
  • Size: 25.6 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.32.0-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 11228fb5343c197e1f4376a966f6845ea270c794ec925260b8a27f6df5d90d04
MD5 d2cb0c14a2027890ae33574693bb4894
BLAKE2b-256 34e8cca63542dcd64108883f39bbac3bd608b799ea39da5cf4990395546e43ef

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 1.7 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.18

File hashes

Hashes for grpcio_tools-1.32.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 130c248d0d94473f3eb80d86bdae35a39eb20ab98fde6d227e7f7e053ccbba88
MD5 0ae86e61a049474a0c1541c43d8dd9b4
BLAKE2b-256 6788654e21910b4ae2e5b801008ca798e841e2224892672ebb9f3b4bc7549c0b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 1.4 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.18

File hashes

Hashes for grpcio_tools-1.32.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 e2a37e716ef6b5e81c44648648aae258b67b9ef19e0a472ec4080f5e384be386
MD5 3f21d0da91d4238c1dbe3141eba76435
BLAKE2b-256 1334091390a63866aea5791971625ecce018a8b5a2747823c9362c355951e91a

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.32.0-cp35-cp35m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.32.0-cp35-cp35m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.32.0-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8147085f0a044ddc27c870feb8e82a25685f3fdf09184dba0f63fed720f12e93
MD5 ec457ef9f8934a895eb990c6bce93d3e
BLAKE2b-256 afa39fa899799d7a3815c47dbf8b2df0d66719eae0c41ff24d702d9d7b615634

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.32.0-cp35-cp35m-manylinux2014_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.32.0-cp35-cp35m-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.7 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.18

File hashes

Hashes for grpcio_tools-1.32.0-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7a18d6375efe075cc274fdfe004bee4530319a2dbb044eb7eb157c313fe88c97
MD5 a67634107a706ab9e4699d7540ad831d
BLAKE2b-256 00a04db5666ae5053f3824887874dc4cb2b60cacee71bae4f18689adda403caa

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.0-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.32.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9b5beb49002bb1f1c0641b55ddc2d1d92c7844fb42348e874146bf7667b6ca20
MD5 ecc4fedd6707764b41845db270341a8b
BLAKE2b-256 524c41c08a16f317101fea60c8d0a399c93cbff3daa2b05111cc1b4da4ebe797

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.0-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.32.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 83414dd919b692d92876db787b6fda709c226243c9bdb71b5025297a127f3be4
MD5 999a0e7e7570495d17ed40688c62a079
BLAKE2b-256 2044f44548f413157c916fd1e8a43b5ffb5cd0c567d9f7f82b0d16308345fe9d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.0-cp35-cp35m-macosx_10_9_intel.whl
  • Upload date:
  • Size: 4.1 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.18

File hashes

Hashes for grpcio_tools-1.32.0-cp35-cp35m-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 3971dee0cf57dc3813f6f40724161341ec3b31137b026ae8d4db30c83afeb2a1
MD5 0fda70287b26d021ba3bcd565d89874d
BLAKE2b-256 7f11d0907608cc6fd9115335ac7886e645c5bd64bcdf0937237f0174a2950fed

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.0-cp35-cp35m-linux_armv7l.whl
  • Upload date:
  • Size: 25.6 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.32.0-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 6e26e8d0ef73c04dc1118513c06ff56bce36672c8e28410ae4f938c22002ba00
MD5 4fd7129cdbd8dcc9ad6258b2f8ff16a1
BLAKE2b-256 3eb644a94b7fe6212264fe17e5808ad27bde80ddf656460b19ff2981601a0711

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.0-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.32.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7d5be0d06bf830efbf1867db7b01720e54a136454410270e896441ec56baba00
MD5 f92b6763c83ff221e62f3adb266f0e08
BLAKE2b-256 eadb4b13334a7e3221b77328bd3a9138d66be7996d081e0357a38a651972f736

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.0-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.32.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 37acc75ec1dc836772496ef77170fab585e2517abdf1330c29e682eb50a6ce86
MD5 f412920584eadb9e1b1c70510d356ae1
BLAKE2b-256 4af663140584afffed9b25f7d35ed21cf1af1db1465ab8a9a930234c86824d6a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.0-cp27-cp27mu-linux_armv7l.whl
  • Upload date:
  • Size: 25.6 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.18

File hashes

Hashes for grpcio_tools-1.32.0-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 4e04d6a7c48adbdca64e9b67cc75e8294b3b37b1284dd2819183e38a4207aa39
MD5 3068a4c4161f4daa9acf6a9a4e3c8e1e
BLAKE2b-256 5e74625605d9fcffc5d585176a3e9cc8912c38cc1b67139cf35f32181ba6c4d2

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 2.0 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.18

File hashes

Hashes for grpcio_tools-1.32.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 b31e7e909ba9efd8a08eb45665bf2f8326726da288d9e33555473e6b20596dbd
MD5 c5b1835348928a187001993fe416130f
BLAKE2b-256 22dd0b12e3d0e68644bb24c7232635ee579d5ef8aa7747bf0cb474afdf2aa560

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 2.1 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.18

File hashes

Hashes for grpcio_tools-1.32.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 a3524be59d4e6f8b089f7eaa128bc83e2375aac973f1bf0b568cd1c04c4df56e
MD5 ad3420c961db55e3b0c1e3362d7898b9
BLAKE2b-256 4f511f693038e24ba22df5b891a8baeab5bb2d4595212e4e1a633a335eab6e1d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.0-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.32.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4f61edfb0c07689a2835f15f4a25a781f058866cb4fea0bea391ae6deb74325f
MD5 97fe50ea6ec6c414bf793b0d02c6dc05
BLAKE2b-256 60dc6f344af021fa3b809aa22de279e954601e9a8bccd4f5a1b5a936c5d6eb8a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.0-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.32.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a7432b84d6f2f6260d5461eb2a8904db8cf24b663e0a1236375098c8e15c289c
MD5 2ecb9f61f3b019deabf99cbc99207419
BLAKE2b-256 331f35ba9a0fe79b03d15fb93726cde89b3aa2d17fb496f85d1cc5eee53b4f4e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.0-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.32.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b6165dc7d424c3c58a54e9e47eacc7cc1513cd09c7c71ff5323e74ead5bb863f
MD5 aa7786e16e18dd784e656e67af658dd9
BLAKE2b-256 57d501c9079916206bd88effb11e6a28f78a1304f34d9a768e26f7cc0ebd15af

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