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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m macOS 10.9+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

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

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m macOS 10.9+ x86-64

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

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

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

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m macOS 10.9+ intel

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

Uploaded CPython 3.5m

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

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

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

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

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

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

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

Details for the file grpcio-tools-1.33.0rc1.tar.gz.

File metadata

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

File hashes

Hashes for grpcio-tools-1.33.0rc1.tar.gz
Algorithm Hash digest
SHA256 cbfa7899c98ad2870751d465eee5cc97ae79f3774572ec7fb9f9da7e0c07c2b7
MD5 b94f503bcd36e151395e51cc79e37826
BLAKE2b-256 a38a9c4e73d7f712a48393bc515a800a0163f979b9209ba4c96d75013d98f5ee

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.0rc1-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.0rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8db3fe416804e6edb79e2aa03afd558a11e59ffd4ce33ce07a1dff3983807d1f
MD5 d9e8828f14c0b6516faf504e3f118bf9
BLAKE2b-256 ad2d10655de86040b121d84555acaf094347e017389beb82a839284d8e0ec1dd

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.0rc1-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.0rc1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 489d1a02b9d3fc93abe33563e35eedf96cc2ff85d827eb53c16ee9235d79f27a
MD5 5978d9dbe9022c6448a6feab81bbe3fb
BLAKE2b-256 6a4c1b5055ebf4d4dd955599b6891df96a9b0f8b2875972c8536453c1400ee37

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.0rc1-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e13b4619c8ee060a69e972fcca1c659e70a5f07d2feb572050a7b3a8bc3caae
MD5 8d0946283af20c41d0fb5965497d7e0d
BLAKE2b-256 c5dea2955bba999a3ad0b027042e6bdba1d82f1dd8a5f22316134b9707737ed4

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.0rc1-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.0rc1-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 069b4bd4346bd7d357c4f36cb17cb349ff9ebd3e33472cd8f8eb1175ebbe8036
MD5 f9f69ea670d61a74a324be2dcfc119cf
BLAKE2b-256 8d4f0c1ff82e5bb88f8fe870d9253f10d788b32160648a822b890c4c11d86860

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.0rc1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1b06dc8781c635baffbed05199f3e39e0fe0fc400e9c4d9b406b32dd8a35712d
MD5 3295e470d2485b4b44ed63b241e3cbba
BLAKE2b-256 26b336fb6c71073279234ba009ceb2c7acd2fc99c86f72b260a14f8ea5d9a80a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.0rc1-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.0rc1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4f95a9853de2d556e0465f32d876c4b9b6a23233630fc4f7015017e3c9c3ca4b
MD5 98cbe0a4e4004fbe49523bea57f3c347
BLAKE2b-256 96733a3bee4b99067a704bd8b0a582a8425008c8e393940668e250ae2947d406

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.0rc1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 725764fbca5c1506700356a6e64548e367da2adf95f0ebd9440f91768a7921e4
MD5 f27cb6a8334dfb2984e372a38d696c63
BLAKE2b-256 d331e058d76caedf16955478a62ccc746ff3d466feb89b36a63cc6ac0c1f9665

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.0rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 c37de7f5d04c0394276913a85b8d85c550a489f42e23639deb72c282562f5250
MD5 9496415214ea91f3b88bb6d75b934794
BLAKE2b-256 cc3736e9f41df725719fe7aac072e0ba494644d5b90abcac171e9c9f69f66fd1

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.0rc1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 dd81970d16951f687e3d0ef28daec20b549a307f6fd9d8e63cc75cc59600c6ce
MD5 d9c31cdf2a2e886ef64d61c4c5059045
BLAKE2b-256 a01440b265ca0462df8028b8c3a9bb8eaa1edf544c098a9f638e6ae99d59c90d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.33.0rc1-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a6692b6f032484f507adbf7a0e7fb8bba8be2999a949f7c070c40b7d3fd72f4f
MD5 91f0cdc72be1d43a85ab3bc67171aee4
BLAKE2b-256 dfd3dc948cfa3bdd57722bef963ad5da859da011dab7ba98a0114e336c7993b1

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.0rc1-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.0rc1-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 335428af6e47f77f85fc67105a1209ff279a8660915f1a783ea4619b50c3ec2e
MD5 da851f58fcec8f1e445f286621c709a5
BLAKE2b-256 95c8829d59a795c622ce0bcbb9c7384d506ad2abd48c71c46ec8be4af452b651

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.0rc1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 924baf2d5886afdb41af0b6e6b79acf18ae7a0013cfdcac1063585b528a94c4a
MD5 2fd00778a07af4f3d64daa7d6722e3dd
BLAKE2b-256 cdb525e390af7f3326b9adc74939554685f9dbeb62ee99daa992c8361c177f5d

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.0rc1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 345bbd9cf78cb719a77c4edccd8cb0ef4f1df4216e50084c4540da14bd870dae
MD5 3a375a660d245fe7810dac9d226536f3
BLAKE2b-256 69b2b483b493a3b53ea37c27bf0ad3c32ebe87b1f82f8370e6c8c36739d085f2

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8e4ac21203707abfc4b28956d3bf03e1012e8b078044dc37645a62102b22e4bf
MD5 3f0655194cabb9a844f5217a8970afea
BLAKE2b-256 c1ecf0b34bb57703323cf878e439b23307b95d673fa7c59e81c77c319ef52b52

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.0rc1-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.0rc1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 45b012960746b35c39999296d117b8836f7544468923437751518ee279085a2b
MD5 bc2516967228632d18408919fe3d8bf4
BLAKE2b-256 97affd5c5a09090414210d596c7d3bae007408342339ebc9ade7a087d3e6ad58

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.0rc1-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.0rc1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 def3f5a307f0d556b8524d2e1a60eb0c6d8e5e41f159aaa748a6e5de5d31f467
MD5 4cd17fc3e6126fbfcfffe6281a3fec05
BLAKE2b-256 f7f43970fc34eb07c897ca314d8fafb08ae9aecbacd794d0089113c51bb4b651

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.33.0rc1-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c4386aca78b1f4d5f56446ac37ccd78054af69d12d9d95247322401b57857033
MD5 fa814d01cfb0ab3af95093300baacaf5
BLAKE2b-256 f04341833cd44ea5fb6d13f329073b862df1e2c6858e0c2b789d99bd29c210e8

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.0rc1-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.0rc1-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3fb89c6171b0cfeaba94e19ebfcad36546f38cb9aa30624c1f9668e4f2724e80
MD5 988d046c6719db1101d6aadd97170a58
BLAKE2b-256 60091c0f9437969731be06c83088e585297079cb1fa21b0f2459ce9f031a5f06

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.0rc1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8f2d070a3c9d227d517b33f64da6a23fbc858957d55a11f2cc13d612af028c32
MD5 4a272fb6e21b3caa0b1312a23a361970
BLAKE2b-256 676717cfc6c73732819bba809f900aacf2b30cb7a44c845d2f1deadd22207f1c

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.0rc1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 bf2408e16c25fa08ed7d3cfa8c64707d4f24184c4023f80e7209755c65eba841
MD5 7f914d67e337f2d3cf184f4fa7dc7bfc
BLAKE2b-256 509d8330b06c4a42f6229e5b4bf46b05b386694da715322b1dcd8a09971cfde6

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5c7f548cd2e3961594a36ad7f16617c7fe5780177d90ef6dd5a89bf54fa27a7e
MD5 b64be5ac3b62e4c6b4d2acc7cd759b3c
BLAKE2b-256 1be43d7041d8a6ad4ca4efb37dec5ed4a816d38c13715959716aa08b7c3b7f2e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.0rc1-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.0rc1-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 f4abeb037e4d84f628b1d8c97761db6e7c1c313e184b6e6f9777bbc64e0afed1
MD5 0d0cf351b0018a946ef578fd9e5473f8
BLAKE2b-256 12347b31dc4d45dbcbfc0ae89f108d64ff721087de970f8c82450aac59976914

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.0rc1-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.0rc1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 b2385fcb68da1f4a9889d509d84983a64752dbcd458017f26db1e874ef2e4942
MD5 0789856a398712a6d99fa16e4909c7e7
BLAKE2b-256 df016461453c492aebe076dc35e60829ae0465b7c5af94c0e29770e59769e6d4

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.0rc1-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.0rc1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 aba15dc4274503083c3c651aee0e2d994aead9db50b55169e25c7820130c0795
MD5 f536f10c30fe1c5096ec6577cd3cb4e7
BLAKE2b-256 5dce782ee791337c08a41533322d02b9ccf7aa59d544a1642d0c583664ff8601

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.33.0rc1-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fc218e0311dc55419ead3347300a62ae0e257f198e04abf1d9f48db5729d8fbd
MD5 d8b7db395280f2faabc5012d66a96be0
BLAKE2b-256 c32b92a59656f816b536d509788f5e394446387a2113dbf28499bbf972e05301

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.0rc1-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.0rc1-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ba209a1346fd5e9065817fefc38ba08fe2eae86ee3add68e90dde47513af086a
MD5 a91e4d364a5d5814387486d39061fdbf
BLAKE2b-256 958472974dc58c8fd22f71f37ca7bc1e42b93f2f599eb901d24e9c29bf67a403

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.0rc1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4d0965065d1c9f82293e06da0a912ccacb61529ae62c0c5109c210a02a37a857
MD5 f8e1284621d44089989410b58560f21b
BLAKE2b-256 7fe550ead6f9c18d6442fd7aa2be75a3ff8502eefc7ec9442f04d612f2bd1ed0

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.0rc1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c3031453faf5540a502a070cf647084f80cf6215bc19c8aed1c205281c343fe2
MD5 d9ba604b746da8e62831d02e05a6483a
BLAKE2b-256 49bddff1186e47ba96377f35f15d227d474807b0519e86f7685875b77ec9debe

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.0rc1-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.0rc1-cp35-cp35m-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 baa95d580c94aa90361da6f97cb87470ff88f355b1e144a6b443eba74fdd9b78
MD5 7aaead3cf203aff022f64647ac69febf
BLAKE2b-256 acd89ba39af7c91f8c762e060d885aa97ebd17cbc47e6943ce51f9890f0621dc

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.0rc1-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.0rc1-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 373dc6030af1b071874c00b11e66b77aa8058a5c347848f26292ecd9b39fac79
MD5 6908c161d68f9127d44d79cdae279c4a
BLAKE2b-256 63391120c69b78ca127ca94633e7ebdcf0756bc0c78b0835fa3981deec954b6a

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.0rc1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 69fbf8a4cfa794a98fe3b616f052133fa1d6d0e15e2929533f1fd78e03feeff6
MD5 61eafc88a2636914781eb76eeea9cac0
BLAKE2b-256 fb7851f63389c4d2ccca7eb37af60a43a2ca576f47c8705085327eeaafc524ed

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.0rc1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c8079e8e3849ff65a510c0855212444b1a21266e28f071761544969f8de5baee
MD5 32217e3d0b2684c9088c06a32614f6cd
BLAKE2b-256 87e70a6aaa9a757577d9d552c9aec578e346ff07c229004075a9a875dbc3a126

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.0rc1-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.0rc1-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 2a8e4d1a7a7930a74a07c9fbb1416f9b664a5698d35e5a1dfd18391efa5db7fb
MD5 47820f7c9bd961afdc4a1e4540f828a0
BLAKE2b-256 2d66acc89a624b597f26794ba0fa93648a7f8f8f45856397fabf275243c0d6fb

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.0rc1-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.0rc1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 abc1724d7b15a2a1156ede0fd2430ff137345aad4562db69c0be17c5c8055cca
MD5 f946928697ec3fd681361d133b371927
BLAKE2b-256 69a6d0edd7d40e0c9112bf918223c8a88a73ccbc5ad9ee49d5a28f873bf5fd8e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.33.0rc1-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.0rc1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 35cca578428a1bca7254439720806e883e55f4c7b88f99cdd7080ef3591db241
MD5 bae56b769c56dfdb1a2fcffba6911934
BLAKE2b-256 ad645163e2d2f9160960c74264a85207849595691a1eeefcb46a11c3d264cf32

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.0rc1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f8b803cfec54f194a1619e5782634dfbd910a4fc09bee0e71fc06c4ff4de4f7d
MD5 04bda64174e42b5e7a67957f32b82dbe
BLAKE2b-256 6563a7e7838bb02fc9e09b718f7902e7714ced1c198dd8ebfc2268a9c55f6cf7

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.0rc1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 869242d0ce418871bced3b35c6bb8f708fcb03d7f0f4e6bc24664eea4c844391
MD5 634ae30efb9a99748fa389fc6edc05d6
BLAKE2b-256 33512546204e700013e690bb72fbf3f72cf21b6ee23fa32665b5fc3597dd3c82

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.33.0rc1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 44cb6b63031431dfd5128ed5d04e757df90795e6e50b94dfbf80de929446f7a3
MD5 1e9b66bc7486db9026ebc62509de2249
BLAKE2b-256 0f9927fdce17b5e7ec59630d8b7a13fe845df8b27f5ba0dfde1c1592c784ef80

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