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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

grpcio_tools-1.32.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.32.0rc1-cp38-cp38-manylinux2010_i686.whl (2.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m macOS 10.9+ intel

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

Uploaded CPython 3.5m

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

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

grpcio_tools-1.32.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.32.0rc1.tar.gz.

File metadata

  • Download URL: grpcio-tools-1.32.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.32.0rc1.tar.gz
Algorithm Hash digest
SHA256 4375582fbc500f68c3c1246d8cbdf48eb261e09db7ff40f3e8a71ba8ab663ee4
MD5 f70cddb04a4224235517154e6082357d
BLAKE2b-256 2b4ed72e7427568b0667f6b5de79f01ea781084cf489c1be34c37508348b1cb8

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.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.32.0rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 caf54b134cf69a187ec11303d31bdefb4ce96e0c1ba48c4fd9de650062c8921d
MD5 b02420b352f7e48db1b4e0b46e3a348a
BLAKE2b-256 fb787ffb9793d90b1d158ec51bffaf41cd2fcfcf6c2184f3137413f8b6b29fd8

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.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.32.0rc1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d2844e43602ee1c0e4922baa8b23ce15226e6ae662bc133431d24c83a6a54b61
MD5 74a7f682ec4ce1df52318f2e4d97d27b
BLAKE2b-256 8bb5d5be8c6ef2bb1dc9580208b6cc2b134b99be43cf7a4537e13fd0fdae0fe4

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.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.32.0rc1-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1896cfd04aaa0f3d791afacea370e81258b1248d5cfdd02e900d880eb5b1b4f
MD5 41238a233cd6b0cedfa3eb500d3cff15
BLAKE2b-256 5d5480a34ea678b498b93b3d87a30323ec4b197de7b46fdb1dd34e1a28a81f6c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.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.32.0rc1-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b57d5386e8cb32ffab83e691d4336bae798193da3597c326694b11b0762ce15f
MD5 41e369df5524f2697573241d7bb3cb4c
BLAKE2b-256 6c4ae7afd7a58b432f3c4642dec07ddacf3a8ded04c3985f58b271201dff743e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.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.32.0rc1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 402ee3e399ae4b14d04ebf61fe25261072a003c6a3026fcaf15e7e7fdf6c95e9
MD5 93692f5b9e16809b8ab13915235f38fe
BLAKE2b-256 644f3ae7ac14a304586b85713dded12d1ed00ca9e0b0611a3fb5e6c52bbb6e75

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.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.32.0rc1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 57ca486a9f7f23569a3d64d74262c344b3162f7cd411dbe642703627fafa275d
MD5 451123e66c40288446bbb21f1e405568
BLAKE2b-256 e1c1385cb193e16aa88ca508cadd48f0922ee492c29d1a7c3c3c045df59aa8cb

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.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.32.0rc1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 029a34cd0d961e4a565061778bee8e72d9ff241a46cde309827556b444742366
MD5 63d19797e1b4fee44e58294d363585f7
BLAKE2b-256 d9894c27d8ca5085c603d24311e6af221a22fdb90f600ff9b35374a28994372a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.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.32.0rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 18aaf9980eb2c002c0e435638fd2cb70ac187e3c4a9698157b53700578a18794
MD5 2feeeae63e95212444314af3772c0eb7
BLAKE2b-256 41506ed7f1c80b8733e1caa91064d0b35cbec4902492359c8a74bcc312540aa0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.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.32.0rc1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 952237b91eb3a0bc55d6926fbdfaf91fa4792b62a27e7cc87860c720b8ba1069
MD5 d74195d715ff0a83cb30eb4c208eae45
BLAKE2b-256 94a616ecc8b7d4069d026bb1234037f88be940c4ecee3fb2b4ddf7ece5ef761a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.32.0rc1-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e62a9a4f9fada98ac6723bbc522fa06318e12f66d946595f460a1e8f25c27170
MD5 d0b32061918a6e4d07f7618c38a2fcad
BLAKE2b-256 309b71a3b673638ea5db41d54fbe16ef0506e1e5c389c31f963f4b4ce937d168

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.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.32.0rc1-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2c1f6754a8a3af0c0ecdb7f38f4cef628d643671bea253a530acaf0eaab95481
MD5 7f0be26f9e4986821fabad8b98ba850f
BLAKE2b-256 6db2074582a3200d8cc7be30a9dc3139b2d5a4e4b79ef91556235a456d12e4c6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.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.32.0rc1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3aff70d97ac4a5930d6c41033dd340cc7693232a470b8a610986c7dc067b4995
MD5 f95d9aa1b15cdc63ec6e30f7bdf5ebe5
BLAKE2b-256 5b652aba7512e5dd81876e84f56d6906d85f98214fbcc44162d4c34120ee7936

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.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.32.0rc1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 716b71b42d5ac8deb9c7cf15ee30d75212534b6291c53fdb14af70f138b51715
MD5 ac7cf74bcf8468f27556a9994c664beb
BLAKE2b-256 1bb8a2ddeb89d28d5e93c86e39d20a55ce37d339090e24d2b247fd9b4a0d858b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.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.32.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2ddf214a32906c550368f04d50e2797d0e760654bcf98f66946420dda745f6e5
MD5 e47ca128ce3d683ae12886a8103059ab
BLAKE2b-256 2202ba25525db8da4f93af7554eeeda682c8d86ea019b8832aeab4e584e2e466

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.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.32.0rc1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 6cabca3fc8dbde33a403c28f35b9e4fb52f415b6347289d5a0cf7c6b59d3ac91
MD5 4944c6bf2454a94d4e3c8adc4d17f6b9
BLAKE2b-256 6a92a678fab0ae2916a1e320fe6aabba93daedf4026d8c89b61e62427ae98194

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.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.32.0rc1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 90f86592aefe4bbea132eaccc684b025262426e2b3e540b6c962a331503e697b
MD5 df85cb4f04a080a239a81b53ceb2f304
BLAKE2b-256 3926979fccc775c1936790854a5a6c3aacb798bba9254f0a2b432de234d9785f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.32.0rc1-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b34d3c338f6a76f7418aa12331bdbad1aef500cf6d816f972362e39f0f33188
MD5 d2ccdf39ed84cdef3eea81a05f0c58b3
BLAKE2b-256 0d207fb1cada1dcbf5a14344bc8301342afefc2b9c1643eb7d250d7ab3e3efa1

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.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.32.0rc1-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b792b8c7e33fa9a304d64f47adf2f5b35d68ef2c6c6c7ae83809e0593c3847b1
MD5 28939096e0409a25ec114ff2434a6455
BLAKE2b-256 e86ee174155173929c0e67e765f6c6416f02333504d83d5244048454ac6e610a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.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.32.0rc1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 93a6e5ae10fc88c4ea40c8ee57f2be9faf7d9ed8665a3993cfb866892125c6d1
MD5 6673d40056a8a79776c92c9cd25c07fd
BLAKE2b-256 99ac2a39330f8a4d5f02252a56a9f235cfe960ba84399f42c2b8814b7b211b1c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.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.32.0rc1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 043e5e09cd112676a6196f481c6a3a807a719a8bd9983e520bce1384a867e486
MD5 602f7b3e74f405e75c48a362494d96af
BLAKE2b-256 8667e5cab46f638f8cbbe288b2e77a80940499c390a46f5c98f3a24bc9fd00a5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.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.32.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dce58d46675fbda2acf181b71d6eeefe946161f9efbffdb19b958bdd696f7791
MD5 06fe08ec3a34ded51949141fdeb47448
BLAKE2b-256 e501960b8a994343ce86f12dcb37d0879f6bfe8e07a56bd3bf4593c45fe84b70

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.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.32.0rc1-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 22601912434fd83f9b33fadcc2ed1b54b48ed85c5ec6ce1a01a686404766d11c
MD5 e903e96673957f9a0fe6a14920f89cdc
BLAKE2b-256 4930d5bf8e2d5af671c5ece973c8f5e5712ff69193b901fe814a79fafc79f7f6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.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.32.0rc1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 c904de17ec8859cad260feaaa5f3ef63a35d549afb028557512778b83ed59936
MD5 84135106549e627ced96609aee871b6b
BLAKE2b-256 5931df25bf05b09ba42b6879b349628b1477c29fcd8932160228ce0fae9737a3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.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.32.0rc1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 0fed84d09d256d2eae4c3f7b41c3c8f978f0ed7429856e7cf2fb290119e088ce
MD5 418502ab62f46294de105fb9f73325f6
BLAKE2b-256 b9b1cc94d68345cf8a49fef096e0507f367c91a91dcff981df3e272537f2e09a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.32.0rc1-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7484e84d80e2eccf590f689f08ee0169b3e3a0d86e189fe6d84c6c0a97eaea71
MD5 c61aba93648a013843d18038033c9946
BLAKE2b-256 dc5c3ba140a849649af105e40d87b170c9eec5d2db68feb6f14c85769ff992be

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.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.32.0rc1-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 24d2fc9415b0c6bc0a6bf15af6d3e35cf4c28e158603736131dce538411072e7
MD5 9c7ffa9094fed2e2116736dcfac5a0c2
BLAKE2b-256 1126a5cf501e8a4958cbc4b69e98acf25a7f2dc8ae859f218f0b58c41c75a7aa

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.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.32.0rc1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c18166d91b25c65725b38040e2f3a784385e98e2f4495b41b1ef2bbe4e1681b7
MD5 b6f0d11d53fc9dee979b28b1040def6b
BLAKE2b-256 4ab0b89e0016c8f5e3848ff9ffc2c56ff4f73ddd5d4187e328a76ed7f547f510

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.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.32.0rc1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 72c9b18eb4334480a8fce4c040ca85812f6aaed311ae02a062c018d6626d7c65
MD5 9c345a4694c4fcaa701def4e055ceacf
BLAKE2b-256 a555d7b87f739fefc2fd4373f102de30990e9e264488a8b2c9402df8f68cd704

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.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.32.0rc1-cp35-cp35m-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 0e4ac4f97295a6e882876bf6edaa248ba20ec3596c62d7461f50aad7cf2b299e
MD5 ef1a4db9629d97d6d644b26af814361d
BLAKE2b-256 280639efe55015e34c04ab3a5eedb1a7c53b15b61a8a36d1c82e01e3c39f6da4

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.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.32.0rc1-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 f869b10872bf48a98e530c0103b10a9aaf9aff435122250999fd1df263494996
MD5 20ff5dfcc2b00c1e9cca142325d13681
BLAKE2b-256 8bfae1d2b0f19218dfcce3cf1b54cc178c53ccc8f9769be4e0c17a11f164e10f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.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.32.0rc1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 561cbf14d23fb6e2f571798186229f07333c4fa2b0e6a5d90216ad7f59af9257
MD5 ac8e155f13a337d2a98b75cbd5084aa1
BLAKE2b-256 b0da650afec0333ef645a413e9577eb8f588677daf025a3a1d7bd43ad55ee5dd

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.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.32.0rc1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2e36163a0a596f4bec4bcf32f467202b21cd4563a891e2d6371ca8a038275cd8
MD5 16b7fba5595de10cce071d37c42f45dc
BLAKE2b-256 724d1622cd1ee7e5506747e766155a2be3d9ddc165ceecf858d89aeacdc83485

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.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.32.0rc1-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 2ab9bb321ff9444822ff57ee513492148990e75c2a58d467c363775f2f2c2b30
MD5 e3ad96d1238690fe5b110268d729254d
BLAKE2b-256 ae6f0f7bbb1116fce5ee68260972e8c669e1dbe97f849687110424cda7ee5117

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.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.32.0rc1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 4d56e4277f602a1d5b611615a31e71135655fa38287cfe2693753d5c057fbe5b
MD5 70acb0a1f301a89dcbb260788743ed6d
BLAKE2b-256 49b31f88f7dbb7e180e10c3937d41a9b72c9160b7e27848e0a06c008dc906548

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.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.32.0rc1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 e24e7d59ba43308b61644072939da02c11563c1d270b97aec8b00fd473bc256e
MD5 14388bbd53955d498de2c4d4df2a295c
BLAKE2b-256 e2330effc72211af3850511d8f9ec7a1733e91757b65c927aff1fbcb22174519

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.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.32.0rc1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c7da8effc90d47dc897183e748ab2042a8b05980f4785ae1a820970ca9443524
MD5 6f0612ee577ed8b353374752c8923bf5
BLAKE2b-256 8e974d2efd5368989cc507f96ec827c5567e3b16c39041f6f708ba8dbe5528ca

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.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.32.0rc1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 35792a7b7de3f339fad07d60524b8324e4a347a234f4c8068c11a03fb3acb40a
MD5 101b5d830a61ed21e3483e59d783afae
BLAKE2b-256 94d66f2be54a3b9edc371ed66449ddc963388d5e9350f34176765fe3b6d9819a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.32.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.32.0rc1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ec891ec980de16a2d9e84c79ecf21291e3c5c5d667520a9e71f705d8b76fe95a
MD5 bbf2649e56719473004370776f46d557
BLAKE2b-256 4e226eb318e5b1b4b737ae792623006a5ea9f073f02f202126e2ca6591d6ee37

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