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

Uploaded Source

Built Distributions

grpcio_tools-1.33.1-cp39-cp39-manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.9

grpcio_tools-1.33.1-cp39-cp39-manylinux2010_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

grpcio_tools-1.33.1-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.1-cp38-cp38-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

grpcio_tools-1.33.1-cp38-cp38-manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.8

grpcio_tools-1.33.1-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.1-cp38-cp38-manylinux2010_i686.whl (2.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

grpcio_tools-1.33.1-cp37-cp37m-manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.7m

grpcio_tools-1.33.1-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.1-cp37-cp37m-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

grpcio_tools-1.33.1-cp36-cp36m-manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.6m

grpcio_tools-1.33.1-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.1-cp36-cp36m-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

grpcio_tools-1.33.1-cp35-cp35m-manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.5m

grpcio_tools-1.33.1-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.1-cp35-cp35m-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m macOS 10.9+ intel

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

Uploaded CPython 3.5m

grpcio_tools-1.33.1-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.1-cp27-cp27mu-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

grpcio_tools-1.33.1-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.1-cp27-cp27m-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

grpcio_tools-1.33.1-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.1.tar.gz.

File metadata

  • Download URL: grpcio-tools-1.33.1.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.1.tar.gz
Algorithm Hash digest
SHA256 fc56027931694be7a2ea45719ef7fed911e2d1dc24ba69d98a418daa78b35467
MD5 b1d2760429d4848493cc5943b6c177c0
BLAKE2b-256 9118a138aeb000b55f3b48fe3fb538a6db65dc6210a6c295dbd6398c5c84443c

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.1-cp39-cp39-manylinux2014_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.33.1-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.5 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.1-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 35f5da1180fdb633a866d2fc12ceebef1e17c3b055621bf94a74404af4c1824c
MD5 f91bcd3b6a36b902e3ad015ed58c0e6a
BLAKE2b-256 88335a5618ebd104230e4c70f59e61a1fa4f650f5cdae38d4dfec9988867ad08

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.1-cp39-cp39-manylinux2014_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.33.1-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.1-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 76bc561d02f0d74b0a6487841c43b344ecf599b9f34621ebe6e89b52999f3028
MD5 45fdcda715bb1a5552d042e661bb3583
BLAKE2b-256 6aae7741bfb4deb44820d8c131f921b5c73394a547c0c897fe5a429e1ee03382

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.1-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.33.1-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.9, 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.1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9ac16eac70d9a75241aa3b0c512d38f54a3018c6d08e6de60d4d162a6be63fbc
MD5 4b0f65ee0f50ff359acbab4ddac7c77b
BLAKE2b-256 e0806c36fc183f423f83377760c6acddba1ec16a78c2541e91c958ffc70ba1e6

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.1-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.33.1-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.1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4c22ab4db29e31c36ef5bd6ae988bd25fa4b858e440d98763132b7be1c35a4e9
MD5 29ed4705c6bb3d7f4d582247b0f999f7
BLAKE2b-256 8b138027480080d8851029d8541e79e48853d2d46e67d58ebaee10aafeebde9e

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.33.1-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.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5f8fb405b3f9bb320c69b88ee2ce7cbc006827bf85c479c8075a0b617b8aaf2a
MD5 483bebd12d2a119d7893b41764cef337
BLAKE2b-256 018a951136d684b0b458ae4d048348ab7f83252f8c2d5067869d96b467af0f2d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.1-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.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d47820eec86fc40492efa7a85a0869430bbad708be0e0fc0065adb4ebaec8733
MD5 bcc0ca002f0ffdfab9d53dc541a2a75a
BLAKE2b-256 e5a1596f5c17120928241a087c4fc2607ca8a3784961e59042f6136ad2bedd66

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.1-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.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 6c1d86b547fd9383fe248541d35ae15ddc299e276a0d1312829a3530301b97a5
MD5 e2715019e36e54b65e9fb24ffa6fd6d6
BLAKE2b-256 16143568c3a3e69e4ce2b3875a94a38fc5f1ffa0ae0b24d039c9a0488e81db1b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.1-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.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.1-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1518d42e010953f6b80972d4fc669d529ecdcedf482c7dfbaf876dc6e5eff035
MD5 9f83022568d306cc81f70666a15af339
BLAKE2b-256 3a3345b4023611e35d17029c097cfc85d466dee77d09cfb1d7d453c8ad825845

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.1-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.1-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 94e369783afcaa382825632066239139256ec0f860cfb4cc5f329702a7e9c701
MD5 72a247184d765dd9d939bc955fe60b4b
BLAKE2b-256 04e5d01da09b25ddc92ee10989644bc0e6bca28b811999f633d8e5910a1f2fd6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.1-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.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 27641f00db36b3f009d21dfb28e405163421a6aa89d30e199f02c6bd58b2616d
MD5 a9ee3c23071c25132836d5b4a3d975cf
BLAKE2b-256 0c485413b1da0bfa0e82603d9d1dd927f77d8bf239522cfc8fbfefa9e5c47854

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.1-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.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8addf3ff710d85a0976b5176b4b612e75ac06a42789d114ee9549540a5ddd29a
MD5 7b64702feac9a48ad1646fdc85111073
BLAKE2b-256 935beb1bfd8879bd0b194bede205a5e321c45104b1d4e13c599946d7fa1da29f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.1-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.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7c770ca893e2d4794c841fa92877f765a33fb5fe17c8a61c6472b3d30b99eafc
MD5 749d238ed583091a021f622cfe7d6b4c
BLAKE2b-256 cc9226d89c3bdb2975b30dcc772a3737958cdb6c2b818ffb7bde248fcbacd6b5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.1-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.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 ad544798cd5d5b259a2619c2a94abe81bcf44ca8fd373190de36ad1c9170ea34
MD5 f989d56cc3c77de94281c1d0590bd196
BLAKE2b-256 c2977cc5bce756ff013dcaf7e8a1f4c79aca4ee5fd6526b64a49f4ca9164b05c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.1-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.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ba392f73a6da3f7c51f9abae18755ad001ca8ca125736363ccf96636a51a42b8
MD5 e0fdcef0f649d9bbcfbb444e0c926e1e
BLAKE2b-256 aab014cdc0c86b4804c07c027e399e967c11e6bb085e89990fb502ee5b6d3e0c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.1-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.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.1-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e8d908ff4ddec31a78052513b673aa5a236d7a3c0492feac43db8051d20ecb80
MD5 d55ca1ebf853d8ad3d888c1bdac2950a
BLAKE2b-256 56fa867adc2445fc2d22ae57f52beeb8c46104293ecf4e122d4c3cb4a0b69c5d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.1-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.1-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e569847271bdd1a7fdf72e2fdac794ab299d9eec90ceff430dce42cbc14fde24
MD5 ed225139f860b8a0f0b3906bd0df0c73
BLAKE2b-256 2a839688c024278aad29915366575b78d0001dab3786712ec3c5fdde4bae7830

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.1-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.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 cbad3696066d6e9d818af561dd4da211b3cc652193ba5c95d256c6f6c93e1369
MD5 474672df1ee277c3119d504c31c19740
BLAKE2b-256 95df762bcc1a6ddfe4c44a96a705558fb5690e7bac724abe13a141d293dee704

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.1-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.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 05e4375bde8a092d45d1675fead6e4a7a4c3d96da973187fe4860a75d5b78ff7
MD5 219644ce7487d87f4d6071dccd42fe83
BLAKE2b-256 264138aecb88c42bc1194f72fd8fb77a7d0d31a9d1d02db96950f51c175f347f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.1-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.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b86a31260b3cfc151d99ba33393984b65e0d1880e946ffb480577860dfe52621
MD5 4853864abeb9789f871093a6ac1f4900
BLAKE2b-256 6ac3e5af845314af2d969266f6ec6c6c27e7ded00d561f5797246a3f889fc273

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.1-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.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 41eb667bb65adc9d4ff28c83d63aee87a0f52568a5fce021767925137874a9c1
MD5 9aa66d29da51fcb97137003f0929a429
BLAKE2b-256 cd9906782e09dc8ad8d7d984d2d00975a43a3d8a66c79f8073b02d448e704ffa

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.1-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.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 1e8110ea510da931160b76d647d54351664e80c027d35cca2bc44ce48ac4eef7
MD5 07c982cafdfebcaae5fdaf17780c5b6a
BLAKE2b-256 075ba190194ceb9f451224bbd4c92638aa30ee573f566d9de42d327fc1989dfc

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.1-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.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.1-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5fc46d3b5edd33e78d3d8b549eaa9c0fd6737ff18ad8ac3441f843a97e7676a0
MD5 231e77805cdaa14ef3b7a5ca6a6207f5
BLAKE2b-256 49a45db2dfb802a9d691259a239b815cb4e5536b71b8405087e1b15d60bcae1e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.1-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.1-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6dfa887a5e699ea27960013aeae08a9344a28ff95b62a7e43d8d1e7644962601
MD5 3e3aa7caaffb815e9f722cb68e736982
BLAKE2b-256 bea28a450cb4d0fa6519622b8aba66feee2344f0f80c9ed6b08f2f8202035fb3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.1-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.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5377a03a7690de5202b243ad9f8e2c4e9ca43f0a6b3226c0fd9754877a558ce9
MD5 9b4f5a3e03a7be9a4a13cb56b7b87dfe
BLAKE2b-256 1de4226079130f3528bbc02d32a97748c0500031f660188a2cf158b3522f80a4

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.1-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.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 db3d50b58465c705c3fce5bc9a309ae98e671effb2097eb8318fe9158b65117f
MD5 380ca1241d586e41d35f89211b0edb84
BLAKE2b-256 d3e071bdf56dd77bc51a30d426508d917439231914923c3b1f9e0ee97fe4182e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.1-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.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1c6a611e9ae6ad5d6aa895888c5dc19d970b77fc59f7596ec1d014e328597ce3
MD5 4cc0bdf8ad7f9049b7b0f3d5f681bf36
BLAKE2b-256 83dfbd66827f7bec2739bd4d0322722ba24b65bc169f8ea39a6342aa0b825ece

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.1-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.1-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 c4da9df7b67541869a01f582d1f37251ebb791622d9e141c4c1a67d66ea57a31
MD5 39169af2481f03948228f9626b05c84d
BLAKE2b-256 448e17d3e0a8dc24301357eb910268bc273eeaf5c32b22454412712c4787fb4a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.1-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.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 bbd143d5011dd1c16b158d951dc95b1799c8f86083ada05e2bbe0cec167edd20
MD5 c3136bad5f9e701ffb01316f1072097d
BLAKE2b-256 bb1153dc70cbb242d986fe517d001ec3645114676096e4ad532a8abbb1062024

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.1-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.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 5621f8629a330eddaa239775171228b5cc71781501460ed75709d91e6af2cd77
MD5 9ced68b0d34c195981db8d230f1e3fa2
BLAKE2b-256 a7183c0bbf3ad4a38e492c0c79df1a0cbaeaa7382ee6772840ef9fb9ace0c850

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.1-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.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.1-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ab37d582689f5d4c10e7fe70cd495fc591556292af71ee15c6f6321ba058e0b9
MD5 abff957a8fc84f64a943d4bca5ddd95d
BLAKE2b-256 5adda13a207582bac7b13a730b2f7ac04d4521ab35974f74bd42e463b6b1e02c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.1-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.1-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 96f52b9e9451ecc922e3fa2e740483ad305e74892c26f15cb450e8e6753439fe
MD5 fe5d24bc9554d146c5c1c4531c7c306b
BLAKE2b-256 e29751dd801ee90fa81d3a6bb2c0a72da788c760180d7e397334b1150f897767

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.1-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.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9b304efa47b6d6cdf73a849270fd189a49100e456733cb7f6d6ab33ae3dbecac
MD5 3d9233194a864c30b5734d1815ae2675
BLAKE2b-256 75a4a263addbf75d29085fd05b404d35ce14278e38094d2373a307617d6e393a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.1-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.1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f0a3f0e1c707f328a2eaa64a53675b03ca4f8a8772f6732ee6d81ce2e492d223
MD5 1e5c677116c973f07fbd02f000275920
BLAKE2b-256 fb629c4d996b24926b97c75989f60c59f4734feb614f14d5d8286228b7a07194

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.1-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.1-cp35-cp35m-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 ffb083da3433056db909b5c2bbf901c438e1655643a758c4f12ff29358b47ea4
MD5 6a27390f829013ea486c8dbdfcd7eeee
BLAKE2b-256 f8e57448a316ac0fcdf6a6d96fc36b022b492e762d3b1b765a3ea2e0ef6e8279

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.1-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.1-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 474994879abb84de7e13596337321343bfc0e3cc8109c052610a0ad36bb4b877
MD5 0f60a69b45c6ac5444e9b4ba684b1c4a
BLAKE2b-256 0c4cbf7fb6ce0e9a2e4ed7f18f6abb5ef5bf09c92c409efb3b787a5c9b873929

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.1-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.1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e66e44bad421cc7fa63025a9df2f75366f18bfbfe3c6666af7ac324782e23b14
MD5 82d8332004a73af4cc1ae4dd71af27c1
BLAKE2b-256 d338d0cb10e9cc84914db1f5cab47875e31d8f09218b443496c0973a6a016d1a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.1-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.1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2b207e4f013ec1d3afb827de0f319068c916642d41fb66afa92d9144511be836
MD5 c7ca272393d1526afd4be28dae1dc32f
BLAKE2b-256 8533d26eb716fc027ca93d7a9a9ad17324cd42181577f06cfb4192b23b7b3248

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.1-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.1-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 c1ad897aa0e3894d2d2e96e7d8a15c9d1b5ac38742a618e0dd38771d89f89ee5
MD5 3d21a0e0425df2e35ae50288298acb48
BLAKE2b-256 e0d19cb941b5778dcf5332a1d18393f2c06d48bd63b7ac7f0b82bbb5f291bcc9

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.1-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.1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 18d985a388b8c1598177dbc36865a040e9c77f2d47b450afa2e92f3e63bca3b0
MD5 807e3166b3879d7e9429c7095fe7d2dd
BLAKE2b-256 1bd0b17a702b02d43d06bfca49109c561376a3c506408a3ad446d676ac577006

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.1-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.1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 7211f8b31a14974e75657ea5c968ced90d5952505f6cc7af2324477e0c2247c2
MD5 489111a99dbb91763bbd8f56851de0ab
BLAKE2b-256 a5ee24f12a426edbe339adae25d6a62d02e08ac7756e6d4eec46a7928893ff4f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.1-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.1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b63131d5a84a7d11d85a426025328ce518575f78997d0285c9e8f1507337bb4a
MD5 f5a0e50f2b24012591936f422dc821fb
BLAKE2b-256 fcff74d25ca2a91f21aba2823ba3303a7c6beafe202ec21bebedd3ddd0894da7

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.1-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.1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c484ef6c1416edea005dc9b9857c5d5f3ab94f6a54291cc6521d7316a3a4327e
MD5 341e4108c01da8bc507caaee560fa590
BLAKE2b-256 8b5ddf3b4b50d9047fafc28e5a804358f0923d7fa44bf7239454844545707037

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.1-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.1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3b417f2b4041f4805d40d57413654f0302db2cdda1ac6a5745bd0811a8589899
MD5 6199ffded464ca0beb004e4267e550f0
BLAKE2b-256 f2d8a57456904b420f5f6574451e031f0038db692c0ef0a8972ab083f028874d

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