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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

grpcio_tools-1.35.0-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.35.0-cp38-cp38-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

grpcio_tools-1.35.0-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.35.0-cp37-cp37m-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m

grpcio_tools-1.35.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.35.0-cp37-cp37m-manylinux2010_i686.whl (2.7 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

grpcio_tools-1.35.0-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.35.0-cp36-cp36m-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m

grpcio_tools-1.35.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.35.0-cp36-cp36m-manylinux2010_i686.whl (2.7 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

grpcio_tools-1.35.0-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.35.0-cp36-cp36m-linux_armv7l.whl (26.0 MB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m macOS 10.10+ intel

grpcio_tools-1.35.0-cp35-cp35m-linux_armv7l.whl (25.9 MB view details)

Uploaded CPython 3.5m

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

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

grpcio_tools-1.35.0-cp27-cp27mu-linux_armv7l.whl (25.9 MB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

grpcio_tools-1.35.0-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.35.0.tar.gz.

File metadata

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

File hashes

Hashes for grpcio-tools-1.35.0.tar.gz
Algorithm Hash digest
SHA256 9e2a41cba9c5a20ae299d0fdd377fe231434fa04cbfbfb3807293c6ec10b03cf
MD5 2f4adceee69f9e29c057468fcd3b4753
BLAKE2b-256 82097cc18fe0712a5fbc77fdf5b3bd61ed9618216700e8d49ab23431f5e44370

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.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/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.35.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c8451c60e106310436c123f3243c115db21ccb957402edbe73b1bb68276e4aa4
MD5 9cc88bc01ffa099431be04fa9824eb04
BLAKE2b-256 a7fdf6509a420275c7b1104e1e5dd0729024b58f2e84b4d6ffb26ee5d58e467f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.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/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.35.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ee0f750b5d8d628349e903438bb506196c4c5cee0007e81800d95cd0a2b23e6f
MD5 30869930e47442b6916268b3f68c7d0e
BLAKE2b-256 ab7deed3b5cca17d44b6ff759889ce8e8a3bf538737f53f00a2b5111afe67925

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.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/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.35.0-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 15fa3c66e6b0ba2e434eccf8cdbce68e4e37b5fe440dbeffb9efd599aa23910f
MD5 93868b8ec4f485bdf9cc651a97f5977d
BLAKE2b-256 28ae3584add07e9959953ef4b5d1a8f40b27fb7d5af3a617bafd8da449ee7c79

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0-cp39-cp39-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.9
  • 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.35.0-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 713b496dd02fc868da0d59cc09536c62452d52035d0b694204d5054e75fe4929
MD5 fedfa0e5170b19f054a5002eeb1c3810
BLAKE2b-256 043945d00e55093ac777a21fd853f02895af4815b0ae5deaa011f998201aceee

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.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/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.35.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5f279dee8b77bf93996592ada3bf56ad44fa9b0e780099172f1a7093a506eb67
MD5 449879558b99bce4a72baa556d07663d
BLAKE2b-256 300fe3a82fea15a9f9544d03a5376959d77423122bed49a76c1c547017b0cb96

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.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/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.35.0-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e00dc8d641001409963f78b0b8bf83834eb87c0090357ebc862f874dd0e6dbb5
MD5 4058f218644ae91063b6990d4f79a23a
BLAKE2b-256 408484d29b4e44e00a81eb36d59fc227d3b37631a7b1380af93eddc72c0cf492

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0-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/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.35.0-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 51bf36ae34f70a8d6ccee5d9d2e52a9e65251670b405f91b7b547a73788f90fb
MD5 bfb5f743867413c1fd0faa8d1dfb4f94
BLAKE2b-256 7ffbf5bcc5cb75e7afd56c867735b14fb30bb1903239cf8fd8f3b9625d2f29a2

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.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/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.35.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 994adfe39a1755424e3c33c434786a9fa65090a50515303dfa8125cbec4a5940
MD5 afcf8af362164ed245c17b7340485134
BLAKE2b-256 146647e2ebe772f971efc638171fe01c40581eb35f4f58fe4b2e37401b4fa6f6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.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/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.35.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 8d2c507c093a0ae3df62201ef92ceabcc34ac3f7e53026f12357f8c3641e809a
MD5 79146aa4e591693e28b720e9e14ffc7e
BLAKE2b-256 ef64226d1bfca41912fc158dc40cde3e116e19b2bf45b5d8af905cce2256c954

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.35.0-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d5028f548fa2b99494baf992dd0e23676361b1a217322be44f6c13b5133f6b3
MD5 0d6f8c5bab8c5427cbba7144374204ca
BLAKE2b-256 d7d9ba146698e865038b8e9e56724a7a94ea0759a41a58ff6aa78ff7584e69cf

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0-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.35.0-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8bae2611a8e09617922ff4cb11de6fd5f59b91c75a14a318c7d378f427584be1
MD5 e3daf61061622d02c94b163614bf4afa
BLAKE2b-256 fd2339c15e1a4a38776bda988461539b5387ad9e9aa5a1b47c98e51d518da6c5

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.35.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4241301b8e594c5c265f06c600b492372e867a4bb80dc205b545088c39e010d0
MD5 8916ac01708747dc4d7f11657890678e
BLAKE2b-256 75ad1c1c041a9e4beb5aabe5808aa375e0c65c4a1c4f3d17b03bec82922bc4d8

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.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/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.35.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 cc9bcd34a653c2353dd43fc395ceb560271551f2fae30bcafede2e4ad0c101c4
MD5 1181b21382dcb3915ae42cca2104205e
BLAKE2b-256 b08d3b8f9d574717e2797dc5c042bdad7698f1809f420b973eccae0884dc3f23

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0-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/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.35.0-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 c910dec8903fb9d16fd1b111de57401a46e4d5f74c6d009a12a945d696603eb0
MD5 bb1e3c1203baccaa096466c5e39467f9
BLAKE2b-256 bb8d21403120564f644cb19d7e7fd73962db17bfda92029e50b9610a70d55749

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.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/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.35.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 9203e0105db476131f32ff3c3213b5aa6b77b25553ffe0d09d973913b2320856
MD5 8098b2281a744b3197f2cb07732d8902
BLAKE2b-256 61d42bf04cd55a660de9c479ec327166e99aa22775b169d8edb8c86df1fabba4

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.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/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.35.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 579cf4538d8ec25314c45ef84bb140fad8888446ed7a69913965fd7d9bc188d5
MD5 ed9fec8df794161d6cffad1398470a74
BLAKE2b-256 e913a1e85e612eb86f6d2f189fef8e1d2e25170a11d2e338f44b3dc7e2773c7d

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.35.0-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 88184383f24af8f8cbbb4020846af53634d8632b486479a3b98ea29c1470372e
MD5 8e03e8bed385bbe048b5dde72fde79f1
BLAKE2b-256 6e591a982866d9cb27dae1c0692746327a8f60903a290bfb377030051283f055

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0-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.35.0-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 30f83ccc6d09be07d7f15d05f29acd5017140f330ba3a218ae7b7e19db02bda6
MD5 3138443222cc0e1b6762afdc0f958dd1
BLAKE2b-256 572a5a2272727d43307575a4c9425518330db0a2c2e3e7bf5314e0de3b9ec75a

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.35.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a6e2b07dbe25c6022eeae972b4eee2058836dea345a3253082524240a00daa9f
MD5 1ba680d0696e2e198c8741ad8e70bed9
BLAKE2b-256 e9355632d7893be96bfc6d7aa6e0f7055ce0be87b295a69d4ecb798afdb95afa

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.7 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.35.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8631df0e357b28da4ef617306a08f70c21cf85c049849f4a556b95069c146d61
MD5 3fccf76c9374b15aced08dcc7d81c572
BLAKE2b-256 e2ffe52e1c6e5aa73758a479eb6b62074ab7050dbf736d27bdaf1fb102187a28

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0-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/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.35.0-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 bbc6986e29ab3bb39db9a0e31cdbb0ced80cead2ef0453c40dfdfacbab505950
MD5 83a4f2df83fbe2fa9bbdce2f88c14fac
BLAKE2b-256 459d47b79781e5c4e0ec7243eaaeaf1f2928f85167d419aad5e0e372cc2b3c3e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.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/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.35.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 dbaaad0132a9e70439e93d26611443ee3aaaa62547b7d18655ac754b4984ea25
MD5 579fc15c0ea7554568c1ccdac4e72843
BLAKE2b-256 0839f26d700e0ab06bf81ede4ba38e27be975b55caf56e1ace3eec34847c739a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.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/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.35.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 add160d4697a5366ee1420b59621bde69a3eaaba35170e60bd376f0ea6e24fe5
MD5 103738b5cc604ea7d4e5621f9ab4f345
BLAKE2b-256 c7623553f23a50a619867f508ee7452bdf5c10cea59089c977090fab8f705177

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.35.0-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 853d030ff74ce90244bb77c5a8d5c2b2d84b24df477fc422d44fa81d512124d6
MD5 1e1c0788785e640f3fff3a5dd8d6fa85
BLAKE2b-256 d221cf830ed660935675839cee6899e70d6e5981390bf4d4f38cd5de07005ac3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0-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.35.0-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4ca85f9deee58473c017ee62aaa8c12dfda223eeabed5dd013c009af275bc4f2
MD5 dcb0ab858c4570877c8e8007034b0bd0
BLAKE2b-256 4d68540497a815bf9f6782928f95c84fd575818f5f536a0941fa4c2317365e15

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.35.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9e956751b1b96ce343088550d155827f8312d85f09067f6ede0a4778273b787b
MD5 c5bd369f824434d9844bdaeeaa11ef36
BLAKE2b-256 57e8ac253ba11ebadc4cac5619ebeb069b95ed824a408a9ba9c919e76ca3a69b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.7 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.35.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1687b0033beff82ac35f14fbbd5e7eb0cab39e60f8be0a25a7f4ba92d66578c8
MD5 a04daf20891814a3e8a8cccfa98c141e
BLAKE2b-256 5c05751e4756bc96e7f0a7f650c724e252d6b372a99b41d5fccdc08f9df5530a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0-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/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.35.0-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 179b2eb274d8c29e1e18c21fb69c5101e3196617c7abb193a80e194ea9b274be
MD5 02f3f661c57d82f7dc6a131c69cf2cb7
BLAKE2b-256 3b316cd447b11731a56456283b151e559ac4a737c9414201b3ecc5ef7730879f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0-cp36-cp36m-linux_armv7l.whl
  • Upload date:
  • Size: 26.0 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.35.0-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 59d80997e780dc52911e263e30ca2334e7b3bd12c10dc81625dcc34273fa744b
MD5 44d330e121bf91cd4de43c3c7d25c8d6
BLAKE2b-256 5f7faf409a39523bfa83301b8043d25c7543f8878dee2c386d00c45493ba2b2f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.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/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.35.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 11e6dffd2e58737ade63a00a51da83b474b5740665914103f003049acff5be8e
MD5 d7e0083820cf40ec855c25b322cad39b
BLAKE2b-256 9f7376d49ca0bc9d8c7da4cbe3cdf5e22e044d8423df805fcdf1c33546e96b42

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.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/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.35.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 aa9cb65231a7efd77e83e149b1905335eda1bbadd301dd1bffcbfea69fd5bd56
MD5 6a20832ff33190b6e84221d1963fc93c
BLAKE2b-256 cfc2ef9699fc7c3ad5e301b39de605b713c23d4972da38a086e00d9313a72cac

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.35.0-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7cc68c42bcbebd76731686f22870930f110309e1e69244df428f8fb161b7645b
MD5 7fa7802d1e8ba5149bc30cab9bddbb16
BLAKE2b-256 a82991018ef2b96c99d9325a8eba4d75b565b5ae2b181f293e67531b10a77dd8

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0-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.35.0-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b23e0a64cdbf4c3bcdf8e6ad0cdd8b8a582a4c50d5ed4eddc4c81dc8d5ba0c60
MD5 f9598e3b550abf67fcaf536438a1d016
BLAKE2b-256 2add7fe95ad73ac3d2e03b78ed53c03eb62679efe99e5d68d94f5f1b99acedc8

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.35.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 adea0bd93978284f1590a3880d79621881f7029b2fac330f64f491af2b554707
MD5 310f167b62d58f8697da85eb600dd82d
BLAKE2b-256 bad8d545660167d091705b9ffd37ad12b30c2ba818ba9b56d8ff7133f2dcd0c1

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.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/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.35.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f7074cfd79989424e4bd903ff5618c1420a7c81ad97836256f3927447b74c027
MD5 8e0ddd357e2a15a53db2d9bdf51acc17
BLAKE2b-256 f1e75e75ec710bb3fee747ecb1afdc42f8dac92a1ea7c4677c7f619b6b3ac1f6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0-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/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.35.0-cp35-cp35m-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 8bfd05f26af9ea069f2f3c48740a315470fc4a434189544fea3b3508b71be9a0
MD5 62bfc06444ec1bdc8efb567bdda7436c
BLAKE2b-256 28f881e2af77e0ed4d25c84a38b92acd1ffa8949245a08e0d43b27f98319ceb6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0-cp35-cp35m-linux_armv7l.whl
  • Upload date:
  • Size: 25.9 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.35.0-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 5fdb6a65f66ee6cdc49455ea03ca435ae86ef1869dc929a8652cc19b5f950d22
MD5 0bf6f64d66d6cea3aa48a8e50a0f45b1
BLAKE2b-256 7a3c9138deb05054e150a3d30e4adfa9490364e33075eceb39fc7a303a90e160

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.35.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f3861211a450a312b7645d4eaf16c78f1d9e896e58a8c3be871f5881362d3fee
MD5 d16e6705036d89e39b3e6ee3e3f1f179
BLAKE2b-256 325394a3be531cf81f17bebaa291829a0188666cf1fb72cf60a83dfe8fb93b5f

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.35.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 15c37528936774d8f734d75540848134fb5710ca27801ce4ac73c8a6cca0494e
MD5 d6cc93762bb1b6096e8044582fac6a36
BLAKE2b-256 beffedbed798d57d5a14038761ec6a148c58d4c0e9342865d589210f8168aaab

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0-cp27-cp27mu-linux_armv7l.whl
  • Upload date:
  • Size: 25.9 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.35.0-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 3cea2d07343801cb2a0d2f71fe7d6d7ffa6fe8fc0e1f6243c6867d0bb04557a1
MD5 f5a505c4c07c870f5fa25da500765489
BLAKE2b-256 810ed6f8b5989def93a2abc7906790a8e083231d37467fed597e8aa8f1d92a26

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.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/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.35.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 ffa66fc4e80aff4f68599e786aa3295f4a0d6761ed63d75c32261f5de77aa0fd
MD5 e29a811f477e8508d67c18aabcdad06f
BLAKE2b-256 fba5b48c31b1b7c994a4029a129a5efa0695dd3b84af269f4467d9ef7adf0fa3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.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/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.35.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 252bfaa0004d80d927a77998c8b3a81fb47620e41af1664bdba8837d722c4ead
MD5 8a20bcdced2873cd71066d5f3e8a7169
BLAKE2b-256 0bd4940571ae5a401747ee5b74fb221d5f8891d04bd7e52bd181a8ffcea28b3b

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.35.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 56663ba4a49ca585e4333dfebc5ed7e91ad3d75b838aced4f922fb4e365376cc
MD5 10e334df58c114ee5f6ec2db3b3adc3e
BLAKE2b-256 3fa74162bb267294897872dec5292ba424de00a8b18fa4a4ab0c3c9e1ae280e7

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.35.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f66cd905ffcbe2294c9dee6d0de8064c3a49861a9b1770c18cb8a15be3bc0da5
MD5 352a4e45c052fde6b36310a735102019
BLAKE2b-256 f67e31cdb867bbeac9746e2edb33a529e2c216dfc9f3ace2152d5a8bf75be3b0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0-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/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.35.0-cp27-cp27m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 cfa49e6d62b313862a6007ae02016bd89a2fa184b0aab0d0e524cb24ecc2fdb4
MD5 f47b47c39f085e84492ef23b85700068
BLAKE2b-256 5b4967fbc75ca4d2082c9e4d075a6e805a5ebaae266a5a30185cf6fbff54976e

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