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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

grpcio_tools-1.34.0-cp39-cp39-macosx_10_10_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9 macOS 10.10+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

grpcio_tools-1.34.0-cp38-cp38-macosx_10_10_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8 macOS 10.10+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

grpcio_tools-1.34.0-cp37-cp37m-macosx_10_10_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.7m macOS 10.10+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

grpcio_tools-1.34.0-cp36-cp36m-macosx_10_10_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.6m macOS 10.10+ x86-64

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

grpcio_tools-1.34.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.34.0-cp35-cp35m-manylinux2010_i686.whl (2.7 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

grpcio_tools-1.34.0-cp35-cp35m-macosx_10_10_intel.whl (4.2 MB view details)

Uploaded CPython 3.5m macOS 10.10+ intel

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

Uploaded CPython 3.5m

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

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

grpcio_tools-1.34.0-cp27-cp27m-macosx_10_10_x86_64.whl (2.1 MB view details)

Uploaded CPython 2.7m macOS 10.10+ x86-64

File details

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

File metadata

  • Download URL: grpcio-tools-1.34.0.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.23.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.0.tar.gz
Algorithm Hash digest
SHA256 db5a6f0130256d534cbe35eab37d37a448d96f4fd736e5051c6be1aee49cea1d
MD5 f5fea06a4ee9b876a3176f475339d7d0
BLAKE2b-256 352152604f25b93fa77799bfc50770afcf8738665c9b7e5ae913af64bf605efa

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.0-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.23.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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a8bf37e1f3d4f8bc5df130aa682a256a8c1747e2498a7a68a00980050d5221d6
MD5 d0e0529718cdaf0b3b629afb8571cae6
BLAKE2b-256 ae311e61b4988d4c0e22b854664198fbbd413a499639124c51e4bcc22b2e9e95

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.0-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.23.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.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 2639e15d8f85c82deb1217f4dfceeec18f68990198cb7e6d2842070ecf86eb06
MD5 e4e97f99b8883d76a9aac2f2e1e3a50d
BLAKE2b-256 f6ec0a1e4cf04a5c4dd8494002fc4670da48e7ca26856b63c340be990c483b18

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.0-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.23.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.0-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6a952248a2f057f8556ed847583b5630d1b840b5a51bf4b2fbe56f374db6c77a
MD5 a916cb0fb78794270e7b579d669a82c1
BLAKE2b-256 04143dad23f93a5615252741ffcbc3f318e9c32961d5f7af4139b04e62652bc0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.0-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.23.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.0-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 73f92810901d22b6ac55b2a0e001edccfe576e0e5b67fe81389235fde2e72d1c
MD5 3b983a0f51f3e38c232172453885659f
BLAKE2b-256 f8c71a17838ef4b6903e587cb041ec1e950f1b890171deaac90d4774a17c5e6f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.0-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.23.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.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6ba9877d7ed7c4a120dd4efd167680b2d2946631a00eda3d6173d378e90702d2
MD5 1ba144f0029ad572fd4f5c247d9655f6
BLAKE2b-256 fa505bb5e1b4c20db0ce3fe22a87a064dad57782b4282a2c41e423119434fb85

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.0-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.23.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.0-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4aded8e8230df28f779318c1c4569ffd1a3df0da10b2602d22fcd33186b7af19
MD5 6db476c633353b73b4ced61ffb6c9ff4
BLAKE2b-256 14ddc06afd7f179ea82bbab7b3d1e36070195dac0531f5e69393ba35ad82dbcb

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.0-cp39-cp39-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 2.1 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.23.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.0-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 698028452697e65b8aacb422170747bfaf25e67ad579cb5c4ff6910c19dd125d
MD5 bac6bf1a051f1d6b9b4f34a989bf81a0
BLAKE2b-256 510ecb4e733a9cd9119b5f4b8e95ea3001768d02421241a4b5790d3eca615400

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.0-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.23.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.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2a5e83e734556bd3f36f836f6c6d0ff3127914be96ebeda409d726f6fdc8a498
MD5 69953c2594a58877e5e5430a17ed489b
BLAKE2b-256 9a51134d733033f100d7132f0b81e49281c6e72fc73a1089671cbece03a8ee73

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.0-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.23.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.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 e3d425a78d8de119ddebf4472bac30a86f7bdf3fa26b6f2cf63ba0beb1477f4a
MD5 a91dad4738377cad15cb8769b31e92e6
BLAKE2b-256 a7169ff1e0281492ac35198ffe9e0fe9f518fa2b36dd55e74a93cd87ed6171a6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.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/3.2.0 pkginfo/1.6.1 requests/2.23.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.0-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9a025d8a6e765ec3530c9b4bdfb5e7b05587497b279a935f7b778b9f903ab571
MD5 859e49dbb5ea6b3e9ce6309fff0443ab
BLAKE2b-256 ff7b9cdb0854038bc19b9db6bf5c30415c6c190f4e38b6c9e6b3b5ca7e238392

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.0-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.23.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.0-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 01a5939c325cb32e82837923ce8b14df8590c885fc23e28cae9dbfbe28acb69f
MD5 d29719866947e58a344d19df52234980
BLAKE2b-256 0fc5058270610517c67ff799d7b3d4c53cf0a72ec9d00727c75896fc6602035b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.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/3.2.0 pkginfo/1.6.1 requests/2.23.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.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3fffcb165a742bff95a980b4093a9fed5d403f6375cdd5da73636696974d6e76
MD5 8fc4adc5ae733c2578b8ba80ccaf473b
BLAKE2b-256 03b99f8b75806e0d5672f1c6fdae8fb27998d6823135efbe648825fd3c04e8c5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.0-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.23.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.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 935fb6eb425558ac5354337946c5b2e09c68eaa34937f478cb8368d50b5c4479
MD5 0f87c4a6b3c40eec5387b485874f0978
BLAKE2b-256 fba1397f2ab13b636c88d76bb98acc2ca991cccd5645ffb6817bf1aa4fd16be5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.0-cp38-cp38-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 2.1 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.23.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.0-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 58a455e35c6068f2420a4909b3c332f4d00463cba096b9a3d6ec2383aab27dd1
MD5 34a64569b5d740a7cdb3f76483452423
BLAKE2b-256 72c9e6e6cdc762407f50cfb62681fd555fe1da76656ffa6d0fd09487b8c039c3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.0-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.23.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.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 15bb0b800f73a9a62aff7584d45c36ebc105bf3ed8ba6056abac21402077e093
MD5 cbf9a42dd464519a823237b8f6d2740d
BLAKE2b-256 cadc838cce0c33f77de54e7cc9364c82a3580292ed5392077e1f39a51c0279aa

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.0-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.23.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.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 562ac734e6f69f0dbae6d5983751c46bf525a935d5c90a59b159382c77baa6f4
MD5 640a6d0560c8616521c08a01ec97d990
BLAKE2b-256 7456024feb29ec996309f3d7c9d2d0b5ca33d083d79088caded67b3d1146a07e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.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/3.2.0 pkginfo/1.6.1 requests/2.23.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.0-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 664f685e22b840b3f71cfaf9307fe8dc33aa80cf67ff7af856269432d0c76435
MD5 914c10c9b6e0a75384346183c1630fc5
BLAKE2b-256 e9ca613e7f29cf53464438efcacfb3ae0777d8392e567bea8b691e45b58e8100

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.0-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.23.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.0-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c36b1ddabd4d79d7abb3649031858dd30cf3d066b8a03454de38b676c91ae14b
MD5 f612e6080e6b01674b3101764dd16319
BLAKE2b-256 16a0b96d0a540540e5fe7825408d4e7bf2a04891255068c787d9fccdead90ed9

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.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/3.2.0 pkginfo/1.6.1 requests/2.23.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.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 dc37a038bb8ce131a08a567421e4a9e8f7d638ba166edf7964fbabf05bc202b9
MD5 52283c47844de8860878d8fc468b54b3
BLAKE2b-256 6c97b8b03591595afd4290c09bafd3231b3d4b86d06b9aa6ef1aedde6d156ece

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.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/3.2.0 pkginfo/1.6.1 requests/2.23.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.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 75a9f3678a2665bd543fed0a7bf380c7850a31a15dc576d7f8424268d72fe3b7
MD5 842c81ecae3936e9c7012f4e792f5091
BLAKE2b-256 6c97877d0fb3f9d0225bc09096510e3dd6dbddc93930a7a0af4a4a5fe8bb6492

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.0-cp37-cp37m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 2.1 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.23.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.0-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 edc3ab63b5f4db0e4b2dbfea1272de5a77dec06341407978df64367ec5090bf5
MD5 606bb2ac4b5115da0a4ac66fff679437
BLAKE2b-256 1dea5b53322a54e84f455c93667a63676b1adf73b2686cdfce66e72976d08a22

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.0-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.23.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.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 475c46a36dfc1ced031896870d987207bba43b9452669e63374498847a4b6dbd
MD5 b3d0d5e8ca6b95d3dedbf1701baa5b0b
BLAKE2b-256 bd01faa38973823e1e3303df124da95e4207d3f7503364fbd78838d45904ec69

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.0-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.23.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.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 8698c627740fdfb638f78d91ac316af351a254791ecbfba8385236b02a2c3c46
MD5 c43c566f6c0b7102f102c2757e7869cd
BLAKE2b-256 af6aeb384b38e4b4a5b0351af7d9cefbb85271c408808de0c15306de5d343a80

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.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/3.2.0 pkginfo/1.6.1 requests/2.23.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.0-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d4246aa03afbc61dd0ad60de581b12a1b40ab4d9f5817ca1afdadbefb9f0782
MD5 66d10b635064a68bdb445731d46c62d0
BLAKE2b-256 d117c798dc75caf987b9f0429a5551ca546d1111fdb128900123ccd7f8c9d6f4

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.0-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.23.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.0-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 118af1f41cd8956df6a7f0ce5e62ffd85b4e9937e0f7401ebb1f8d865412d47e
MD5 34fd35ae0a83f0176cb02f12c42ef438
BLAKE2b-256 f29daaf8683054aeb1915ac8aa7e93a26d7be62e70c017c1c2abec515954ee09

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.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/3.2.0 pkginfo/1.6.1 requests/2.23.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.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 67702f5beef87b54b46b0d513415f9f5817c379496703a7ad0889ff5df40aef0
MD5 9817d424a419dda3392c58f389866480
BLAKE2b-256 5550e3cdae0a0322055262ab04c736f07372b10dc1644170aaaf905575f16709

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.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/3.2.0 pkginfo/1.6.1 requests/2.23.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.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2b420fb6aa533334b6e2b2773fa3a9d98b4c34b8307720c9dad87b9d8bc48412
MD5 d0e8f2d9aa57fc2a01007d65dbdfff49
BLAKE2b-256 8f4946c8be74568800904d22729ac0d1bd9aec8e44b6a60caa25447439edceff

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.0-cp36-cp36m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 2.1 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.23.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.0-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 22d6722813eaba5b0218ce37a7e71d099727063304544782932489ad7b83abde
MD5 c80d239b6117cbf26e18f326b46f8dc1
BLAKE2b-256 abcd7392c57537a76e13090978420955444dc3f2b459cc9755f342cc6c579a78

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.0-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.23.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.0-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 94d25eb9beae25b14a11e47100398efc1248738488a6dd4bbf854eb15d4935c5
MD5 6a34cc00b4547d432166f72443c10ab1
BLAKE2b-256 3bd428dc335edeedabcd15179b2c5d1536759944fdbbcd64d23a8c80c1d34e15

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.0-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.23.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.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 76531079c4b7bca54603e8c2ca16bae78ad05970c3e10f808e6b14625a3d4b16
MD5 9cd7d3c72c18ba9303af41dcfaf901ff
BLAKE2b-256 78f373070ad88b0b9e460387c2979759ec5f656226da25b71ce0fc5159520551

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.0-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.23.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.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 b84435532676715c85100a54e6fc48bdeb04962de7f4ddb2c80cdc6fcb1ee781
MD5 22786e8e7db7349e0a44fd6cec3f1ddb
BLAKE2b-256 766882c0269e71db1c840caef9e1ae7b880f33b8f197aa5dd2cd5d5602849e58

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.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/3.2.0 pkginfo/1.6.1 requests/2.23.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.0-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 37c37a80d0c59d44eb5c02a9336f4df13a10d2a34b3753bd9bc8f407430e4190
MD5 8b1dc79c3502aac68ca13980b90a11c7
BLAKE2b-256 660e40a08f9290a4d7c313fbadc00d087c8b9ba5dd6d50ae1aa26dc105f5665b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.0-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.23.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.0-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e7fafc9d3f59ade993225b80006f25e2df2e1643dde93bd3e6ee9b26f081eb8a
MD5 700b0048ab4c8910c9a1ef29d91425f1
BLAKE2b-256 7f0a9644b1ca204850e4a03684e9259d0664e855b6de7f0a954472fe7aeb97db

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.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/3.2.0 pkginfo/1.6.1 requests/2.23.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.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a91980b101ee4eaf6eb5fe07b7cb0e023e9c0cdc2880d67b6c507becddf42876
MD5 23933eda7e61ac7a3a4d8175b66a7910
BLAKE2b-256 609613e204980a2769ed39b80b187a174667931f3e72703e2d7516e437d5b81b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.0-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.23.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.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5267b8034d2c3ad372d551ac68dc314fc46008da8c8f19ec0aba5d9f614215f7
MD5 89ae5f25c7b7e82a35c262f373b9d54e
BLAKE2b-256 d18ba6370c27c570ab4e13da1a85db9b8713a538b2cdb1bd0974a6e669cf7cec

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.0-cp35-cp35m-macosx_10_10_intel.whl
  • Upload date:
  • Size: 4.2 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.23.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.0-cp35-cp35m-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 a439e2d677bd4fe15e2a371bdf40dfcae82014069c79db5f6d63bc61bd457cf5
MD5 f582c1aaeac64df2ce7539a471c5a377
BLAKE2b-256 95d2df542a981616c63bbbb179536a5af93f4c6abed6d4fc204600e3f51b1471

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.0-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.23.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.0-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 fcf2820e5b5a18fb533e7e85eac852b659c2bbe817750042d4772bfc8bd5f942
MD5 5f8d9eeeb16988412e71d746bad1138f
BLAKE2b-256 8345bc6ce3dd823ffa89cea51f5919d9f69cf3508461fcda3ee7043bfcbbf947

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.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/3.2.0 pkginfo/1.6.1 requests/2.23.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.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3dddb5795a4c991b764cf1459d0616c0b3b431deac82a8133518f0b458ca98c6
MD5 f0bf7212f46451eef9ffcf0692fdc43e
BLAKE2b-256 a81c6c3c2e23b9255c331be231b98e361ab7c91f291bdfdc2bf2a9bc32efd023

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.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/3.2.0 pkginfo/1.6.1 requests/2.23.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.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0805a0c87a6452137ddb2afa696d25ab56557325a6c5251e09df3ec6f0340d07
MD5 55c7907e163cbfd418815e3cdba769c1
BLAKE2b-256 3f53dd0b0782ca9e58bee0915e34d9b2ae57736ff80d596efc9da17d839bf018

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.0-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.23.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.0-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 a146cd89ff63dd4caefcc9fdbcb5ac4bea0320e0d6329383ead6c3d777b34c93
MD5 72aff6cf79bbed8198077efe969186a5
BLAKE2b-256 3afe26f87b07f52ac8c9e95dcee77824e1cf71cdb79ec366726e3b797ee78798

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.0-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.23.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.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 9d5ae84ef0c1e4dac2fc515361dc8057fb8c8ebc07d0add4a11265107a3ee1be
MD5 b3a35670ec0bfbe522786b617d955dbd
BLAKE2b-256 4021fc4a0f866794957757903f1f18f27d73eb84c4b356043e5a4d635e8eb925

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.0-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.23.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.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 378389f013b4dc5bcaf886b8f9d975daed8f9ec3af0a1e9933229b315e5c4c94
MD5 50a02141e9b4dcea20114752e1c2a29a
BLAKE2b-256 bbf03127a419cd1732cbe9f2843e38b47aa59f6137d58906dfe7b8aa4cbca72b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.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/3.2.0 pkginfo/1.6.1 requests/2.23.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.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 915ade7fea3df556a8a207ccb2976f6c715a50dbdb94a83ce9ec089f20653916
MD5 d9deec27f8d37cd2a7957c2e11bebbf6
BLAKE2b-256 c4314508e9402efb79b9525e9e07ee9d9b1c111d0f0c8a6174c989a54c8227e8

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.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/3.2.0 pkginfo/1.6.1 requests/2.23.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.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 852f56847031e5de0f6957da172a2c74ad5a17d2b947720d5891b2d578c01c42
MD5 727e95340cd9a6819a9868769c775f1c
BLAKE2b-256 fcc70d831a3fc0bdb76418b6bc503e7cc0a60e8e7e4962f72807f04dc99435ec

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.0-cp27-cp27m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 2.1 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.23.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.0-cp27-cp27m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 2f855558a71f512aa9882110aa2358d8c5b336e4718cf55848744c1d488b3c66
MD5 40c99782ea25c42232f8e43125a3ea0d
BLAKE2b-256 4124578fd5ca470d048926a227d15afd6dfc3b53d74b39705a23336ac1b3467e

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