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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.9 Windows x86-64

grpcio_tools-1.37.1-cp39-cp39-win32.whl (1.5 MB view details)

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

grpcio_tools-1.37.1-cp39-cp39-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.9 macOS 10.10+ x86-64

grpcio_tools-1.37.1-cp39-cp39-linux_armv7l.whl (24.6 MB view details)

Uploaded CPython 3.9

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

Uploaded CPython 3.8 Windows x86-64

grpcio_tools-1.37.1-cp38-cp38-win32.whl (1.5 MB view details)

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

grpcio_tools-1.37.1-cp38-cp38-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8 macOS 10.10+ x86-64

grpcio_tools-1.37.1-cp38-cp38-linux_armv7l.whl (24.6 MB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.7m Windows x86-64

grpcio_tools-1.37.1-cp37-cp37m-win32.whl (1.5 MB view details)

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m

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

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

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m macOS 10.10+ x86-64

grpcio_tools-1.37.1-cp37-cp37m-linux_armv7l.whl (24.6 MB view details)

Uploaded CPython 3.7m

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

Uploaded CPython 3.6m Windows x86-64

grpcio_tools-1.37.1-cp36-cp36m-win32.whl (1.5 MB view details)

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m

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

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

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m macOS 10.10+ x86-64

grpcio_tools-1.37.1-cp36-cp36m-linux_armv7l.whl (24.6 MB view details)

Uploaded CPython 3.6m

grpcio_tools-1.37.1-cp35-cp35m-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

Uploaded CPython 3.5m

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

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

grpcio_tools-1.37.1-cp35-cp35m-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m macOS 10.10+ intel

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

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

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

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

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

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

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m macOS 10.10+ x86-64

File details

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

File metadata

  • Download URL: grpcio-tools-1.37.1.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.37.1.tar.gz
Algorithm Hash digest
SHA256 d775fb07cc6561174d6c86d11727a156c4ade969f7bf5edf623ffe2a428bee4e
MD5 c0008340f2a82f9809b78a9adc0b20f0
BLAKE2b-256 edcb1b3f6d60bb54979c9f7b3c996931ca4098e19e67c4735670c3131e40ad4c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.37.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 63d701170d5dd64b5eaeb291c75de9320b447bfea8df3a21ebb5fa954b792aae
MD5 58083770c6afccbef9c12630c14b3541
BLAKE2b-256 d432cadef42e01c887ce8e138d2e8dd4d0e8a770ae0f61d704eb8f121d98dcb9

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.5 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.37.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 98fcd8d1a7b347f835c1b1d104931a4522cec2c08fc0eafb13a8e7a325a62fed
MD5 9148ef9117454937797259352e331570
BLAKE2b-256 71849707fe623ebdb3a5f72ddf034a3332f070e71c12be6258f99c8ab50fdabd

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.1-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.37.1-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6a7cd8c81d22d9420c712fa383fb8a4c4f55326037222f0f5095382a8d4d4e1a
MD5 7396e1d6f9782655eccdb797cad333dd
BLAKE2b-256 739b0fbea0b96136d8c2331aff2cc76307297d1ad2274aa3a0220a335d0baa39

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.1-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.37.1-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8e5e7e2ce74e7145ba59495c1cc3357fa0c62f85e77ed7d5c09dc5be194a8a43
MD5 28be6f771b60401353f436ffadb04c73
BLAKE2b-256 96d4089d96d4d78034c49dd9230e57c1118bfa922670bf1e19414bf86d8579b7

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.37.1-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

  • Download URL: grpcio_tools-1.37.1-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 25.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.37.1-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9ac5fd7eb16a8bc175ef9a4313cf039d64eae48acb9513ca82c3f6fb9483d0bf
MD5 a89989328be79214ae2fb86943c06ffb
BLAKE2b-256 e58122d8c6312141bb8962e4111f3946bdb79a2d633bd9d2e33111530d883613

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.1-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.37.1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 216aa4284c8cc9c491bf8311a10192f9f9b49a7e57463abe1ca7b757fd232f8b
MD5 fdb7ed8799bdc2140a7c851526da7b72
BLAKE2b-256 11cf6b340525ed86e94045c81d32cd808475aa146004c84562069f154894d9cc

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.1-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.6 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.37.1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 46e90c20faebff5332ff604fe202104740fd20968e183a12399a3a58135d1f3d
MD5 9aa68305a0bcc5b687ab1c0c3f5a9e4d
BLAKE2b-256 9f59af31ea21286a37c016824150962abbd1fa914850fccd5a429300676fc56e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.1-cp39-cp39-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.9, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.37.1-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 78db6525af7228d1d64e4531be8036b54497100c20af4b1bdad8d0ee07a7c7cb
MD5 d03ccd488eee2f0a82fe54d78a62c316
BLAKE2b-256 c06dab4fdaf4b0b343e02788601eeda3bba521fc9bf148a482169549bf6350f4

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.37.1-cp39-cp39-linux_armv7l.whl.

File metadata

  • Download URL: grpcio_tools-1.37.1-cp39-cp39-linux_armv7l.whl
  • Upload date:
  • Size: 24.6 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.37.1-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 cce6bb815241a5ab5d8e70cc137cf9d6005ce9bf73ae23d8364f64fe4b6a8043
MD5 f9e2b573f216d75fb4ce15c27be4219b
BLAKE2b-256 c0715106c6de48c1fb621c4f707337d7496c5b905e0c755e53b549598ca5b4e9

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.37.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5ac5043886f9a3f742d18e5d25aef3e951811e780a48b76a53d86955f3e50a12
MD5 28b1ae10636cecf3c30273d3d4ef976b
BLAKE2b-256 3e5b2e12cf605d667f62384186ce1d3354018953970b1fbeb84ad9a83dcd15ad

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.5 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.37.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 78130149ffa40fcf06097788a948c0e52d5ccf848c385306ca4c6d64d9869cf1
MD5 8866f464bdd09614a4368f2f8153a059
BLAKE2b-256 7759d61b70cb714a376a7877d491dfb137a81a8bcb10d8e38404fa830b6a8520

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.1-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.37.1-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0cf44026497f874c8cd0007e724b84950d0f7f70276f9f858c84fddfd06ee946
MD5 ebd656da456b558cba4a4e170080b612
BLAKE2b-256 be79fd04d4678a963da5eb16f5c85033a35aa3d7a9534f9ae5ca1fed9ccf96d7

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.1-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.37.1-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d29777e2e82446ae95427755a87ecacd29baaf8081a61ffaf034fbf8064bec56
MD5 c43acaa2bb98f7774f6223de4195ee3d
BLAKE2b-256 7d235fd27d841764dc0c653e61e5f380264a5d46fc3c7611f53e39e0d88cabf1

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.37.1-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

  • Download URL: grpcio_tools-1.37.1-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 25.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.37.1-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6e2e8415cd975e1d86387ce0e62e4820886cbab7115df0ed8354946535e8ab1b
MD5 90d45fb0f7ad6a9dbd1a042933b69a30
BLAKE2b-256 590c191be121118954874d63e5803c6fcc92641e69c2042ee44b39f373d43644

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.37.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 442c68f9239eab84d3a64f27dfb70c56a0fdb4b6eec56bdd42cb615aad9b3f18
MD5 0328c9635a7aadfc933f91239dbc47e3
BLAKE2b-256 4dddb70dfa34b39b9e030c44b0daa1bc3d98b2c47bc936ac472d0fa1939343c0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.6 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.37.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 36a40a3591a9cdb1ee44ce055ec8006743ee686a8989f31f88439c3231a7ee2d
MD5 4a850d0c4dd776c2c50526f200435ad5
BLAKE2b-256 fecbfc99a4175e8879baf6caa42c844aef510ab4fa4f53599b003091b19915bc

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.1-cp38-cp38-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.8, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.37.1-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 b3324cc1e72f88f32a2bed7a2f73f5d4fef00899036e821dea5d98c6f64325bc
MD5 c036773aac6feec9fdd5e0e27e391025
BLAKE2b-256 b512ba7c063a4bd98bf12f841afa03cf8d24fe75e50ebff1398272b4e5d302dc

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.37.1-cp38-cp38-linux_armv7l.whl.

File metadata

  • Download URL: grpcio_tools-1.37.1-cp38-cp38-linux_armv7l.whl
  • Upload date:
  • Size: 24.6 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.37.1-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 7a5367532edea169ea5dee0a2290e81d41ed3352e61dbd2c5b3a6ccbd97dace2
MD5 880571516c97183a23197aefc99bf003
BLAKE2b-256 ca8ef53b33264b07258704d4d0dd197b25ac137ef9c3ba63a7d9b97a1dff9379

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.37.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 dfe7f4d1e17dd64ec6aa732418c2f676371a817eb07b9e50e0b71c09ff71ded7
MD5 d81283f2f28b3e5abca72e5d3c2a7ca4
BLAKE2b-256 826bec56d531c6d3bffd0892e220117ff1b05a12d8632ac1ba934b30f2242c30

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.5 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.37.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 e71cd8efa06fb1acb55ce3fa256da2d8a0421b279e1a2068acd40c157d2651c5
MD5 63eb1f515bcc4332ff2b3e0b29667825
BLAKE2b-256 ea8f17f77b010e4b0a436d3421c01eab1a62afdf97c82b3d8d4b9831e31bf61c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.1-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.37.1-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c9db39e17a19131e28af4d19099d71525a907b51535e0a6214bb2092b24f63b
MD5 557f37771ac9c371c1badfd3d1a959b2
BLAKE2b-256 8b9495b92168da188a87eb19b1d524e51427f75b6552b9ef6cd7a0fa6a2e69b1

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.1-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.37.1-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2d43f9537a8f2f78f0def659e95bdd2aedde8672b99f29e9692a6aadea7aaed3
MD5 2280dde848cc0ba01353e32bb4825ad7
BLAKE2b-256 12526acce21aad1b8cb7485abb66a3470de190b931de19faffa323780190cc40

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.37.1-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: grpcio_tools-1.37.1-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 25.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.37.1-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 69e7ab498be6511cf832bf8679394471bb76e684ada6540f57a00030f3ab4d6f
MD5 fa9725dedff60092a342562c22493c7b
BLAKE2b-256 ef83988f98885c6e2328bda7f24dcb4f1953cf2cce1006fa3abd23e1d777dc2d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.37.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b59c264a4a5c4b0d0e5674f92b887c4bee2a18189ef6e47598c97f4602d22c9b
MD5 48bf29a956c1abb6f7c4ddb3055f1bd4
BLAKE2b-256 0cabf6b0fb0a0552b596f258bd009c381ebe3c6e156815334082eaf501090900

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.1-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.37.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b8bcfca91cc0f76f897735028e3ef0a1c358c3edfdc3f48b36e4f46f3c97efbd
MD5 a1a8e96850edde1292a918bc00c724dc
BLAKE2b-256 ac3fed1a59f021063aeeeacf227dc38e79961ca609464469984b95d79a53614a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.1-cp37-cp37m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.7m, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.37.1-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 2dff4eb17b42e3e81e9c68994c84691ade057b132e830545fed8619dd043ad01
MD5 d1b1737531d88a7e692116d80716f74d
BLAKE2b-256 27d082e3db75819ec1d0b5372585ba1a48cbe95f6446df4704969ad34525d7d5

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.37.1-cp37-cp37m-linux_armv7l.whl.

File metadata

  • Download URL: grpcio_tools-1.37.1-cp37-cp37m-linux_armv7l.whl
  • Upload date:
  • Size: 24.6 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.37.1-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 2a478a074e454fc4d833468597158e03d1cee12dae7106fc93465e646ee7bb8a
MD5 85e5a7cd68ace0dbc8e73a6a7d8496da
BLAKE2b-256 e84e5bac30cb4417a234098d007197e6bc79c73580e4f683d7e083ba7379f81b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.37.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 a2fdc548a51bfd10b2ad83c6d811c9618614523c079d09bf85213641d2ba3302
MD5 31e99a5facc7cf92426cc066a51e9f66
BLAKE2b-256 f9641956d287da839daf4c4432a7e26a79dd9847cb1b37052980b066582f6beb

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.5 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.37.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 a464378a9274b99bc683f50e9a494d7c3a326e7f627589981078976d708d8f21
MD5 c6d7b9f6ab94bad417853760c2dd7d10
BLAKE2b-256 7e86c2fb0a69ff4c986e5213d72d979217d5406766c57e56c28afebc7d14a172

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.1-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.37.1-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b6d31d6ead93209981caafe4961279d064ee4befc2b667fc1de88992f32071b3
MD5 c6277fe8eb0bd7657bac1cf12f1fe619
BLAKE2b-256 50812214d3d7b92d678ffa5fd14b8b00cb574c64b5bd2e574e7ee6882357dc40

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.1-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.37.1-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9d1debe310b5b865c3385b2d3764fe369daf9f046d43f257452de4b5d33b78e9
MD5 68a279ed53bfe9c00fb82207ce900450
BLAKE2b-256 7c0405210749edd1e2c52695625ed874557f29cfc537fa994805c9e527012ff8

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.37.1-cp36-cp36m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: grpcio_tools-1.37.1-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 25.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.37.1-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cd603a84ee6778ddaf44ac502c507bbaff31c0c886c1e5243fed85ef8cc93e3b
MD5 d414a6461a315f459fab4934d7377820
BLAKE2b-256 202c38443a31da6618f01653dd88407bcbbf4dabee766d93f588d278354d75bc

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.37.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7ce4f0363038fff2e76ab0930633542c52ea8249be91c4922b4d60f2d9c7c798
MD5 2fc5fdfa7f356f48a26e049b4da52c72
BLAKE2b-256 3ca71c8e5e5af54e3301192cc6acb40a2c04686f43830bee91ea9cbb6170dcc6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.1-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.37.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 fd77c94cac4fb925f4d0ee709fb64a54726abe9066ef0181a62b96ca56977033
MD5 66e1b58cc822c06f2ac1d4ad86079a64
BLAKE2b-256 bf3b10ba766a631890a1d03492f6ea1f79a15b04caf8646848df70edc69b0a1a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.1-cp36-cp36m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.6m, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.37.1-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 878568d44562171f78fda9a048d589955edfc49860b6239ae280395b420bfc66
MD5 3482eaf649c756be0cf0faf7581cb93d
BLAKE2b-256 7c1ae6c438e7f09854b1581288f37222863ed09b45d79da5ee374242fd2871d1

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.37.1-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 f75d4493a9efea530037cb0b92fecef6d3d712b67b5279fe145399ece632487f
MD5 6125ff7f86e41d45dc512fee8a6b3eb8
BLAKE2b-256 965abe8065f0f591422169619e1eb372cf2b98077e09c5d03bf447b1628ae3d1

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 1.6 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.37.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 35b2d64ee1cb80074f98dcb6fbc688a35f2d54b01fb2f4cc4727f8e79ef03356
MD5 c1ad6dc750e8da5cd9d199d9abe2efc6
BLAKE2b-256 b30bc651e8c873cd17db34fba9cdc26a7af3295ee2df671d4756f6743c19ede0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.37.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 a5165e6ef456ac14aa631afdeb70fbd154fd3eec0e658bacd1e4c60c4fd73ddb
MD5 fbc5df493bce03d7c914f081de699330
BLAKE2b-256 61c5385f496737fca7a16fd1fee83f30394d3b347096e84b0f57dd4b06d5f31d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.1-cp35-cp35m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.37.1-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 36a8559fc0475bae6eb2eb18637b1c8ae5d8914cb43d58c3674fe476f534445b
MD5 bd68787bd4600631cb944d519ca4df37
BLAKE2b-256 3314160963a4ed690bbe2193ddf8ea1748314424b960179c63212a1f1d0334d2

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.1-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.37.1-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 939402ec6011c527bfa37c63189c0f1f69e585c95b6ca01de1222d81d70838a0
MD5 4643902cdb12af49ef4f18e2177bb9e7
BLAKE2b-256 2d021ae77d5e91fd91201ab6b4b705859a57ee5703acca24a8536fa37800b3c0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.1-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.37.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 cab777c7cd107d4a03ec528b660c6443f13fd26bfa14e56b13820420b8423aff
MD5 43f0ae5b8743afa497011431349dafc5
BLAKE2b-256 63f338e4f4224ceffcbb2b6f3933d25db09a642f0b4bd7d5423e5ace7c0004d9

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.37.1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ccac333076ad354cdb3bb108d67d0a75d5a93b13eaf81323daff0aa050a40bb3
MD5 78d17f44c982ea010db18482fe9e57f7
BLAKE2b-256 96229044c2a340155f3d678ec18854121656e0b39c6206adb50498caad712ae0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.1-cp35-cp35m-macosx_10_10_intel.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.5m, macOS 10.10+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.37.1-cp35-cp35m-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 090e73ab4cf648a82c82069c7f8d95d0d2973fbf7101b263c78dd68b3176fcc9
MD5 bcbc68917a04fac4416979180edef464
BLAKE2b-256 066b4a1e5bda8f312198ce002af30e177dd1d75fb20594b0094bc16e46746dd6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.1-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.37.1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 974677ac643cbd37ecfcd67ac1e33a7182e24bc5b67372a05ec887b230366d5f
MD5 c47669e69268d8b4f66ae4ae48e52316
BLAKE2b-256 e9da5500c5f716ae444cfc375ea2e93211b25daa4afd0a46145c704a927ac0cd

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.1-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.37.1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 930181a99d8cf7a05d1b46a658d0f54d6d3359ce1ee100bc1689ab8ada13fe9e
MD5 78056d0ea242d71da6303a8c4cca02a9
BLAKE2b-256 e374a31d483edf0cf8ecfe57d162a8c4de0bc7fc7614f2c43168481780e40fa4

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.1-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.37.1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 cba726ebd6198ed5fab03a54ab86212ce45299e00a3c56f65db74081d240cb1c
MD5 b5afa9d81ae85f2cabc05bbe161f528b
BLAKE2b-256 2497e58b8e8b02817f4ebd0887560489f6bc1774a5f5ec57f30ab9ba97a62fcd

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.1-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.37.1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 ebb2f445cb236f61ea98536da5344fc60c77e6543a048ebef412c25622f36436
MD5 78c21f7cf5e27b3aaa0652a90b97e65c
BLAKE2b-256 8ed3cc0eca80420763deea72905aa7ba00bccd4431f3de3c7e77309fa50cbfb9

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.1-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.37.1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2056acc3e8b715e8e7fac343d44ed0e05f294cdf3775d488c7c42159ed6acb4b
MD5 5265e1fc6a1d215bb21c0900df2b05f7
BLAKE2b-256 a0ee54687d48d28e7a7f4b1c9d36d2c925d736f7e0f1e7151267aadfb32e6f7e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.1-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.37.1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 09c6afaa35b268063fbc5e1c5a698c5d52e82fc9e58484217c9f231ae97fcc23
MD5 d6f351cb5a6d34f6564239e660cea7a5
BLAKE2b-256 615a1b6663305fddad3e106e584333d60a3a8ae72aeeb1dd8f93fe25d5c73354

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.1-cp27-cp27m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 2.7m, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.37.1-cp27-cp27m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 a1e8eaa1e381689b71000578856391723f17445861e74df9efad9aa75e94b1ee
MD5 4e33c57ff3be7dc622ec5ebf90968814
BLAKE2b-256 b5bfa88421225add2523e9c1a59a6d2a4325b4674ab76a88804d6925c079c7b2

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