Skip to main content

Protobuf code generator for gRPC

Project description

Package for gRPC Python tools.

Supported Python Versions

Python >= 3.5

Deprecated Python Versions

Python == 2.7. Python 2.7 support will be removed on January 1, 2020.

Installation

The gRPC Python tools package is available for Linux, Mac OS X, and Windows running Python 2.7.

Installing From PyPI

If you are installing locally…

$ pip install grpcio-tools

Else system wide (on Ubuntu)…

$ sudo pip install grpcio-tools

If you’re on Windows make sure that you installed the pip.exe component when you installed Python (if not go back and install it!) then invoke:

$ pip.exe install grpcio-tools

Windows users may need to invoke pip.exe from a command line ran as administrator.

n.b. On Windows and on Mac OS X one must have a recent release of pip to retrieve the proper wheel from PyPI. Be sure to upgrade to the latest version!

You might also need to install Cython to handle installation via the source distribution if gRPC Python’s system coverage with wheels does not happen to include your system.

Installing From Source

Building from source requires that you have the Python headers (usually a package named python-dev) and Cython installed. It further requires a GCC-like compiler to go smoothly; you can probably get it to work without GCC-like stuff, but you may end up having a bad time.

$ export REPO_ROOT=grpc  # REPO_ROOT can be any directory of your choice
$ git clone -b RELEASE_TAG_HERE https://github.com/grpc/grpc $REPO_ROOT
$ cd $REPO_ROOT
$ git submodule update --init

$ cd tools/distrib/python/grpcio_tools
$ python ../make_grpcio_tools.py

# For the next command do `sudo pip install` if you get permission-denied errors
$ GRPC_PYTHON_BUILD_WITH_CYTHON=1 pip install .

You cannot currently install Python from source on Windows. Things might work out for you in MSYS2 (follow the Linux instructions), but it isn’t officially supported at the moment.

Troubleshooting

Help, I …

  • … see a pkg_resources.VersionConflict when I try to install grpc

    This is likely because pip doesn’t own the offending dependency, which in turn is likely because your operating system’s package manager owns it. You’ll need to force the installation of the dependency:

    pip install --ignore-installed $OFFENDING_DEPENDENCY

    For example, if you get an error like the following:

    Traceback (most recent call last):
    File "<string>", line 17, in <module>
     ...
    File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 509, in find
      raise VersionConflict(dist, req)
    pkg_resources.VersionConflict: (six 1.8.0 (/usr/lib/python2.7/dist-packages), Requirement.parse('six>=1.10'))

    You can fix it by doing:

    sudo pip install --ignore-installed six
  • … see compiler errors on some platforms when either installing from source or from the source distribution

    If you see

    /tmp/pip-build-U8pSsr/cython/Cython/Plex/Scanners.c:4:20: fatal error: Python.h: No such file or directory
    #include "Python.h"
                    ^
    compilation terminated.

    You can fix it by installing python-dev package. i.e

    sudo apt-get install python-dev

    If you see something similar to:

    third_party/protobuf/src/google/protobuf/stubs/mathlimits.h:173:31: note: in expansion of macro 'SIGNED_INT_MAX'
    static const Type kPosMax = SIGNED_INT_MAX(Type); \\
                               ^

    And your toolchain is GCC (at the time of this writing, up through at least GCC 6.0), this is probably a bug where GCC chokes on constant expressions when the -fwrapv flag is specified. You should consider setting your environment with CFLAGS=-fno-wrapv or using clang (CC=clang).

Usage

Given protobuf include directories $INCLUDE, an output directory $OUTPUT, and proto files $PROTO_FILES, invoke as:

$ python -m grpc.tools.protoc -I$INCLUDE --python_out=$OUTPUT --grpc_python_out=$OUTPUT $PROTO_FILES

To use as a build step in distutils-based projects, you may use the provided command class in your setup.py:

setuptools.setup(
  # ...
  cmdclass={
    'build_proto_modules': grpc.tools.command.BuildPackageProtos,
  }
  # ...
)

Invocation of the command will walk the project tree and transpile every .proto file into a _pb2.py file in the same directory.

Note that this particular approach requires grpcio-tools to be installed on the machine before the setup script is invoked (i.e. no combination of setup_requires or install_requires will provide access to grpc.tools.command.BuildPackageProtos if it isn’t already installed). One way to work around this can be found in our grpcio-health-checking package:

