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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

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

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

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

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

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m macOS 10.10+ intel

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

Uploaded CPython 3.5m

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

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

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

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

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

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

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

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

File metadata

  • Download URL: grpcio-tools-1.35.0rc1.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.35.0rc1.tar.gz
Algorithm Hash digest
SHA256 3b37357d36824558a7abd3616c5b6c210e046c40d9da9a5e464296296c6c7dba
MD5 02efdab1a0a9ce8d1d53c2dcc8cff0f4
BLAKE2b-256 7ef3814da1e838ef927cd74c8391a9c4321324c12cb6dce36c7c0f5d0c8d981c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0rc1-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.35.0rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9e71f9879f9865b3d1eb95be6884788119888c1ae8646dbaf211778b9385e05e
MD5 18547ac6579aa249f5ac8bee574e540a
BLAKE2b-256 a2076c0fb13589fa479b48f91562f0794b4e0bc3e11c9d24bca6ea47b81ef628

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0rc1-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.35.0rc1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 7af9b78e861db33f484698780486ce0f02e3b8ca82c090ed7ab323dd68f309a3
MD5 a3ab1d0c3b37a93627c2ebdb8c367f1e
BLAKE2b-256 98f33dd250439ca4539e11460a1aa198fd2313f2d06e2030eabd2adbc17286f8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.35.0rc1-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8b3e9125239274bf94540bc697fda4fc043dae7b1d286123a92261f53c720768
MD5 e97c6f86d5f2759e6e565ca39d48fb21
BLAKE2b-256 fbcdeeb2b7056437ee394554846c6d4e00a4369a93a582edaf9958470dac51c5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0rc1-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.35.0rc1-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1ec7c144ba1d08d6c1605a7dc033295610af062a30fa3bc00f6c46b25d47f8f4
MD5 5cfbc60b1ea414084d67a7639cdc9e6e
BLAKE2b-256 4e46fb9c6a6a14d09efc99f9677c643e2599a875c66dbd1521d90712e86aa92e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0rc1-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.35.0rc1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f5896454c9ea3761a096d6cae67b3b434090d85b00dafb6416a2b6a5a4aeaca2
MD5 29373a58081aa65b7d64c5846f52c2e9
BLAKE2b-256 48ee25655fc4bfd77abc987ac7bc917c0cdc2cc06c68413ed468b76169351e25

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0rc1-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.35.0rc1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 fb79a76f5b05e299453eb3c34397e1a1fc5dc14f7f40101982c326016ac0d0bb
MD5 bc16d7bca02d248edb9a602e294cead1
BLAKE2b-256 8db9def26b9cf4f809b26647d1e1bd35e4dc504f3875a590c4a904f05caee08e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0rc1-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.35.0rc1-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 061aae43b89e074966d8b3b95152484fa4d9a628b87f23fdd5043f1ac4dee9ba
MD5 12b5df23712d151b0c6bc47fbc9b2b09
BLAKE2b-256 6f52f7f8583931783001c4aeb60efdbf91816bae13ce08db09877ce0ac3eb520

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0rc1-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.35.0rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 48287d04df86bfd33311ccb316815f0594e11aae58dfd17e17888d1d351c3ec5
MD5 4ba4eb080c4b1c378fb8d59e052dc468
BLAKE2b-256 183b26a9fd7896a6f069473cee16de1db75793167f28519ae4c8ab00e8d57201

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0rc1-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.35.0rc1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 c666afd07f043c9b31da474bdb04405576a96266da1e97c2ba27aaac05c75523
MD5 b7e5395f9274d471db87ea4bbf9fb93c
BLAKE2b-256 e5ba3b5883569f472bffcdf0ad6220696cf48f43a01c653aaa0663698575c9ba

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.35.0rc1-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f8d148f80110df13d87d4d1fb2dbbb66618bcb4d11c35192ba1e92b420df2a74
MD5 825eed7805c729b2031bd3802cecc20b
BLAKE2b-256 a1215ac3e61e904c23e2cb9455d20fdf3100b64cb3973a9930d37ed9d38010ce

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0rc1-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.35.0rc1-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 caf5cdd821d87f68863d1fe2b40556c04d544a77308e8f71c39255e412011289
MD5 371e6b425d75f5acac74ae6149b5d455
BLAKE2b-256 63bc14163032a1c4a11abff3067ec7ebef5aeea630601e25e9fee74ccbab6981

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0rc1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.35.0rc1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 29669fcc68e9088682231ff71d7cfc44a44619849196548e768284289ac55d4b
MD5 f33e745d62f31fc868c3aff3be0ab2ae
BLAKE2b-256 a600f2a9504ede65cafb2e2b363374f1e3ef90804a9893e7f6a13789fde96908

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0rc1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.35.0rc1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 cd070019c339a592460e14b8e4d5b8b6eeb8e9f8d62c0eab1e55bd6f76ea43f0
MD5 dd666f4eb324af75c4db7be9af5a8e8b
BLAKE2b-256 ef4092e1dc6ccd5c81e3fe194f7ad8840df13fe56db3a0094b7a909844d5d023

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0rc1-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.35.0rc1-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 cc9eb2c220834844fbf287afbf70e636b40619eadf7a3a946c136faaf1cbf3bd
MD5 a5931342c84e8d16ab09171e5dbd00ad
BLAKE2b-256 144d5cae6bf7da593bb17961540783578e89a85ecf7de7e2b8d1a21031fee246

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0rc1-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.35.0rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 1c52151ef90c5af0a3dc77d95af1c70ddc8b39238053e8a471167a3f00d899d3
MD5 8dc98df8c4d2a28513f15d84d69e05ae
BLAKE2b-256 87d102519c47ec59b8f43bd1e7cce599bca50bb2bcfd01196ea181caba24dc5a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0rc1-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.35.0rc1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 bab184b1ceb05b8938bdcc04e7a3b2fd8c61e25f281d1373db1ee477eed844d5
MD5 43fbcb802c5080766d056dde6cbe22e8
BLAKE2b-256 e9fa8dbf2ad99e5004ea18ec4bcc8b01ae6a3438b8fee4eb78306116e51aa91b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.35.0rc1-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c0798621cf9712d2b7524703e5e56240eb972f0798b83b93fb853d24a2c05c22
MD5 4558dd0dac8779079c6fb7fc19c849e1
BLAKE2b-256 88d3113d6fa645e9222b1b1aa2fe7b92061d15a0b9c45de1a0006d61a1329769

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0rc1-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.35.0rc1-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3807f3f8c7088a24754fb8e563550fc3c51e75a4992a39b7744df7556820fdf8
MD5 18cb524d3497a66932aad2cf0eb6eebb
BLAKE2b-256 e4b7ddc204b27200a5dff99b105a5e14557205981d47cdbc875bcd31492355bb

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0rc1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.35.0rc1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 382738a2d4bbdc1d4debfffd2a63de4cc423029ff892b3c3465d0fec3e0e9de5
MD5 7c576b60a3f1c555504503dedd23aa97
BLAKE2b-256 6aec5f6bf9bc69ca0b20343b863555703db841572386342e4d71a227734d49d2

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0rc1-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.35.0rc1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 65a3fcadea7264af2e988fb96830369beeaee571bcbc29a931c149e432a18944
MD5 faef4d273ae655353516c8ee3938f33a
BLAKE2b-256 624732656604e35c61aac83e793c1655bfa1808d31518f87f32f3b9d7be28880

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0rc1-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.35.0rc1-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 04c6a5fb2fc7148ea3c3e3df91d3e458fce0b988a314e0721d6ac9421bcede9e
MD5 969c94545a61b9d0d93cce2e57d4d73e
BLAKE2b-256 f42dc299d2446a6cebc77e70553ce95a5164e47b1e5e48e65fe20a93de1e4624

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0rc1-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.35.0rc1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 2585f94da05905835b5927c62b74ce1da6af7b76579934d16b54b7c55c4305be
MD5 6a01c55cccdffaee6127a48090e8e04c
BLAKE2b-256 5db2f1f92c587c015ba6d94f427bc493435d75655d8b508030d24d332b11910f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0rc1-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.35.0rc1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 0310fb25c737021bc8aa55aa2690094f6e58a0d0dbdfdb20e7d75449a55b5c30
MD5 c4acbda5dc03f7651f56cab8c06ee4a5
BLAKE2b-256 a1b87d5ec119db8648875d752f282622c8d07ab8593a82aa09d733a4ecf4af7b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.35.0rc1-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 39d132f9411ea2764e1e5b10ddcaeb41d962e645b680162bdabb061eb6b92af3
MD5 f921ed10c697bd250653827e5d78a800
BLAKE2b-256 9c75648a205a72e22be88c2f04f5b55ad05f58ead45a9ef195ef8c2ee7cb3e76

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0rc1-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.35.0rc1-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 092fc707a824e00fa99df5befa9af6dda907f470e984001c4e29265ca409a32d
MD5 342ac1348451af84aec89e68e3105bf3
BLAKE2b-256 bca2aea76d49c0166fbb1e9996995eb05983dbf204b189805338cf7dcd6ca9d6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0rc1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.35.0rc1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 831520f11e25c38d08511fb665ab19eeb92ef8fd56363034eedcf5264711f3f0
MD5 f69dc204a85e1f2c6890b254779c7b15
BLAKE2b-256 0c9201f022850797e564d9e9a87f8ed89ed0c7a632c98e8f85d6726ec27a0ffd

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0rc1-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.35.0rc1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 76b773ddc0ae220b0e268c571d5d3a349513e433488c0b9c0b1c27291877478e
MD5 a15e005c92e2bcad56932720f4dab980
BLAKE2b-256 243f7ab776eab9da07020247b6637ddd484111c8d6292098eaba7447f7621041

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0rc1-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.35.0rc1-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 b4cee10567e2f281b348de54b77ed0bad5065fe0dc859231711e5957cb340ea3
MD5 254979b4cea89362d6c03414ec1e33d7
BLAKE2b-256 a1dc266f093d92dc15d8e3fb11dc4cfca5177c9e04e24c03f6b1c2ec6221c05e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0rc1-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.35.0rc1-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 fae9f15bbf27f8b233ada7abce798faa9130cb1cbfa4763d8522b0dffb83477d
MD5 c8c5e439879c5adeb029fe697fd3e003
BLAKE2b-256 4c200a02d1ccb118e8a8a4c9755e344c83a32fdb1aa084ed190ae0e9824b464f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0rc1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.35.0rc1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 1a111d269b53c9f998485d3313e136551952ac82467394e3304401ada5fad7b9
MD5 dd59a74d29de1798350a926803ffe9d8
BLAKE2b-256 d72db60c0336ee6be500cf504e0d6f62b0134095e533e16cb7384868ca91da36

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0rc1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.35.0rc1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 518c9f326e383d3bcd6164562923f34480ae490c9cc3858a45582610ba0208f4
MD5 4ce8ed196e4c4444ff3a3dd71bbd0b60
BLAKE2b-256 b20c475d6a5c0b3f2179185cad46ac7bb9d6f13fcd0f903468d8543596c649ac

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.35.0rc1-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 462f6943852d17c6a4d3e3c0723aee8efc34261de9cc4f5d3d078e0d8df0e76d
MD5 c8b4a03ecd3edc6a91a27e8361b048bb
BLAKE2b-256 3cd8c366ff9770fc2f2567fcd4d70268cee2dbe470db89b64b9bf66dfb36ef20

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0rc1-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.35.0rc1-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c09ca00d497417d9b5d132648b32cf5cbc37589127aa79d39316a116aa63d183
MD5 7e57e7fc188b002dccaeed1353502c3b
BLAKE2b-256 4d9cc82cb71abb006922882a721ac89fd7e3f67b4b82d063d42b2cb5d282400f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0rc1-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.35.0rc1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a8a571a64ef918aedda880b701e0fe602bd5a08aefd78fb32b8cd37bfa23253a
MD5 7a8d65c9e160235100bbf6dbf28715f4
BLAKE2b-256 c0cc820a316fee7daad67ca5d52e6463a1eca7f6c42aa6167e8187d8fb2f9e0a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0rc1-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.35.0rc1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 68c6c1e48491b691877449deac12672dad73eb6fee6a34b532ada3a057fa4d50
MD5 ab7236c655d0c1ec214d00a1ffbda59b
BLAKE2b-256 e0555044bf7cd33b484cddbff084757c0855941964b742f989943cb2234acba6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0rc1-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.35.0rc1-cp35-cp35m-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 d04bdf29720c81ae383b453c7e9dba15bb8daa3a1faa5a2171a8fbabb086f70d
MD5 c8de184ac762c9a43ebfd10da3f91f2e
BLAKE2b-256 9a27f852ec08de29161df96593d647e9cf14aabfa409addd3738b9a9c84c406c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0rc1-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.35.0rc1-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 0da21ca58091f422b51a627eea3f6fa28723c4a73f55c577ad3f3e86c3c02235
MD5 154c0b7a5caa54900f521805abf8b817
BLAKE2b-256 c0a91edb16f3c6bd7592eef7b65d658276eb78da7334d86dcadbab5687c2a017

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0rc1-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.35.0rc1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0e5075648655c50536bd8b20e9746328c4061b99862a853f26048752430c5aa5
MD5 944678942ab836a0d2b1992fc70e59b4
BLAKE2b-256 f1e9cf8b16c347f3a4c011dc7b897a74ee128db4a9021d591c68e7be46803ee5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0rc1-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.35.0rc1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 476a55bda565622a98d37f2ab5c31272c20e432b942b26cc3aa4001a14d10f88
MD5 5bb471b0741b359aca36517833b1bbce
BLAKE2b-256 8ad8932fe64555c554daada7d8ab39ff8f805d41eef744f4e098eb43abfd99d6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0rc1-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.35.0rc1-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 1be8239cac153daf51c91c0249f207025b1882b819ebac2b8fb89901c0916f16
MD5 917aa0a447af52c7d1b6f58d00ad8b93
BLAKE2b-256 d75287e95f1e833ea4fd1f1ab109e26920f8efc10d49c3ada559372fe8bfeef4

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0rc1-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.35.0rc1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 249b0a165c04d00b3308974bcadce141b2b1520e4047a8ed69cc4aaf1026febc
MD5 3f7eb2e8a8c8c78af242045387460757
BLAKE2b-256 2a691c8b9e3a46242deae0337a6956903b944d02d1fb85cf25c7784a76e67f3d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0rc1-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.35.0rc1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 e2eb5b0b224fa1ffdc6cd0a61858c1349c9e6006da8226c2662895277aac0ed1
MD5 d81e0d0aba5b17037e36001b7b123bef
BLAKE2b-256 93d531aac5be292dae089ee862cb957a38c020ced818dd5f5fcf4a6038cb3f51

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0rc1-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.35.0rc1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 860770863f2dd8e15ca5c137212a458d28f73b140806e25cc7ea385c4105e9ca
MD5 a0d7f5abc9e7bafa5c9909e342caec75
BLAKE2b-256 cd3694137107da5ae1f3cbdfde01b17394055b94b237f9c86f432ee7671caf89

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0rc1-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.35.0rc1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 494892c8a444f5bdd2feed44710aa430a56c8b5db89c67a668c752ddc0c31e15
MD5 d99eebda3686cb963a610fbfe7c1dc22
BLAKE2b-256 d686846bbb1e04af1c38b56c20d91d7e517c29fb6305e34aa0ecd93dd3bedffa

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.35.0rc1-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.35.0rc1-cp27-cp27m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 50c56c5f1898a645741e6c19b75282c6cccd08a929b34c4a2138456f4509693e
MD5 a09c62df39e1103befc219a5f1665b47
BLAKE2b-256 d48df68ef654da86c7898284c0c9a2ad73b4309daae65ba9138b255e259ea1a3

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