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.31.0rc1.tar.gz (2.1 MB view details)

Uploaded Source

Built Distributions

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

grpcio_tools-1.31.0rc1-cp38-cp38-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

grpcio_tools-1.31.0rc1-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.31.0rc1-cp37-cp37m-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

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

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

grpcio_tools-1.31.0rc1-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.31.0rc1-cp36-cp36m-linux_armv7l.whl (25.2 MB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

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

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

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

grpcio_tools-1.31.0rc1-cp35-cp35m-macosx_10_9_intel.whl (4.0 MB view details)

Uploaded CPython 3.5m macOS 10.9+ intel

grpcio_tools-1.31.0rc1-cp35-cp35m-linux_armv7l.whl (25.2 MB view details)

Uploaded CPython 3.5m

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

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

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

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

grpcio_tools-1.31.0rc1-cp27-cp27mu-linux_armv7l.whl (25.2 MB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

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

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

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

grpcio_tools-1.31.0rc1-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.31.0rc1.tar.gz.

File metadata

  • Download URL: grpcio-tools-1.31.0rc1.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.18rc1

File hashes

Hashes for grpcio-tools-1.31.0rc1.tar.gz
Algorithm Hash digest
SHA256 8be83360c78fafef99e2e40fa2dde2c67740ca0fc78c24f5155ce73aeeba1134
MD5 723624fd0617a281e0aaed4280657a0f
BLAKE2b-256 4ceb4924e86306077e942350369c2b5fee3334259e7843c8c5e13331c997460e

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.31.0rc1-cp38-cp38-win_amd64.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a3fdd0112391c369bf9c2931db7922644e11606f1f24a34928ff3a343588547b
MD5 23fbb9433f0e2da428847904f55cf10a
BLAKE2b-256 8dd7cee179b5ea068345ac47a8d17bb2ab69987ffc0ffd4e622f42d33d07d152

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.31.0rc1-cp38-cp38-win32.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0rc1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 90b37cafe3458425d1795f83e5df8efa5872b1dcd19acf0a4f7e1138ea231b82
MD5 1b7cd626570bc75dc803d856c096b194
BLAKE2b-256 72c1fd9723632e9085bb94d0535c35f974837f68f4cfb6bc32412ab2ee00089d

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.31.0rc1-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc1-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc1-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f55300bd932d4922e5f2737d4401033542f0fcd3e9f467ae9299dff225d8a80
MD5 b4871fd579d39b629c62197154850b27
BLAKE2b-256 92ba524972b57bed7348de1ccf83c29ef96c4d0fb731f49c09097c5d91415fc2

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.31.0rc1-cp38-cp38-manylinux2014_i686.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0rc1-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 48e2d06097c4e8be69f6e764306618c9215e391ab33ab12dd222442e807afb49
MD5 8fe11141ae4d906625a99bf102e710c9
BLAKE2b-256 c1644c5319dc5e33084a80d506780ddaf16f7f7ee314d817196565ad78698861

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.31.0rc1-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc1-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8c16c7da220c7bb5f4fb59c32e068e649ca924623912f33c846160d40af7e198
MD5 d2fe3275eb8b808ca1c73bc1c99a2383
BLAKE2b-256 06799ad8c12df556965d98a50e51e30915c0f3d5a4d701a0ea05451dc80f74f0

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.31.0rc1-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c59c2ee608a2e64b7ead88503fe56af3c63c3560d400840a0c57e19e093fb1f1
MD5 418398dd3b61422e9da2446df4690d15
BLAKE2b-256 71574c462efd0028de5866ebe83aea5595a77976a65cc967d7c713b54d9deb0f

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.31.0rc1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc1-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 86e5d09e46713de4be023de5234191a1b56d72c26a128c486e490ad4e629c5c2
MD5 8f70feae31b193a7d2b459b24ad0275c
BLAKE2b-256 cfcbf8222d84cdf9ead4619cf0405e9c546958ebf5941b548b2cb254bb8799a8

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.31.0rc1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc1-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 4a0e4ccc5643aa668bf372cd9f38a510b25a4177c4d113d0c5032568d3cddb07
MD5 4dcf4b8173f552d344202079d939e2fa
BLAKE2b-256 fd1ed4274548fbfef8c4ce7e0e3f2ebc6147290d9076fc249160d96a13857b8f

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.31.0rc1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc1-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 5d54e1f7d1bf47a984b3d60d725a9f878f6bfad7f2cf27338c397ca55f5958f2
MD5 ae4cbaabcc053fa78ad460fa395c5172
BLAKE2b-256 37778f27494612376dd0a1e4cfa08a3a90a0978e78faa7583eafb7b12319c62a

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.31.0rc1-cp37-cp37m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc1-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc1-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8e02288cc321f91985c4390bc79faee07adc03d056a7ac74baf7c8bf806867a4
MD5 db2dea294cb2a649114e83e8c773bc2b
BLAKE2b-256 703c4d4325f590c61bc6c22f0444df0b0c3288a7e4d51d78549b8c95adfb491b

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.31.0rc1-cp37-cp37m-manylinux2014_i686.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0rc1-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e20747899de3bf6e3956d288c8dee8cd3060da482008025549cff80f06c6114a
MD5 892e855e83bd8b6c84676f787f2a8067
BLAKE2b-256 6e94b5995edd1bf3f1812ed41dba520ced514fd9123eae6201db74d4cca340e7

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.31.0rc1-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc1-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fb7205c5baacd43bd5dd808c59f57711de35758a758cb32227b0354d6e76f348
MD5 8c7f417c6cb2ddc82788d4732642a005
BLAKE2b-256 2f845c671ba0f0aba382f1e61e8a46789accb5b72d3a059c5f271264e64351f0

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.31.0rc1-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc1-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 67ef52aea1665705586a937377fa90fc30b6037aff1b56f58736f25baca20704
MD5 c947665685513fc074147996c72232d8
BLAKE2b-256 5e7aa7a7319a3e95a0738d385afcd2e66bbccdbb8ee2abd6fe846ad0e0c44b5d

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.31.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc1-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 62e05462c733ec6a7967d13f95271a2fe3e3c1c05deb28e93dd27aa74a920bd5
MD5 e9b0a6ba3a775f0c83cbbad3b2710597
BLAKE2b-256 e888f4cdacfe34f0550f266ee9b344b4e428da7dc202efdc5ae6ea3de0661a52

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.31.0rc1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc1-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 14f3cbb53a7b9ae41218b5019bf792571a0b5e3e6d087530bfbd93360e1a56e8
MD5 df1c503110bcb8d5492f9c185e0b087b
BLAKE2b-256 98964c76362956a0108bce5d4efed4b11230b0e1a7caba248819a135edd319aa

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.31.0rc1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc1-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 a91ba2ef879a6b7e9a663b2ae536ed9ed29accb0383763ddf9d02bf7e73be547
MD5 a764b54cb15a53eead3c420785648ff8
BLAKE2b-256 4a42674c6cc8bd7cdae3e68fd2e62133b1dbae3d8c37a2ddf11040c9eaffeb6b

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.31.0rc1-cp36-cp36m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc1-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc1-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 66835881928f4cfbff10d33bec65d18dd83634891ec2d47ee12e2943b91dac8e
MD5 96698b6df1ce78ad9b186d0956c9a8b5
BLAKE2b-256 0ac878cb335208af53e8d4fc729b046902be98d5ec526ea7cab28aea45572f5f

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.31.0rc1-cp36-cp36m-manylinux2014_i686.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0rc1-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7acaa4adeeaa051e29e90cf499ada51ebc5b18998f84e10e2d585405e9f67585
MD5 a720bccdfa4d02613daf72633442e49e
BLAKE2b-256 38731bd2948fe48a8115fb54f5054bbd369ae41cdd34d6960a8a1df0a040bb4a

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.31.0rc1-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc1-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b2442f85f3b0ebcb48132fdf8873d4cf879aecd1f6ac35fdfdbb65bffe6df018
MD5 dc27bd579ba8caa5f286e26fdbe0a33b
BLAKE2b-256 6868f25cfb439fa3f4a7a973b15e3b8dc1eb737415b4f6fa8f2f5a3ab7376428

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.31.0rc1-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc1-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8e87155e0ca01f066065a7aff290a7a5783dbccaeba2ec5e1445929109ae24f5
MD5 c34704da2c5dc19a07b7002b8251a8c0
BLAKE2b-256 412eba3800a286abce52eea29908c6da07b8951edaf32c30a24d38c959607ffd

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.31.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc1-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 291bdbcb8eb01828e09896b87fb82d5c600d0746669a280f8b613933e99a3511
MD5 4832c5742c4d59296010dffa62613fb5
BLAKE2b-256 c53dbe58ff8eea831283184ce6df1d56746e3903f4f299f60d88d9e89bd283d6

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.31.0rc1-cp36-cp36m-linux_armv7l.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc1-cp36-cp36m-linux_armv7l.whl
  • Upload date:
  • Size: 25.2 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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc1-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 5e610e1a5df995b8b5515f7b4a0bc5cc37281c671c1d63c698c549312a56f59e
MD5 3105fb40bf22928b4bd5e407d50bcc73
BLAKE2b-256 c842202de41db407046609f60300eb7a2523ec5cba0e1fde1db768b75c1f8475

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.31.0rc1-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc1-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 921dc97c736d56cba7fe54ad35415388d30459e3b69a97851baaa9f03fc21e9e
MD5 254386c1ff5b9c8332af2fa956bc2668
BLAKE2b-256 adc3d9fb5d83a66890255f45cdab20ca2a0b889ed0b438d4c519cef389f5cb6f

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.31.0rc1-cp35-cp35m-win32.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc1-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 afa9ecc40b4a52287806bb762949e75411b46c21633182d60ebaaff5bb91ca49
MD5 f11c71f6d704ef127e79fd6e5094d9c6
BLAKE2b-256 96507048eb1fd00d482aaaf4623d8248db3b5aa95fc911d1bb40b3db7a4ac074

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.31.0rc1-cp35-cp35m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc1-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc1-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d22bb87e431e89cc266703604be994b84c043827f46c388786fad8b097943e17
MD5 f0da8304d43ed4d0a952f12501aede75
BLAKE2b-256 0201dc0025ecadec12794f035c3e1f947088b074aa4cd7d9254914ae57c6641f

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.31.0rc1-cp35-cp35m-manylinux2014_i686.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0rc1-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e7480f88f4e210e09651e69b45fea545d6c22bc46594ca0187dcbff01e832b21
MD5 e1c8c61a79be3a1fae6a010b5c92417d
BLAKE2b-256 23e45331cb8d5cbc19dd31c2282319f2db9d802e91ba96e361dbcde0dbc02a5d

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.31.0rc1-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc1-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 83cc72b414eaf19fc19fa333f5d4d730bc548992acb2b6b83c1c6e24d16727ce
MD5 d7f0099959a4e9ebf2534ba93b006e5e
BLAKE2b-256 2f117da581b06df84ef3dfb28cf07a721cf7ef0e1001940c174fe2589099e620

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.31.0rc1-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc1-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 47b16881d40e188f2c9288e467f32967d732e575ceaafc71d980754c34638e72
MD5 ac92fe5ba0dc533b709da00e0cd7866b
BLAKE2b-256 c9043325c8244f51e855bbf2ed43a1e1eea370deb6ea9dad4279930ea867c6b4

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.31.0rc1-cp35-cp35m-macosx_10_9_intel.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0rc1-cp35-cp35m-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 234be3761ae9aae2f87a3f12f743a0bb4dcda06d8ebfadbcf3e94dbcb02da67c
MD5 245cfa5cc6adcc72e1e35686d179e5ce
BLAKE2b-256 b56ed7f02ec514864e907a2368ec4d94fa0827d3a0d65a67a7aab88839c0fbf9

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.31.0rc1-cp35-cp35m-linux_armv7l.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc1-cp35-cp35m-linux_armv7l.whl
  • Upload date:
  • Size: 25.2 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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc1-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 3f5dde127394cdca0f1fed59459870afdb521afa4f0437e31b305197bf72fb67
MD5 5559f0f19417567caba88b840537161b
BLAKE2b-256 eefe8b51065af11fefbf6c290f8f2edf36bc00ecb846b4b9482fd57e7a8ff994

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.31.0rc1-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc1-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ca56edd077623a866bf81ca86247a1dc65656141d98f97e04dc0a7490651521e
MD5 b49267ab520060b22f45d8aefa6732b3
BLAKE2b-256 55655c5d4b70e05a83d61eb7153c5d9670e8978a4b2955d91b35d4b9ae56804a

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.31.0rc1-cp27-cp27mu-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc1-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1b791ebee6ba3ec19e7720a09122226ef8ae4d1a1807a5c7833644aeb91614f0
MD5 2597c93dcb3a469a26225e29bf07dc13
BLAKE2b-256 200762cff570e56a3ff41ba274fba6a5df6d2949f31f19517794ed6da8f5089d

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.31.0rc1-cp27-cp27mu-linux_armv7l.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0rc1-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 0bf427441a1c3649173e7b404f55160a226e783303f2de6c86fffd147d40553b
MD5 45c90e7f8603c4adc317ad7cd3b23c52
BLAKE2b-256 8ce05764e9934fbdac2ee2388b70171ede5a140f4cb1ae41810826997f947ee5

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.31.0rc1-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc1-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 70b481175c30320b71572c8d35e8b2344f755ff038db805dcdc66971f474030f
MD5 f8ed2d38d56bc2c300ec2d2cdf2e71f0
BLAKE2b-256 765a80da07fcca8d11fa4effc495c87ba87e499dfe9e9462c7419d49e103ae98

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.31.0rc1-cp27-cp27m-win32.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc1-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 e437f5348ca13b464f0c7c9a48282c0307320cfd16c49c62ce51287a46849fbf
MD5 f10627b9458569422cf0ed0db46b6282
BLAKE2b-256 d0e1f692958bd7bb142a1ce914c56dbcf04ac8e6e128c8b2280e057631dcf246

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.31.0rc1-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc1-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a7b11c8e9781b43b98a27b11fc92baea792bdd277d9315444412dc5a1180e0ea
MD5 59c6b4a4f0ecdf9f8072a4f8c1cb80bb
BLAKE2b-256 95789a43e9a1a9b0aa0491de45de65c343aa5af36c67213a4e709abae1e331c9

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.31.0rc1-cp27-cp27m-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc1-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 94ee9fbb2a239df543781469d77a150edcb09fc6f195933a7b9c0d47b2785cd6
MD5 7b7541fc8ba772a35161a2cd973e1b0e
BLAKE2b-256 63757c5501fc93cef0336be2804032ea5fa3c27f1605db17a0d4a916f22c99e7

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.31.0rc1-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.31.0rc1-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.18rc1

File hashes

Hashes for grpcio_tools-1.31.0rc1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e3138d51b69bd4299b9dfd23fb44a5c2dd8f4c757bcbaf6309212024f9304704
MD5 cb843549a1da064c6784ff67c4217825
BLAKE2b-256 fb737830406ae30852c41ea6c7f748af89ef4fefcd63536b89e7e770b389bd08

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