class BuildPackageProtos(setuptools.Command):
  """Command to generate project *_pb2.py modules from proto files."""
  # ...
  def run(self):
    from grpc.tools import command
    command.build_package_protos(self.distribution.package_dir[''])

Now including grpcio-tools in setup_requires will provide the command on-setup as desired.

For more information on command classes, consult distutils and setuptools documentation.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

grpcio-tools-1.31.0.tar.gz (2.1 MB view details)

Uploaded Source

Built Distributions

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m macOS 10.9+ x86-64

grpcio_tools-1.31.0-cp36-cp36m-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

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

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m macOS 10.9+ x86-64

grpcio_tools-1.31.0-cp36-cp36m-linux_armv7l.whl (25.2 MB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

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

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

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m macOS 10.9+ intel

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

Uploaded CPython 3.5m

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

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

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

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

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

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

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

Details for the file grpcio-tools-1.31.0.tar.gz.

File metadata

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

File hashes

Hashes for grpcio-tools-1.31.0.tar.gz
Algorithm Hash digest
SHA256 3b08cbd3f4d5b60e3bff8f859e6e03db739967a684268164abc940415e23ca51
MD5 bf292a112c0a0598d70e31e93d9109e7
BLAKE2b-256 7ab3532a19e668920d3e1c1c832b4365734ffe6f510c9dd5e1c81240d82535ea

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 66c4948babbd698fef3e5fa47811267dad08f9cb3455a4866b98c854a4a01f46
MD5 115a1644818d017a8b7730385aa2f3b2
BLAKE2b-256 a3c85d2b632811326e06bf6c30b9396d83ddb415e2cf530751552e28c9f65d6b

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 54285a3f9b110b1e08dcf96832f2b9f7d4c4a14556a8bbce41d98cea7f226e6c
MD5 e956cc123d4652454b87328f1848f720
BLAKE2b-256 acc820e666156efe066abfa8fd906384bc1d508d165047e16a38e24e817c35b1

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0cde7d7271f2633e7b1cff9bac171921133618ef3452a1e6f1752c0a32dbf94a
MD5 eb388bb5d3bd1b2b5147e40693ccfd06
BLAKE2b-256 5ba5750655a98d6556f984934cb28eb2e19742d8fe27690ba5df41d9b313ec4e

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a642a0aa02223375c502e8380bb59f9e7bd21084ff7d0380a5b3e16408a6690a
MD5 395c0a878a0558edb31b45115b6464ec
BLAKE2b-256 2485eb67d94da4cc6bf19018a12ba3886a25437964499e205b538291cfa74c7a

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5585da595d8d164c2908bffaf39801674974ac95ee47971df87b2c41b36e4c60
MD5 9552a9f78a49a64acb63220467e40efe
BLAKE2b-256 9cf1e7c570709937d8d2351d8b7a8539c584a60162e625e3c9e110f5647e3772

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 146a583c395b1548fae2162c671c21a0ec1bf628c9d02951f77f28e70eeb7f74
MD5 9a800f694091a9ac4155e243c29b80f3
BLAKE2b-256 b49eac80079074a8c34d52b705b411b8d283595251dc0dce1f6c0ea4d6b776fa

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 66ce45b67b302662b378151522b9cdf04968bbd91678f88982c7b0a1f185fc78
MD5 d4299a615dd7eeb5e707e0ac9ea46139
BLAKE2b-256 c29271fad1db883b2ccd25fa1dc6b03586cff9325cb6fb5613dcf84c5f48291c

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 286979d3780f85ccc80c1dae86e0b649f25f4d18dcae123b87555468b4a14071
MD5 7941297b7b860bced7ff9cfb5974ee40
BLAKE2b-256 2b3f33310b1106f64545d161bacffa26920465ea25519052726b680de40dcc86

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 d72f1cb2c8d0f20a8356f800c81413798caf29713a03ff8d73c776ba2baca626
MD5 db5e7250b8f5c1ce6336ad7b0048ec30
BLAKE2b-256 f873f3e94c13fdc4a070eac47e273225967ff96bf025c82653e0e350ac3b7049

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9d96053c153673ddfa445890f4b1f9ca1b6100bd0f54a80bed29e8c0908cd830
MD5 eb8e762d7f02dfbeac9139568f4c04b2
BLAKE2b-256 92a464bb62d2c7be3e00da84502d972ce0ebde5257e60e6524e8f330f43476e7

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7b1b8943b71709fbd2fc44bc3f5734fccbbd4eb1b13f3f294590dfb9e5ac714d
MD5 c46a4e12e3a433f00b2be03a64ebf4e5
BLAKE2b-256 6010dc0c4092032d9ee8bd9746cd034fe7dd81bdbdb40a4dbee08ce22fa2e2a3

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8253aa47e1609dcb63001115416c81eada630f2606baace658eb44a36fa570f1
MD5 87d9ea4202b04607cd5df754ffb4a14e
BLAKE2b-256 f3528eef6fe0d545d01a15eeb6f7cfe53626eb3430496d952b201f8b42d90f65

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8efb0106bc71f984908b8510ffaba8b0a0905b871eb5cc6a684ce7d2e74bbd21
MD5 f71445b468f0d2df55819a48df5ebeab
BLAKE2b-256 1983ee9b7fbc2c7d74c334dbc81916bd92c63d9330f268cc2564d36c8d62c7b5

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 da61a10c60685979468ce97dc348ce4ebfc3fa5687874f36c9f834a8e645e9f2
MD5 ea29b4a5f0a8b0c291297dbe23eab2af
BLAKE2b-256 748c4c037e46d7243e9375a4600d6d2b85d5a7750c41820ae0e8e0a124e23f41

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 a8d9f98a370332633ebc0c9be769a99b3ca2253dc2cd1ca942c26869fe4207d3
MD5 410b067e155c7f30ddfc06158d951efb
BLAKE2b-256 114331368c5d0d5269ae37c3334ba32b03ed417941885e55c5a24b464ee2b291

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 01efc0467bb67c395ddfe6b27902316ec953c2cd1b4936569665b0a5bccec66e
MD5 4cf3d0b97ae83738daae4dba22aaaf91
BLAKE2b-256 315bcf9d0e7d92b09375711bf8b2ab3cdfe7a7bfb29e1e567a4495ed21775182

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fe8f8a188ab7e5955126588ba340f9a118d5a61173af8ca1b1cf05544a66312f
MD5 7f52eabc421053aa0af15db65a672a3a
BLAKE2b-256 e208851e85c8b7d5fe312a8a1de9fb9464c8ca5131cc16d552914d5c2666d874

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1e454c1e28196d625ba8768baadece37667669a3142ec616245ac119c41b16b5
MD5 8d1ac84df8eaba8fd62e7d61f5e4f2ab
BLAKE2b-256 4bd43b483bfafc8778e6098891a7d7f44a9871ab6f5de34b26216294a195b427

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e2a7ef1deb955d7ea4e0aa8139ad42467710137421001c118e6a15c29662d34c
MD5 d32024537eb87c0a9e46d3af6ff3cf46
BLAKE2b-256 ad26ca660fb1bfb170106da6a09e9e2cc9e93629bfc22ba01d1b8df7873f9cc1

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d36cb70313ab24eae7ca4da611303a768a4ec6739b20c677a39cba43d6a2b70e
MD5 5c0199f002d147ebf0e9b3a9371d69ee
BLAKE2b-256 c264ed90b286d8fcd8c244f908a825adbc16c842a858162f0e6fbd014a0ae077

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cdb52b6340d8e8954e08e5e345cc6b4defa9e0e075b4a57f2053ecac3065037c
MD5 2b073bdeeb5cbd7fb96ad2c9b34a3232
BLAKE2b-256 59eb335ffac47432c78bf809db41eaf6590044856918faad0cd0ede618652edc

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 11849b3ca46d4e4e358d6fbccface509b885a32b91fbe5e9509136e54f2dcd9a
MD5 99df39083edec58d3f728653a3ad42bf
BLAKE2b-256 4e021c93b012aeed13c2f3323e03302cfeffc647f0e8a72c32daee7b05069471

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 a3a2039d2ee2cb58577dbdef8d70bbfaea03c3f08f8c49b63f854320da0130f9
MD5 01dc0ebc4fd247e3901f6a66e8e720c7
BLAKE2b-256 8dec2343dc495f02108f01aa3b361b78f7f6480f4be4fe8a037abba17d9fc9d0

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 262f53786148e5ba6990cdd91db76a252fef885a34fef94cd0f629103791640f
MD5 1681287e7b13fda63f2fb8536bef36c6
BLAKE2b-256 e3ed1cf9dd77b0ad49f119cb9afe9ffc7b5e6c1d26918bdc60df64445e685ca1

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8faad8223a4c6b351943a0460822a09b7891cd3cdc16b5d3ad3db7516e3f09b2
MD5 5f476f6d37c6596a93157af7527235da
BLAKE2b-256 314fade7596496debe199c5fc8d786fd3e0b7ed5e6cdc922be45b7d63677e511

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a945723b2205dd542ea9019c61682c50f82559c6f231ad11be848d00295870f1
MD5 78368639a29f5129137dd147276872cf
BLAKE2b-256 dba7fa93c08a3ab990792fe4e5c049adfa941bba1ac9b76824a2f722c81bdead

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3e743797961185266e303cc0c0a365800108184425f31a4182f4ddb9788b59d7
MD5 0f1235b5729477b19af8b427f3c989b0
BLAKE2b-256 c140b8a28ef1d191ccae8de0a27848ab6be18cd95e970905e3b77db61bbe4183

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 013c11c8be408abcc4fea39a7222d94b84618f0794d3b6db2060ac967042ced2
MD5 0b41f5ee21373fd6f2b7154dc180ebcd
BLAKE2b-256 edf55b690708c81debd330633264782d008c9293328588b98636b261eeb8142d

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0-cp35-cp35m-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 7f6edce2d18bccc3a494785519a62bed271c69186a2e8642dc4165066e196d2b
MD5 fca25396d1a3f0af38a86455225ede97
BLAKE2b-256 80b9f8bd3accac0539e5fedf8548e084923bd69bacf7b3023a914ae04e9d21ac

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 eab1fd5f65b88ee34f58b823110012d66961b63827b2cdb20fe05df0a2525e5b
MD5 ed2c0a050f0e247f7920984905009875
BLAKE2b-256 720bb2a1e81fcbd65638f72499f928db8c061ac0ba3e65b540c2da8c755f0110

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 150d6e5642211df3e6af56fed963d625ed5e33b7c27d7dee6c400dc8f4edc19e
MD5 bdfd29f439eebd1a57b9e0f4801dab71
BLAKE2b-256 1cd2b9f81bccb19bcb494f8b3150ae883687c498c696e56f4d65c5b77051f927

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 04320a95426f2a1b0a4b76a98fb79702d0557c9df400e78a9261a38f09475362
MD5 b2aaa6cb3068d53923dfb7fc4d8c30df
BLAKE2b-256 e54526704e9258dc1d19b9e708405df4da6b1dc542bf16c4fc4a631312976e6e

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 10ab271fd8808fa10f2c9541b3b256c7c678224d3c15f656442709dd9b591082
MD5 7b2aac9b97f8539ab23084525eb77244
BLAKE2b-256 d08ccf84536f61b6155defbbd67d9d3dda1e0c995dd6e7136e105ab395276a90

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 e1b46e3812591e0c4c61bbc1c96d92b554a7c0264667349b7ad7a2e2be760fd0
MD5 98b293a469f9427fa11b493398eba73e
BLAKE2b-256 3491f2c1901e4226873d9aa6fe16acc44fbde1cdf4311d2db2d90e97ac267d1c

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 7ff04f2ef10d0967a990573cec88acc75a0f544d758bd46328f1065bf3f52002
MD5 ad252731280ada560eb73564138c8dc3
BLAKE2b-256 0a1aadc20caed95bb0ce0165676514161e82ec10c8cad74826ed3c9f32365028

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 82ea52b677477df5d69e0c492c13c75946ef07412101367c2c630f8b08cd3425
MD5 7c58f0a1c053630d5e10a6e9dd7abeeb
BLAKE2b-256 973ae076efbcbd64567486e33e23cdeedd2de502f3cd8724c06b1845d30a00bf

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e687db983f787079cc15055ae4011b8d780568133aec8b8514c2321a48a83c65
MD5 4b2bbb2e6005d8036187121e4354392f
BLAKE2b-256 a83af40bd3fd7c6800f43c4203b21ce20c2539eeef3d6886c6e6306650a79d4e

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.31.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fa472b13319bc68dcb23781682552b3148f09eae5f170ab9c5936bdc43bc154f
MD5 0da921f95aea56697a47f2165856adbb
BLAKE2b-256 4f253800104b563c3cf7a9ed36c9a3767a22dd7e1c59dfe97b6d8d094fb982ee

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