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

Uploaded Source

Built Distributions

grpcio_tools-1.33.2-cp39-cp39-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.9 Windows x86-64

grpcio_tools-1.33.2-cp39-cp39-win32.whl (1.6 MB view details)

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9

grpcio_tools-1.33.2-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.2-cp39-cp39-manylinux2010_i686.whl (2.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m macOS 10.9+ intel

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

Uploaded CPython 3.5m

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

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

grpcio_tools-1.33.2-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.2.tar.gz.

File metadata

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

File hashes

Hashes for grpcio-tools-1.33.2.tar.gz
Algorithm Hash digest
SHA256 af40774c0275f5465f49fd92bfcd9831b19b013de4cc77b8fb38aea76fa6dce3
MD5 5adf7dfa90ce80f36100441dd9f4a730
BLAKE2b-256 78f63817a1682319aea1d5fede62796ff75d529bbd0f01ab5fd164df3d01fe1b

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: grpcio_tools-1.33.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.9, 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.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b68ce929acb8c392b83c49257e18f03d73ca3af408bfd5f7e78fe351c384c008
MD5 3191466f327b1cbff5bd27bd5a570d5e
BLAKE2b-256 32902cce907568fa604cc767e57c20b560d019abcaa59e1e137f4d2b13ca2ae7

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.33.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: grpcio_tools-1.33.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.9, 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.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 da31aeebb9c3a901bf1f0773fac20cb9e9d662cdf4f19eabc6dc55c52409d09c
MD5 ae382529ae26c4947ee819bc6b14d9f0
BLAKE2b-256 922d0ac3341e51abb2a8b1b8a70c142a2d6da858196e3243f7517c99438df363

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.2-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.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.33.2-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ed36ca81cdbe08f2976323930f8430ec97a68ec7d690606d59a7303ae6b61726
MD5 ef2b41989e1c84d046d3e6d687a67a84
BLAKE2b-256 79f49de825d04ad8518ae7725c965dd317c40bab52c102c990a0b173a9da5825

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.2-cp39-cp39-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.33.2-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0d44a17cac96005cec38e8197ec2b76a61fea6f3861c38765a3b51a4787fdbef
MD5 3c3ba16c3af94f24e0ef6ece3b91ad9e
BLAKE2b-256 128b1f247de656eb5bc862904e4225f520cddf0255e877a11462a407246d7508

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.2-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.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.33.2-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 081cad29621dadec6b5cedb818c3261ac25ba5a78c09dffe18d51637debfd750
MD5 eb5336d673c80a7f7d7c3ff61b009cf3
BLAKE2b-256 11dde03f1012d53b2654bcdc80c81eff64bff54651d62df5eb0e6ac9510fa359

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.2-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.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.33.2-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 792e4ed3ab2063d330067253cf76d9b6d4b957fb723cb191adf025486df69f3f
MD5 6e74d4ce5de3d33e6f64556387c40a48
BLAKE2b-256 36bb12a3fc730a42c3b97ab42e0f9990f2d0bc968b382f28f3514efef84be9d5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.2-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.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.33.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 853f632fcb354c4c48c4abb151a3f7d9ecf1ab662fbc3483eb4f941f61573b88
MD5 1c01d7ad1fe444737f96b357cdd16027
BLAKE2b-256 5aa5822f8d7e558a2eb128e30538b26b57bfc125e880e4a1d42c88792f94a42e

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 947f9d96271c7ab0470b58438bd788ce1d4308c73696eea64eab58e7e68c1d39
MD5 4ab6ac43a4939f694ac6a2a55edd9af0
BLAKE2b-256 48a67866992d56c866ac8ba31f42ef1b9818cfa8d85dbe1fd509f2b2a009fb29

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 686462d1abbd4d9c13f96a8b3442e62ce4ed412272996012cc561a6dcc7e65b2
MD5 e9232ef471b9a62807a75d83e242b2d6
BLAKE2b-256 303d6819a46abfa183ec07e835d03a965752d0c54a6ce65240ab9f41e99416e8

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.2-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cb0dbc3203975efaf541887fa641742287c3473298a9a45b9619506b27ce7028
MD5 180b549bcdcdfd6bd754ccda40b53f04
BLAKE2b-256 bbce929b6ddf40aa5342a06ef45068618bde65a2d3bd2e824ad84074456976b4

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.2-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6400950ebc37cc74c8b1d8a25ef4c624f3daf08b5f61c6ba6175845908c0e9d7
MD5 c4300be8617a2da9a1b8bbe947f64740
BLAKE2b-256 14e2594f0367bd9616123ef5213ae53e6d3ad74e9dc400c5fcba5844cb14efaa

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.2-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5979937daddc1cf624a11ee5e45baa6e7f1c03948f8534529e08c0baef963b2d
MD5 fb3ed808f1df160475eef0c5d683715e
BLAKE2b-256 a09ac14fd8a4398b0c100bbd026291c60610049aa07a4e75670d0cabacdb9f39

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.2-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a35f0663154f5083b4e84661c33bf193797de7d68138a1e94ddd9bec4b7d0d39
MD5 c617ca686dda08c0a2d0d2f27a626b86
BLAKE2b-256 61d82651042099322ccf60f311071b65b7b7140cf86b4aef60413bd57bceb244

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9bfae79bd3c2bd6f49d72243408c269a4cb9f6e2231aae06c5df5106d60ebf5d
MD5 ccb35d2c8a7a6bb0922e6ac2b2a682e8
BLAKE2b-256 bcd56ae582281c70b2e198a66bc3cde8765821fd162082ba1ec0733222c8caea

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 3a407b9e2ca0a15b4d337120e8a5ad35fedaaf658c40c445d63d41abb8f8f5e3
MD5 b5c2378a488c702cfad3efc4e7815892
BLAKE2b-256 e89f421231c6d5c1390533567a7b1eac9997f4e26e95afa1ffb919186b514946

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 278092221bcbf3e9710e64e0f64b3ffd91879da87cc901151f52f50ab2c1e364
MD5 59c77c349a56c1ace117c8d6ea5bb910
BLAKE2b-256 38860a32441b28f39da138b5a64ff79a3b204d03bcef29067598e9af866487cf

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.2-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba1bd7e60872727b0123b80658a723ba39357f3baa85a53d3a4a877fdc68e218
MD5 0de16a56a6bcd30f89463c3fa81769ad
BLAKE2b-256 771e91eaee901589ebee04c21df2f551502e7ba946bab99338f77a1f8a4237e1

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.2-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bc33d340c981b5f2ecdc11888e4c9f462fe25811da0bd98080a0f239a5c71cc0
MD5 0c6e96bd2871857225b378a75e6a077e
BLAKE2b-256 0c87721a92583cb4051e9a36d6dab917198cbf234ad0c62044bb2417d014b25b

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.2-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fb0651c7ba378b18865dac9f10414c0e15ddc190ea6fd0b5c96bfe235276304e
MD5 4be325d52b86e331236747dd0c0a694f
BLAKE2b-256 482daf56365408476ddcbc9a10a6b1aa2556060ef3081b7ee676423ddc4f98cf

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.2-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 55f4e125b5d4af409ec5783009794262fb28fc9d01cc1cd0a123c59ea7d9a03b
MD5 f6b8ae2ca24acd4eb0239061c2985ad9
BLAKE2b-256 037cceeddc52635c22b3d8be0e9230deb89cef07822d4059d07909e1f1b1ba03

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b57fcd12c210916f8addbb983ff2264a675acdd0665be0df87f30efccec50119
MD5 992fd52d5e1acdbaae718abcc85d086e
BLAKE2b-256 7386a3e043971062b8f99135b86df5ca6943ee574b625e0449ac3fc4bb56411d

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 2e6f9b93b19ad5d680beeccd937357e8bd8403f1090a6ce4369c9fc162d5c3f1
MD5 c819dffdacda380b9e2a57f08e98f4e4
BLAKE2b-256 bd7e06898570ca9b6b4b4af8f86c75f8307b4a935a5e1617a6c415d0dd341fb3

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 36b71fddb8876d619b6f00e49d47b917b716ca5761b9037631f1256851ed74dc
MD5 7817b10f5ac8da6bf4cec09625fa1260
BLAKE2b-256 872e3ab6137872d2fd0acc88d63afbdd1eaaf6ced8a12ddace475de772d091fd

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.2-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 09f25ad6d47566b5ca3eefae7d499d1c431646d20b6543a00b70fe7fe61b1a02
MD5 20e4717b906a1274172ad00768ef205e
BLAKE2b-256 a39dccab055290969cf5952d4bb5dfc32222165d91b18397d4cfe81abe46445e

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.2-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c2a3a69871047dccd49507cb989b6f84e24f5427902930d92e10cf1e366e578a
MD5 fc04291eedc677b20ccaf6d8906bea6d
BLAKE2b-256 b327ef0d3c322660e4e076ababf316f6ee76fea1bdf4799fbdd93aa1641e1434

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.2-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 be6f34a188806dbec3dba9e6c6b41253507f3b7e4beeb344a02903609d708659
MD5 952bcf6ff5047d7876154c27e7cba711
BLAKE2b-256 9eb712d4e66562d157ce28fcb7fd615c1e47fb87e81c7fb584b6979461582ce0

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.2-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 eb2a452ecf9b8c0beee6a49ea3e42bd5344e07dab9692b0c60ef7caf9dbf0e7e
MD5 e3d3272aeb3452678e1abe0a336040db
BLAKE2b-256 f583b2dd5478a23bfcb548630b9d8aa9d19c805d51e60f9d75983ee9c7f8a741

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.2-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ed34b6316c6a932d8586a3567d341599aff5a61a34f9d6640501f4af5537b95e
MD5 9b0bb21a6f03d813773cbf4899d37555
BLAKE2b-256 e5463f2a834f76c5275358d7ce7162b8e3af05d0717233067dc095e019c626ae

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.2-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 5a90192f5b198a5d3b2d8015f9088f4fcfdf8c1020931afb48f8bb52db02ef92
MD5 fa3df585b4ba8ab8128fffc23eaf0b18
BLAKE2b-256 db0f6850b9f464e10b585896833f5ebdaf1b1e280992dca91c0d2bf803a8bf93

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.2-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 9777378bfb59e5bfe9f972d01c27e502b577f8c5d539967ae17409e562b3b347
MD5 a1d16a535f9aa1ef2640fa881ebe9365
BLAKE2b-256 c70cd6482195d6bfa902796b674a5765bd3a5fc4f911331bf8320a984ff3ad70

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.2-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 7a9877611bbd9587dbf8cc2d80edb99fce371faaa504960cf27ca4bb43b3eeb3
MD5 d64b32732598ed8244118ad23f6dd823
BLAKE2b-256 8f0abd5a7ae2890fca5d77cb111d17fbb09df9a2c1e95c2dbfa4bda16b1fd1fa

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.2-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba2971017ed3e1d429abeef7e3d98a7aff5191d76e63ebf5b0a700d6b505d342
MD5 2b4bf065bc438d70b6d40287929683ab
BLAKE2b-256 e41ffa2afb9f2eb38a0ff0186cdfa38ef64345241a879cfe49084166c982f420

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.2-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4346774a7edf07d29fa1bc96ec69a53c3bb222e1e07d1046ed19fe3cff1c96bc
MD5 f25ef9d3130a8e9467c09475c2263539
BLAKE2b-256 e00f94460bbe062e0ecb73d6d672fdabc47ddf8320c4d87b6e7b01e66245c63a

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.2-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2db16055baed821fd1e12d3154cab26bec6a947ff47eaad7aedc2f86b4dead02
MD5 cdf8050c05e29628e6f09a8b746a3d1e
BLAKE2b-256 25a6e1ddf7883fdcbe511a25694b609fd3ce517504f5e64e5e033e0fbb3d9642

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.2-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 40aae8f6c75864b9063aed405158b6926dc71d1a6b9a3f89c4b4ce5915f7b154
MD5 ffd2fae10363103d21e5d98a5a9d8073
BLAKE2b-256 c13bdaca757633606fec872dbd8540e04069ac96f19fa065471e2a7355d09090

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.2-cp35-cp35m-macosx_10_9_intel.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.5m, macOS 10.9+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.33.2-cp35-cp35m-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 aeae23f77c668b9d4bce43007eeeb395d8e87c72f1281d2329872bc43ea66a83
MD5 f7fc2e8050cadc35884d6deb401584d1
BLAKE2b-256 8104dada7420e21099c45549e0ec0c400cb1b554b663261bdecfa8e699828a57

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.2-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 7a4b1d0399259449b9ead9a1e43611da281c6cce6fab2629ad4f9b16887679a9
MD5 8efe3e37a551bad2b9b32d1e67c25fa9
BLAKE2b-256 56ad7ca9165491a9629863c089c15125d16ab29ca02d37de05b964581a1c85c7

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.2-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d0b1651a66c0254e84207b108cb5f76a0076141dda35d522de1f4a4a33e2db82
MD5 7277aeda6e7c3d220a8d912adca435dc
BLAKE2b-256 1dcdd9acd45df075cc069cd8762eb2f2a0118676e3fcffb6023561b9f0f4690e

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.2-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7d7c98448835df0d64c34c205b53a088c631efa2623f180ae08f13d3427c6905
MD5 b49f1dd4764be1826a4b012a915dbf1c
BLAKE2b-256 ba523751aad36ee4adb0de5ea7420fa5a2cacf814329cd0793cc3207928af5b9

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.2-cp27-cp27mu-linux_armv7l.whl
  • Upload date:
  • Size: 25.6 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.33.2-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 584888e7b679e329c18ec1cc93b8d43514d7311a83080382bdde36edaa2fc3f8
MD5 e051f79a54395945988248acbf471a38
BLAKE2b-256 05bdaabd53f0db460c5d6b6d330ac86ded794848010d68a9c8de71617e9bc306

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.2-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 6b3e10a2b1409e4bbc744d8f966b2291bf042fea612d3c144797d8e845335ee4
MD5 c330eb1164fff81f037fc544c3a9001c
BLAKE2b-256 5be184642ab9937a8ce3d04dd7a4debd4d44cbfc01ba329dd22cc019d75a8559

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.2-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 76d51b8625f49a52ffd207b586e459e9f04f2451226c1602e9eb1e67c530d830
MD5 bc188991543bb78f689ce470386b4c7f
BLAKE2b-256 5fee4b6c13914156e9194717cff9d46d9e00161db688129c3790c1498c70c535

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.2-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 895f6926310e6c1bd4424af2c9b1c777481c246a87c9943478e9d12631fa5331
MD5 b470595b76537728eb22327afb562f92
BLAKE2b-256 fddffcdd01c0879a547a43a71c26b4c02b6a6158c111ee5f87c3190a302bbbe0

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.2-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 74762069fb0336535518097cb765250fe2800c19dfb9a62bd3ebf7c1d31f568c
MD5 47198074f7ea97c6bc628db6d0dfaf7d
BLAKE2b-256 960a56f56774455dbf4c43d494558d3c1d1fbe9d8cef42548f3cf321c9060264

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.2-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f80943d6ff6fb0125e68a7af7591a5373d177c8e97a9fcfaeb873cb0a11efbff
MD5 a466c025d91e23e389e7da3655f9fa36
BLAKE2b-256 9e0f1c8679b9ec59ecb7dbed9f20e53e95fdfa282e7d1bb1b7a0f4cddcc6e464

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