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

Uploaded Source

Built Distributions

grpcio_tools-1.33.0rc2-cp39-cp39-manylinux2010_i686.whl (2.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

grpcio_tools-1.33.0rc2-cp39-cp39-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

grpcio_tools-1.33.0rc2-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.33.0rc2-cp37-cp37m-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

grpcio_tools-1.33.0rc2-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.33.0rc2-cp36-cp36m-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

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

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

grpcio_tools-1.33.0rc2-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.33.0rc2-cp36-cp36m-linux_armv7l.whl (25.6 MB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

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

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

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m macOS 10.9+ intel

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

Uploaded CPython 3.5m

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

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

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

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

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

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

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

grpcio_tools-1.33.0rc2-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.33.0rc2.tar.gz.

File metadata

  • Download URL: grpcio-tools-1.33.0rc2.tar.gz
  • Upload date:
  • Size: 2.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18

File hashes

Hashes for grpcio-tools-1.33.0rc2.tar.gz
Algorithm Hash digest
SHA256 247e34a3e6cb241a375b26ce8c816b5e635e6051a49368d1bad3d0162dbf8cdd
MD5 0c231e0d9f357bf843a704c6fcb04fcb
BLAKE2b-256 79f614064e3d4718169c5788ce7a64048accb2a88b00af380ffb84cc1730efa5

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.0rc2-cp39-cp39-manylinux2014_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.33.0rc2-cp39-cp39-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.33.0rc2-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cc91c9ddfa383b4d0cfce96311d19aa6be8f5a1670a1fe408d1de5285289b574
MD5 93a30dffc1c23d0e092c40d6633a09b8
BLAKE2b-256 8f4eb3978c07c6619c0f7f088e0af3906b9b62175daf419bdb00c1d085abde64

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.0rc2-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.33.0rc2-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.33.0rc2-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 076014d2635b4bf5341cc3f6344aa69d74dd7fd9dfcf2ff9b7ee87af5f2e2109
MD5 e0611d898e30f323d40756aad74a0b32
BLAKE2b-256 f5a30553ca60fc2e760de102ab16d9776cfe42aa348eb0164f022a96c1bb916d

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.0rc2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.33.0rc2-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.33.0rc2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 31dc298191d3b89aed11b637e339c1a31d3195b09985de5014f63cc1d080c572
MD5 49d299101bb1597725d0b742d9191322
BLAKE2b-256 368ca346e80b552314170c983fefa29f565ce66683c0ddc6cf71453fddf1c3ea

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.0rc2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: grpcio_tools-1.33.0rc2-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.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.33.0rc2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c8eff6aeb0f4d5c43fc54584aedd42b5286b3607b66cca1e55c6a738182e2bb6
MD5 7737c77496c833d8fa65c41492cc78c1
BLAKE2b-256 302fde5970e7a4e4f9cf0452195f8e0d07feddba1bcc05c2672ce02fb2ba1b2f

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.0rc2-cp38-cp38-win32.whl.

File metadata

  • Download URL: grpcio_tools-1.33.0rc2-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.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.33.0rc2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 e0dc502ddd99e789d9d81f61bd54690517046faa8491ae344df0a0d64c7524af
MD5 f0b565c6925915a5a48a779beea5c081
BLAKE2b-256 ae6088c82025fcdc469cf686ce6d51b9697eaad040e498362ad4c1d0807d8707

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.0rc2-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grpcio_tools-1.33.0rc2-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1e3efa603bd97b7cffa67c7184ea659aba518f39c8b7177da386c2b7fd3a5cc8
MD5 2c6d5d429e93df32163e38b3a9157f60
BLAKE2b-256 3c84814fb080da7274d41c9dca88c7ffbacd90527d2399d3298fc8000eb6e31f

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.0rc2-cp38-cp38-manylinux2014_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.33.0rc2-cp38-cp38-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.33.0rc2-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f54eece496fc94859f03cec1aca6de6e33fa4cedd3d5c6b0f2c832b4ba5e82a6
MD5 bf5d9e10f7e817636ff0462a97cb92a6
BLAKE2b-256 fe196989085f374cf977d3b1243a6e03ad3579af5a31a28b82c4d0bb3d05855c

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.0rc2-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.33.0rc2-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.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.33.0rc2-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 86e3b3840020366c71ea47439d3e2467c535674d63c9306f93b0c28cfd5e1cb5
MD5 40e800e499cc6ae6a05bdd8d8f387342
BLAKE2b-256 a9cd274e069a9ca491fdf8e4f2a72a8a40ed9a48b2cc6d6dd5984ecef5bc4ad6

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.0rc2-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.33.0rc2-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.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.33.0rc2-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f70278888b45801208331eabf74804d5ec61594b4c0b37ce115140094764890f
MD5 a929bb1ea299e80c8b17536e56fd44f4
BLAKE2b-256 770de4b87e9602d6d8549ac82af4530b2286791e7221e166de29dc83fbfeeba5

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.0rc2-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.33.0rc2-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.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.33.0rc2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c5154b02eccf8886f1add878659a6ff0ade734dfd5f89db639e051cb91e213e4
MD5 f503f1754f165befe90790a331104172
BLAKE2b-256 2f86b244fddf4e835dae63aeca4522f1d1cac11ceb58b58ee54c5b20f2a72bb6

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.0rc2-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: grpcio_tools-1.33.0rc2-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.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.33.0rc2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 9f4d8f8c56e659dede2776217ad11ce3bfdcfb3746ba08c03942c819190ff39b
MD5 dfb1fa9e2a869b55044367d8d530c035
BLAKE2b-256 30f6ce631ff91f4af3db6b7fbfec2b4e97da165f5ff92639ff72d483c8e1ba7f

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.0rc2-cp37-cp37m-win32.whl.

File metadata

  • Download URL: grpcio_tools-1.33.0rc2-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.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.33.0rc2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 c4c15ce3444c798c6bb0ea1d44f278f2d6a4a5ed4475a532b8a754571aef13fc
MD5 0ea9a47bc9c11be48a0cc9609622ec00
BLAKE2b-256 23e3b0fb1130f73adb57d5b87ef463bd3cdba1c0c730c71c049f850063e78a70

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.0rc2-cp37-cp37m-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grpcio_tools-1.33.0rc2-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 419e2c40dd7daeeda70809091ca4287d334516a95690bc0d5c0640c415d814e7
MD5 59cdd220a727c41e36041ba67474047c
BLAKE2b-256 1ce24e97532d87c170771ef7fa52233b0331f9a2ec8733d4f5ee2f227f2d1ba1

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.0rc2-cp37-cp37m-manylinux2014_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.33.0rc2-cp37-cp37m-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.33.0rc2-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cdaf03af201f613642e30efdf38dcf7bdc13ea38740c7bf72b1e2adcd2a96110
MD5 59f23210dcbe6fb47a5eaea32d4fb1f6
BLAKE2b-256 60d5385db4953a6cde3dd1ac0b81ed4256f3462149a5775bbc6b39d8e333c1e5

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.0rc2-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.33.0rc2-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.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.33.0rc2-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e8c1501069033240cf263a9404c88d16a2502154cdfa8027fa83881bb0578c6a
MD5 af1a7dd8d2227851172d7c6fd6b22141
BLAKE2b-256 44bc739327905e342f2ba5900cf1166e6f88db843867534cb0bd60a6bc04f98a

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.0rc2-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.33.0rc2-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.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.33.0rc2-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8b8d7f690060ae8e162d59efc17833650eab08b6cbcb004cc71e69c0f7ba7777
MD5 987659ae24cbaf60ca563cb852f7232f
BLAKE2b-256 37166888d09fe4fdc2d7099a0df89b3f4b5f782b4104441dd23b311502da632f

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.0rc2-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.33.0rc2-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.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.33.0rc2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 286acf667bdd9008f73fcf3a7bf2d0c8e576b05d3827cc2cabb04f7db0785f99
MD5 834cb6a0b6d7be46f1929e8670fada08
BLAKE2b-256 ea8a304ca1b789faf083a9ef737a0ce5683d609169d0e798dbe89d1673d4a0c6

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.0rc2-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: grpcio_tools-1.33.0rc2-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.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.33.0rc2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 e0ad891ee2355bc2492c626b970bb3195f1a560dd993e9ca06d458be33d91dd3
MD5 f4b896fd5339792d43a0ba42e8339974
BLAKE2b-256 1a8615846cc49d3bd8d04834b4c1f8c2b017665b8d530a21db26cf80852b26f9

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.0rc2-cp36-cp36m-win32.whl.

File metadata

  • Download URL: grpcio_tools-1.33.0rc2-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.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.33.0rc2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 904eba8d31f9410d63b41946c5d94b043f1450b9a3b7095942faa0cfbc90061c
MD5 0a3cede3557179961604b7caa992d873
BLAKE2b-256 6caef3323b4f3740d37677dfb68995e85720edb3d7f118015c7500cb3d9b3cf9

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.0rc2-cp36-cp36m-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grpcio_tools-1.33.0rc2-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 51037f82ac154d5a3b7861676acec88c4ad7478db816b37cdfb4fb74e8a5fb5b
MD5 97b000967ebd42151dcbcc556f2087de
BLAKE2b-256 449c65774459cd11d1866e7d71163c9124ebdb8a082b991d26d246a500d692f6

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.0rc2-cp36-cp36m-manylinux2014_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.33.0rc2-cp36-cp36m-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.33.0rc2-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 09306984ff3e15d9b386a5e5008656b3cf35d67a7ddbd4f1ee17ef95fffb4780
MD5 67a0bdc2a247105744e9b0f1f25e1b45
BLAKE2b-256 6d7179848d22170612498ad2764df9b9c1faba49f392a97cb3265be174823a28

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.0rc2-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.33.0rc2-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.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.33.0rc2-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5b6c240505fc2c94531a4a6461cd29ab2bd826f9951b1cf045d685816ec88620
MD5 f81a1e9aff6de0537ca94d2843bf41ae
BLAKE2b-256 1cb0088fff17a090ec5907a533e4c31a880513da3ab4bb0065d3afcc9ccf898b

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.0rc2-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.33.0rc2-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.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.33.0rc2-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 92839d1e3ece74fa353d21bf03c3628e73aecdb8fea2896cc91c82b8b6f3b094
MD5 9b49e2bcf36ef9341b5ac442e53e63ab
BLAKE2b-256 d528f2a5b729053bebd0f199a49118c95d8541e2f80688901444b695418548c6

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.0rc2-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.33.0rc2-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.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.33.0rc2-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 880f2f83f7203f0e7b01a79c91eebf2cf7e0d6c2de31830a672761a4c4e5be27
MD5 36314104dbd343cb519ec0b3d89938db
BLAKE2b-256 1fb14691ef04c3f84bee91b8539a11624830f173c9f6020c8c010867dc99b9d7

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.0rc2-cp36-cp36m-linux_armv7l.whl.

File metadata

  • Download URL: grpcio_tools-1.33.0rc2-cp36-cp36m-linux_armv7l.whl
  • Upload date:
  • Size: 25.6 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.33.0rc2-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 02c1e360bed359288ae3be696fffba6f53d075bdf2022e22cf342cf92e5daa75
MD5 0c3ec4c38a4a98868b51add4534ef77e
BLAKE2b-256 23d9afef24a371d2f52b1a6437b54f7067cb9765534800719690d39dfa3582b8

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.0rc2-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: grpcio_tools-1.33.0rc2-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.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.33.0rc2-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 dfdc4d214a3adb9c5bcf3e2d4e00d32331b195686f500ab8497aa5d63535e8cc
MD5 176f4c1d9025a0d985324a15df30799b
BLAKE2b-256 3c572b44e4c597de12421c11fad47540759e2a64c37ec3c558f63d211abee45f

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.0rc2-cp35-cp35m-win32.whl.

File metadata

  • Download URL: grpcio_tools-1.33.0rc2-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.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.33.0rc2-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 4ca76dfa376f58417e61e3e7955b21dbb50853042bbf525d2ade9fc86ebb5a8e
MD5 cdcb10afbe05efc4f6d2f0ef3e8fb25c
BLAKE2b-256 1c22f62e71b74116c55b1e27497f416c4b495e3e30e8e9d36a3edb38bab09ff7

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.0rc2-cp35-cp35m-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grpcio_tools-1.33.0rc2-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4741970324ae9b4a48f259282abe7a6516ed9c7caa6ed825e5b8a87728a495cb
MD5 24e6e6fba17b672d9086082aa18d6fea
BLAKE2b-256 2ac6542475497324bdc2f6aa54d8299c3de655907fe86251485492b89b135f6b

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.0rc2-cp35-cp35m-manylinux2014_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.33.0rc2-cp35-cp35m-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.33.0rc2-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f7aaaa2149cf7cebbc5a5ce42df316325b3f2b01eedc9e810052af90c09c631a
MD5 16076a695f0bdd4abcbbab6e2c288273
BLAKE2b-256 1263311489f7b31e9c50ee62222bf7292894abaaa1763c3a9d9f03c788675fb9

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.0rc2-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.33.0rc2-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.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.33.0rc2-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1d9a8d1a3f703cb5622a5e34a0d7c1b8520cffa08aefa2ee13b7c59a8b04b78a
MD5 f2bfcfad0ab6678f1efcca7f0306a849
BLAKE2b-256 8b00fb54bf0784b61bc10b579e89acd22a653b162af9bf5dce78ffc727031f78

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.0rc2-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.33.0rc2-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.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.33.0rc2-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a5a9415299ca83e9d4bdc354c3fa0f3b48f61232d0625a80d0abc7b176b012f9
MD5 342f757f9ef47ed1de16b6bd0ea2eeee
BLAKE2b-256 62e68792145bba55bf77d2d791e191be30f65309ab7cd5e8e1525600f4e2c6b7

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.0rc2-cp35-cp35m-macosx_10_9_intel.whl.

File metadata

  • Download URL: grpcio_tools-1.33.0rc2-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.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.33.0rc2-cp35-cp35m-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 890b741f3d039ab7d3972145d50a592ea4b52e353d92aaaf52d3e7c29f4d3b69
MD5 3062c06e2968a68f7469de0d110fcbd3
BLAKE2b-256 4643569e2e3c9e4c97d5e803b05782d4d51b14e66ac17609e05adfa0f4a7ea5f

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.0rc2-cp35-cp35m-linux_armv7l.whl.

File metadata

  • Download URL: grpcio_tools-1.33.0rc2-cp35-cp35m-linux_armv7l.whl
  • Upload date:
  • Size: 25.6 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.33.0rc2-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 59440a36dafdb93b9156ef98432fd30427fe5bb6c6d778d40ff3868bd8025cbd
MD5 5e670aa5c102b9215ae15807f88b65aa
BLAKE2b-256 b45518eaf3068deaf0b492a054c0e5564b7c4881207eab4011c61ceb02d07de4

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.0rc2-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.33.0rc2-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.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.33.0rc2-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6222d226359403e384f647f142d422b3cd2f8674200a6b430d2db1f47e01f3f7
MD5 0b99cad99b6f1b81a956c3f4e5d65a31
BLAKE2b-256 48bd07d598ea633fb0c0e9eea2a5c2e227b3d4d91e5e9edb785e10fb32ae3688

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.0rc2-cp27-cp27mu-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.33.0rc2-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.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.33.0rc2-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ae85aaa383ec91d9824e239b27e15c492db3223348a065bb66b8c4db1cefd44b
MD5 523b2e4eae46d8e75b4ac50fdb291075
BLAKE2b-256 208bb9700d764e5a31cf1c6ebe13d8693e42a795eabb207016c6cffd06dcc34e

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.0rc2-cp27-cp27mu-linux_armv7l.whl.

File metadata

  • Download URL: grpcio_tools-1.33.0rc2-cp27-cp27mu-linux_armv7l.whl
  • Upload date:
  • Size: 25.6 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.33.0rc2-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 92a7b3c17a61efe4fb84fa7150d9b5590c8096ff9bcd1911283ed4091170efbb
MD5 31d5b5991e9bf0b77ec97d1a38f24600
BLAKE2b-256 3654c7e1e6cb1510228b8e9d52f07c4ba40b59b8140297cce2fb931508b18e70

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.0rc2-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: grpcio_tools-1.33.0rc2-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.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.33.0rc2-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 10dfd2c49f5c6cc55ed737170903f6ac2491a7f3ba6f2c77481d245ddfc2364b
MD5 869ea0529f6afa82c2866b4fc8dc18c5
BLAKE2b-256 05cd7082f78089ec59a3c521ffac1b8eb1e0a87730879364c66aaad28501a193

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.0rc2-cp27-cp27m-win32.whl.

File metadata

  • Download URL: grpcio_tools-1.33.0rc2-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.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.33.0rc2-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 dcf4a78b1f12dafcd8ac3e0131fbf0fad0ad94751aaf409509cf40f75a5e5653
MD5 e1a9b95e4dfd0b6c09105d7e03e3ce1a
BLAKE2b-256 b8fef5f739340c0edd93d96ab121bf00b8b56bc7c969d0ac4a73c89749113b4e

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.0rc2-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.33.0rc2-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.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.33.0rc2-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ca6c8ab88665bd4313c7574f4d54bc0733a1e4bf28b59c4c4bdf50995db55045
MD5 4163b6e9832a4f6fd0d15465cd38907e
BLAKE2b-256 059d79de45479e6f7f98488db5af847f60605b20355e48abc73ba882e3d51197

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.0rc2-cp27-cp27m-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.33.0rc2-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.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.33.0rc2-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 09527884392098f642b0c5f9d33e5b624c42b9be07c639b54136795371fb7a6e
MD5 b4d990a277dfed27e99b4f285752bc23
BLAKE2b-256 4f28bd05f1fc0214df8cc60b4df4cf2d1d4914aa9f558efc311d076449aad0e1

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.0rc2-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.33.0rc2-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.12.1 pkginfo/1.4.2 requests/2.22.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.33.0rc2-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 95f89eec08bbe153fae89d6abe0d190d54898e00141d48da68f022de5d029674
MD5 9a0c610e3c6784060e89bfb73ae5e308
BLAKE2b-256 72f6e355f3315cd66c99bf842a073d5b9534b191ff681b04dcec38ebddd6e15b

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