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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

grpcio_tools-1.34.1-cp39-cp39-macosx_10_10_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9 macOS 10.10+ x86-64

grpcio_tools-1.34.1-cp38-cp38-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.8 Windows x86-64

grpcio_tools-1.34.1-cp38-cp38-win32.whl (1.6 MB view details)

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

grpcio_tools-1.34.1-cp38-cp38-macosx_10_10_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.8 macOS 10.10+ x86-64

grpcio_tools-1.34.1-cp37-cp37m-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.7m Windows x86-64

grpcio_tools-1.34.1-cp37-cp37m-win32.whl (1.6 MB view details)

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m

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

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

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

grpcio_tools-1.34.1-cp37-cp37m-macosx_10_10_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.7m macOS 10.10+ x86-64

grpcio_tools-1.34.1-cp36-cp36m-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.6m Windows x86-64

grpcio_tools-1.34.1-cp36-cp36m-win32.whl (1.6 MB view details)

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m

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

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

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

grpcio_tools-1.34.1-cp36-cp36m-macosx_10_10_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.6m macOS 10.10+ x86-64

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

Uploaded CPython 3.5m

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

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

grpcio_tools-1.34.1-cp35-cp35m-manylinux2010_i686.whl (2.7 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

grpcio_tools-1.34.1-cp35-cp35m-macosx_10_10_intel.whl (4.0 MB view details)

Uploaded CPython 3.5m macOS 10.10+ intel

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

Uploaded CPython 3.5m

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

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

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

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

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

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

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

grpcio_tools-1.34.1-cp27-cp27m-macosx_10_10_x86_64.whl (2.0 MB view details)

Uploaded CPython 2.7m macOS 10.10+ x86-64

File details

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

File metadata

  • Download URL: grpcio-tools-1.34.1.tar.gz
  • Upload date:
  • Size: 2.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio-tools-1.34.1.tar.gz
Algorithm Hash digest
SHA256 b411f36748f4ead33411544d785e37825598bbb8abbe79eca422e395be5a3d08
MD5 abb184e9279ba8ed315c98079d87315b
BLAKE2b-256 6b9da5fa6506188e44393a225245c6898a5601caf6faa1e7093ed6af1b005fe3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio_tools-1.34.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 dbc8861fdf38a8b748d7b22b91224d48d94fbdb781e7103dddd9be04d471fa76
MD5 8f960021af67c95e502184848011affd
BLAKE2b-256 484b331428d39c9c7fe0a6691c9b9fd4a237f2c26a20611f296fad588def25c5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio_tools-1.34.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 781ab05942d9e17ddf51cf2c8224a5cda78d74002b8750df2f09030ac882fa1c
MD5 2abecab372b573a6c318cc4d138ba73d
BLAKE2b-256 74a2411b28754ea3a126d0775c6d9e50274d815b673e8487c4caf236f2302b1f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.1-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio_tools-1.34.1-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 af666d78c76dc213b0bbaf05a04ece13c997fc5a6129726f3a33b61fdb6faa47
MD5 bc95444a8e8aaf00e44210cebc8eef06
BLAKE2b-256 41495c92692ef88384bb37a8eb4ee343b5f93111762c4466dd0dde26c041f9e6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.1-cp39-cp39-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio_tools-1.34.1-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b7e8d32d800a7c4a3081d0d52626748cb937a513b8410fcdfcf066c10609a711
MD5 bee063787ec19d98fd90de5aa487755d
BLAKE2b-256 516a02e4837f6c9d8cda1b7a8a5a9893436ca1e29207b9ec6a716b1e5f7a93ae

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.1-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio_tools-1.34.1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b08b631bdaf56ad23b270554700dc5da8617200af4aae2a629045a8c604c535b
MD5 0ac4178d4931141fc2bbe2a67eaa39ab
BLAKE2b-256 2e3bd10e1508097be0f273a27c585c9d7e0a957260d5a56c0739ebdc3655e6c3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.1-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio_tools-1.34.1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d62f90180b9443c14a689413934d74e8c19dff4485aeac55f9c136de33d8e90e
MD5 ca2b050b2e339debd4bdd5315d554e2f
BLAKE2b-256 fe3ecc57f712a63e97761e96dacb4c8285677436247a1931a9690d81adbb84fd

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.34.1-cp39-cp39-macosx_10_10_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.34.1-cp39-cp39-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.9, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio_tools-1.34.1-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 ce0eba27637aaacb868229e58c87cb279f1319826ce9a87d9ecb51c8d64f0b5f
MD5 d5895d2943cb18329aebd67fb0833164
BLAKE2b-256 99e37f4a47424ffabb2ae6005418075837ba8c916528c9069d3f4285b3a4220a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio_tools-1.34.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 906362306dcf9e9d31cd43a1f14ecadb92c6b8ad546f59842e326c886e6d5266
MD5 e677824ab994531767abcf7453cc72db
BLAKE2b-256 a4615c9cbf29db13dee78c8f3b5cea5ebf94a581de075dac9e38a158d2ec3e49

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio_tools-1.34.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 973c9f453ba5ef190b70f800c1bdec7e70c1e5831832fcd47dc88d375eab0136
MD5 d9b21b0a0695d64fd15fc668dbb276bd
BLAKE2b-256 4e6be1f949f1013a46846d3974aea3d1b3d1816ffd313eca4ca2641a01f34d7b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.1-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio_tools-1.34.1-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 45366f5db00949a57f6033f1810112b36ba0a9ce3e842d2d829093e894916615
MD5 b8649f9c69bd60beae9751e94bf8a099
BLAKE2b-256 58d78e1c7f78f11cd0865e8c27a10321acec593930bff0d403a537e74bca9c9f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.1-cp38-cp38-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio_tools-1.34.1-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5e3c1f7ff8e32d2baaf13ae1aae52bbd09051e15eadf9d209000a2e70f9d05f1
MD5 b67ca172d82a84f3df37e808cb44e030
BLAKE2b-256 86f7ab869a915a81d4852ac4aa1d0e151782a730b4044f5b3573e1aaa1fee638

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio_tools-1.34.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2991134c19d3fb3f1159c89076f919269a24f76dd555b3cb3485da10f15d5b99
MD5 34add44f8528e5aaba9560a239a3c311
BLAKE2b-256 50e76898602df0c4377814e8cb876e39f9ba5eaba4a3ca90cf04428b1977bc8d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio_tools-1.34.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a905e66e60dd3efd398e5e4f1035a943061e2d00cf822ad39f8f22b90c856ca3
MD5 c8520ac8c597cfefcd0699510b8658e4
BLAKE2b-256 628676ea238e809adc24f74a1ac099decd2665043c9af3012d2051ab3c9a8be2

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.34.1-cp38-cp38-macosx_10_10_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.34.1-cp38-cp38-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.8, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio_tools-1.34.1-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 d5211d2ec6a082bfe27a6b9ee66947c9e4c9aa33f91fd34537b07b7cde72b01e
MD5 808ee21753621272e9788e81e238b661
BLAKE2b-256 d5d74a2e04e25e91d6bf8a476d69d03f78157af1c60d339e470d4e78682b8782

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio_tools-1.34.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 9c5ab921dd550a2c5d1f28fade28e16006311cdf68e3db9db2fc648bf0bd92e1
MD5 a54c578a4fe44d3965b9b75e599d2573
BLAKE2b-256 ca37b5cb2461b6b31bb5eeaac2fa0dc68518482169bc9b23dc94c526cdb5fbf3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio_tools-1.34.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 f308d3125a5083d57a5f6c3bc0bb607b23909d421143fbb79cef3a11741b912a
MD5 2afea4de75c495ca789e1f6c19e625d7
BLAKE2b-256 a2df2bd8c34c07568d6d4dd6c82aafbf00c48b5608267454621179afebc190e5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.1-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio_tools-1.34.1-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ab09a234cec8187053b825e3be9683fb3d3047c2fd95ac18341a67225db023ad
MD5 350881ff8251922c80a4a8509d07cdf6
BLAKE2b-256 efb8086bc32788e7127f6655c1ec3bd000902e4c9225b587b19b09c4d8ced384

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.1-cp37-cp37m-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio_tools-1.34.1-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7abbba3b92b95e139716401c6cf58c46a6fa4e2253790d7bd669b845bca59e1f
MD5 c57bd2ec19a4f4bb66baa3049c6a9a11
BLAKE2b-256 06fbd114cfa1604d6181d4414fff434b2d572d872f92d2e33ed930a82d9ab758

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio_tools-1.34.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 253484952dcf746e6c1e196ce612c366ea49d2ad5931d2241f9867dbe2db9205
MD5 c3199edf7ffd431a2672dd777824515d
BLAKE2b-256 9d3804bd2fe7077f38d465c1a1ed1b6ce281787b7049ed63457ca25d2a34bc80

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.1-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio_tools-1.34.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 20d090f6bacb58122b9f25da2c4a110f60feee55102df2961757850f52d644d3
MD5 260d3aef791501727453dfc6892eab41
BLAKE2b-256 b296781edd1f6d589a8794be262a167990381b9b837fe6d4c1311865c5662da4

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.34.1-cp37-cp37m-macosx_10_10_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.34.1-cp37-cp37m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.7m, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio_tools-1.34.1-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 cbb1111cf1085cb858bb486399f7be86797e18ca5c5c2c94b18c023ebeb5195e
MD5 8b5b9a9fcfaee4d30188b88a2188b28e
BLAKE2b-256 ab0827bea66c3536fc0bfeb7bde63cb07a7c80012cf36181e4f5e075660bb0cd

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio_tools-1.34.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 cd092f157a1c4cf5dea498b2af9f991d376878ff03e9078762cca2822ceae059
MD5 0bfb881e2b1776c887073638404994c4
BLAKE2b-256 ab472a7d3db0cb67ea3287a7786f4c161004080d6787b05391a2f774dbfe24c3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio_tools-1.34.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 c32e92110e930e28dd3100958fba26fa8abdab4dde5dd665c7b7a2f6584d40f0
MD5 2e6fb84b45d3d2ae7ed38a7a7e3ee73a
BLAKE2b-256 73b857e32811af8d59d452ceff73855ffa601b8c573a68e48a07dbb1d6f0f3b5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.1-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio_tools-1.34.1-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3c68c18e76b5494f39a7ff5a6a4bef1647de2dc28e7cb2cf865eaa94b95bf299
MD5 69db185e720092b1e6fbd14085ac07a1
BLAKE2b-256 3cbfe1abbb8ff99e2680876ca97894016bc69fe6fc520d7eaaeae696f818407c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.1-cp36-cp36m-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio_tools-1.34.1-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bfbf869891f41b3eaea8ed9870238bb59e5218bde95f2ee4472c87c78c15d82f
MD5 0af691c82225147b7be5075e3303bd56
BLAKE2b-256 031a50afcd07b18427ed809aae2813fc5df5daf686e18f18a78586a23aceafe8

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio_tools-1.34.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1b7003faf36ffdacca6df6c67dc96f1b7cb1bea17225bed304b2a1b4d0c893c4
MD5 18c121db94643209e47fe439cc7ce4e8
BLAKE2b-256 f955eac01f2a3274e905f9f6bd3766a6e9df5282400b3a78cce5638ad1f8583f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.1-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio_tools-1.34.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 bdd9a42b1583a59893cbe04c0acfa0ed7aef87ec8f8bd75da6ddd624bd3c6833
MD5 5364e2447294e2f352881dcfc5723796
BLAKE2b-256 88c9e8a7551e013fdcc2cf1d30fdfbffa5add53d50d867c6facd2fcff46b6303

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.34.1-cp36-cp36m-macosx_10_10_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.34.1-cp36-cp36m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.6m, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio_tools-1.34.1-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 3c4ec76aeeb042e537292c1dd886d4cdd983e432fa2292b1637cffa9527284e8
MD5 f981c6b276f7dbe2590af4ede358c1b6
BLAKE2b-256 0870205717b0946d9dacc95ef137526fb9df44bcac32bdeaf7fe5533992e6491

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.1-cp36-cp36m-linux_armv7l.whl
  • Upload date:
  • Size: 25.6 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio_tools-1.34.1-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 5c8af80e506537accfd748711e9c602e26c9003389ec172e30e7968588fe0fdf
MD5 6f0e2c9138b63596bf9d7c61b49266c8
BLAKE2b-256 39b3c0390cd0353b41319ca4322800d7bea9f1b701c0ecf87d60f0fdf6b770b0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio_tools-1.34.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 097b50e2ad23238417e7337f04427a7cb5288a33491fbaf5cf926adbd870f1b4
MD5 75e9ab4640467f111ac7a68b064d0b5a
BLAKE2b-256 997e50c48666473e97bb76e26c843be72291ad0eae7ae743b7bfadaf53291df7

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio_tools-1.34.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 5cc21261187fc5fa2102362ad220f0885882dc85da2a085bbc192618258b7c88
MD5 f17daaadd2b0c4459d3d9fbea91dd61c
BLAKE2b-256 e7cc16768ee15823219f73ae243bc55e9be8d99e56e82983de0a434fdb3dd541

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.1-cp35-cp35m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio_tools-1.34.1-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b40ca7aa75e1ea8e3d1ddc9c0728017326e64ace11a02a6b7ffdecc264b81e03
MD5 dd0ccd395664649be30ee2f7e56bfef2
BLAKE2b-256 d633c64c564c4cacb4e823a44676844f8aef8df0d07e12e5ae3a8e66d60852d9

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.1-cp35-cp35m-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio_tools-1.34.1-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e06441f7788085b5937bcec8bc849ff02b297cd0b54b9bdf870c593a3e6ed8e6
MD5 89e97ade5522e06efccea16f1a2d764c
BLAKE2b-256 31a3feea41be46468172daeddb7aab68da13bc1bffeea01f4edfc4bf6ded4f00

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.1-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio_tools-1.34.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fca54266ff5454a0691e529f80f2825a27a62deff3b17818d7354ac90bc6549e
MD5 c86ca234a7b93db34eb29907eb504ffe
BLAKE2b-256 6bd0420f421b44fb6ef6131e2e505143865ea6d5e76e007c097a323407ab314a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.1-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio_tools-1.34.1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6cb5c203b33efbe793894b56dcd93634471f1b293c509c5a20bd955d4a6ca913
MD5 ff6558a0796f21ae6c000bf454bb9549
BLAKE2b-256 08a8e08753592c50fd6eeb3599aeab5a0578c7bc5fc805b72cc060594cc7a9a3

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.34.1-cp35-cp35m-macosx_10_10_intel.whl.

File metadata

  • Download URL: grpcio_tools-1.34.1-cp35-cp35m-macosx_10_10_intel.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.5m, macOS 10.10+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio_tools-1.34.1-cp35-cp35m-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 8fc5dada36f7421c0f40084d109985f5120b50621ce33bdd338d31fac35d04d3
MD5 14d05797523e4665d520544f5ffe977c
BLAKE2b-256 1ef06fe7a835d097fd3deb7041e4e3828e6e9162282a9ccb76dd770c5d6cc59e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.1-cp35-cp35m-linux_armv7l.whl
  • Upload date:
  • Size: 25.6 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio_tools-1.34.1-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 f8019f92b505c5c033c3d1f4f9c2df2f457a0e9ae3fff04d3b1d298de83cb064
MD5 307c87ede86aa4621c6d10daf25fe658
BLAKE2b-256 f04f775bcd27b75b7169292b8de1df4e4bf50dcefb96074e0bcc2a48e63783d6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.1-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio_tools-1.34.1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7372e3dc8499c45d6f02023a1990ed54e8e58d6b126c2b0f16e17099eeb683d6
MD5 00a30cb4e0921bd849f0703e4cedc2d8
BLAKE2b-256 f85e29bf890ce10f6d2e52e72f83b59220c5cb6e4d796c72fbf194a6ef4ee20b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.1-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio_tools-1.34.1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 491cb87d7aab577231773c2217bcec7775907a2f04b387c7c7521c2203e1d504
MD5 5d2a2cfc09c0ce088191abdecb666657
BLAKE2b-256 0a26e99cc3d09e6c2716860bea490b781d9456ed8e2dd855f97c646eab5e595c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.1-cp27-cp27mu-linux_armv7l.whl
  • Upload date:
  • Size: 25.6 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio_tools-1.34.1-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 541b47481cf568020c310fe432f5329b8ff62ee36a66d257be7158ab750e7441
MD5 fff14e9ec5d9d383ab422e4428166b17
BLAKE2b-256 5486da3f53f51a6b5a8dafde63274c20f4ef60d942f6b6714cc2ff4f0a2c5bdb

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.1-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio_tools-1.34.1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 e6c116efb23b365d1aef6b6091276155291f9bbbad6df7abb150c28e173c3e89
MD5 1d43d02ae9c7451f062b0cc50c8c6e7c
BLAKE2b-256 d4b81f49ebc7a247d847b49ccc936e85b10f02d920786e80a804c12b5a399022

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.1-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio_tools-1.34.1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 3d3075c6a0b6853119852864565ed1ec1fe4342eec855a1c8616182d391abbd0
MD5 b55187bd5698e6dc57ab4c88d6e8e177
BLAKE2b-256 c0d454b8629692abdd3a77c16001efbb7412cd8ef04c36f0a8c52e8bba993a8a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.1-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio_tools-1.34.1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c41797cdc31be6ec8a247bdfd91a9fb848cb6fec5d2febe99d726fbbbb58b9de
MD5 1d8b5ba77e2488a4a8b21bc9c716082c
BLAKE2b-256 48934b81c998d1f7e5fcdea124d9a7051ff2bfc155ba3f652a5e787b3211e523

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.1-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio_tools-1.34.1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a05aa9381d01625c7309ebb04c0f7a9fb9e90bdb5fbbcb66d09bd8d4be29f73c
MD5 396c10a66d59f05182a2f39cceafe300
BLAKE2b-256 6e33328655843706a6b0cf9f5e82b6df50c786f2f7afb5d29d55e6cce8d2ac60

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.34.1-cp27-cp27m-macosx_10_10_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.34.1-cp27-cp27m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 2.7m, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.6

File hashes

Hashes for grpcio_tools-1.34.1-cp27-cp27m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 ae879f66da999b2aea89e211eb7c2251898594baf08d960c3a35efe44f094155
MD5 9550a2f87793363140b430ab146b9954
BLAKE2b-256 ce0ea9d55057b87d58c2f05877d51f4630f1f406f5ec743ff38d0c07cb4214e0

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