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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m macOS 10.10+ intel

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

Uploaded CPython 3.5m

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

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

grpcio_tools-1.36.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.36.0.tar.gz.

File metadata

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

File hashes

Hashes for grpcio-tools-1.36.0.tar.gz
Algorithm Hash digest
SHA256 7f15ca23d3371134dbba784cc29c4115e7e61e5dc8e9b4eb02f2b152ec43adf6
MD5 fd98f651c79d1e52de7f78cfdfd9e218
BLAKE2b-256 ee27c026eb53bdbad2a6e34e09d1314229c0082cf14817ac49bb96f5de68061f

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.36.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c02fd79d53edf736d074b011990c889bbdb84ecf0ea81b180ac5ae9dccae22cd
MD5 b2434919175b807c25142399358f9089
BLAKE2b-256 d12a6f4129f7fc50e317373945737222ab52c6d0c03f387a3bb5a32189ffddff

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.36.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d451e5ff434c9f21454459925b0a0edcd75d6442aa763b46795bb0b2d088323d
MD5 19d2163f16748fd621d6b3e62a335bb7
BLAKE2b-256 82b36d400b592d3febec896e5bdc32c7114a4913429ade5daf1fb1c2ab6f0fc9

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.36.0-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 57323817fc82c884f6d148e2f986feccb3315a0637c36b7099d5a71f9c88c041
MD5 d52dd7862f221435e9865ac7fe7842b1
BLAKE2b-256 34ce973a2dce02e54746bc6ba61fdefda8a82a119f092312246db1904d6a1d7e

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.36.0-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 89498fb014ea1c60acce0bae1f291139fc068e3af2a5aa3c494abaffaeca3d63
MD5 9f6359ece36608283c279938a8ba7874
BLAKE2b-256 950889a51ce712cecc9f8062ca277e3c0ff290f6982b9edb1330d88aa70b9aab

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.36.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ba423a8ba9c5c5a30fb5f7061ff0a95a26b304db27b6b1f04d8eeb5de79e5b46
MD5 5b13fb0d6baa65ffee59bea6b366ddaf
BLAKE2b-256 0c71ad3acfe457e1a321f22adc4612e9932602dbc60c1eedcd6f832fb729cb45

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.36.0-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 51b87195aad7d72c2ccef5412b6c803054dec599205c192e6626c85083d208f5
MD5 8013f8513c85ecfed00ab97832da9069
BLAKE2b-256 6156c7e4e2a48eefb7a286b609f808f28769a00e66fed5ffa895554e2d24b298

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.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/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio_tools-1.36.0-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 1a73ee5844239be52b27f4369e70b952e945a297b2c5e0533404f86665a829a1
MD5 75a58c3728cbb21fb34ec31f5306364b
BLAKE2b-256 b44e583f9fc5e98baa71cf149fccbdeecd7cfc7fad8873d94d63097cae0877a4

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.36.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7d0f977b84edf60807036e7cfab0c98bf3cccf69e577ffeb546b85ba59a9e273
MD5 50c2a7fd42ced629c2a059fdb0cd93b5
BLAKE2b-256 5b9583dca5085c737441ef1c40a2f8889c9c1e60282b14623c5be2ec8adfcccb

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.36.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 b82f9c2c8831e3f86ecc32a7113f2f9c0f0b6f578ee8912ca2baccf469f4f51d
MD5 bc03de9be1fb6f1126b5e5034c73660f
BLAKE2b-256 4a66c7a1ee38b5feac4d30b8fb5e5e704d0552cf69e33322cf0d58cde2cb9ac3

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.36.0-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eebfd2c28f69bede5e50320ad9560c12ed94811cf6fcfb954bd14faa5604150e
MD5 12262afd0fa1472dd96a6bfef0722c33
BLAKE2b-256 399b557f75f5faa913ca8edbd95aa09b9ca07bcaf61f8884b7522a5456783c49

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.36.0-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 44f5b82dd509f4f8e51c94176e2a1f468c045fdf220d7d0688da2d0ba92d83df
MD5 ab880b911e8a5a9aa7726c2f2f689bde
BLAKE2b-256 b5a58fff1eb7440a21961480716d9f5f9f63d088b426ebd4335f053a41ec439d

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.36.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 23ab90556e9e563f05644a0f40305b0013afa232445e700bacaf106d0dc53d4a
MD5 f5ac480f7246c830125f292c1e44980e
BLAKE2b-256 aa688de75e383ab9447f05896f023d73f86174beebf2804977b357fc72f2df8e

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.36.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 570cf30717ca31ac1f7f83a1e23e89d3249ad36b0c56bd4b3832b69087871acb
MD5 bf64863a2329a52c94a04a2372296f97
BLAKE2b-256 35b7f649c9bd3ede3f788f356a601b66dd57574a81720b2ec4ed346a2dbd6dcc

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.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/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio_tools-1.36.0-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 f9c46c2f9fee4249e29ae73b6dc13ea709f6331b29f09e7a58518850cb2eaea9
MD5 bf443bac7fe8e084abfb0a885da2673c
BLAKE2b-256 1249096ac90ce5e704f91fea6ceb777a8f928a0c2fdc83ecc9f47a00d61af8be

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.36.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 bd1613c8d21b589f1c701be461779afc7d110e63a7fd5ce24d8993db69e7c512
MD5 d59254c5d0dc4157e72640a6e5077605
BLAKE2b-256 e974732337fe9486e0f6dec7c63ea5a776f066cb464bb511e9ef36c248fb6d82

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.36.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 65a12f34cca4cac29ca221eebbea12bd4fbe40fda10525deb57df45b785ee51b
MD5 5d85b7ac63e73c06352e0c14466f13cd
BLAKE2b-256 7351237658b1f2cf452662d1b25004bc98c451663083a3e48da0d77c98abea46

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.36.0-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1cc586feda379fadaf693d87ea159261d6685206b42e206835bed6c11dfa3b92
MD5 533dce2fccf0270a59adb928fecd285f
BLAKE2b-256 4c333b933d09b2d137b41259ce7ef302bc3c47e269667a61101d9027376500af

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.36.0-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aaa30dcf6625ce70ea0130f8193a26edbec31d1e117ee28ba418984e704cb817
MD5 52898fc20deb22939c65895cbd6a6c0a
BLAKE2b-256 79b5668c6055ecb1f4cf258b54e940ae885b041de24500a0ed58b5fe3c2e9230

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.36.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ecbe1a97617442cfcce8fc8cadadd97f9b82cc975bdcd4529f0db886719c331f
MD5 54d093a82d10c02b62a088bdbfb28a67
BLAKE2b-256 caff8d0063dece649e388076c6fa772ccebde2c0aab432334b38f34e4267fda5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.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/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio_tools-1.36.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c425329be5314e1689536edd7c83952a6b48963dfccfe1d737ec4e7b9282a38c
MD5 be15f19c0f52f3544d38116bf3534c21
BLAKE2b-256 a96045ae4d34247333e18ed6dd267cd33e04d20a7fdd4a2f3d6ff2e6c5cee005

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.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/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio_tools-1.36.0-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 41c8920b4e2ae790fc6bab66b8d4b3ffb030a2c391a5d7763f345a1d27a6c246
MD5 02a9d3ef0a17b27f65f9e490750dd1e7
BLAKE2b-256 800729d929f60c2f84c1683ec7c25dafa2ea2adbae552fcf79096b192a1618ad

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.36.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 a8a85c4df17f7fb67749d0c7a86e0aecf70f53e9e3ca426a78546d77da2b75ba
MD5 d34e130edec681c64178e11a9d896bd9
BLAKE2b-256 c986da9525e14aad4e42b0c1a37cc0777b96b36a25409ffbc5fe4307ddc68d39

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.36.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 71599d2161fac0eb0af13e01dbb725cf3abf842d4ee9cded2b4f9f646b6b8f4b
MD5 958fa4fbaff973044ead7d178a074a0a
BLAKE2b-256 f6bdb6171efa547307b581417c852b0e1ab42a99913bbbe2b61c290a03bf2b79

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.36.0-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 09753acb7a84bbafbb5b6343ceba5d4890462f47955e4d72cea0e236723ec3db
MD5 deccc70ffca28294b5573a194a05fc28
BLAKE2b-256 6d0def521b47763fdc188be5f62491f813b75d8cdb144760acaac446174acb02

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.36.0-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 635cb3198d116f3d881a5d16f8ed732bfcbb27c228a118f92a506c1d0d03c68c
MD5 5eb77a0efd6c6f37f949eaf49afcecdf
BLAKE2b-256 b5ee0c9db717576537c87506750c080f6f6e7c573807c0d0e808e38ffe63edf4

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.36.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ead60bc23a8ec1db7afc0bf7b7dbdc7385faa1e143e9721d5d2b8a41680a1ff0
MD5 16978206b5d843a0ef852ec65ea42614
BLAKE2b-256 6317373b9112c15e967ef2e1c1c56a5a123cbf88c97cf2c89da7d0f75224cf0b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.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/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio_tools-1.36.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 98979c6fed1714054bbe7ea12ab724a59d4a6b05725d7163ce3132ac79cdcc02
MD5 23166f673c37ffe06601de81d8c4242a
BLAKE2b-256 03f6990add81a8b5961d69298db27cb38b29fe59eb7ad27b897a1f8b535ccd33

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.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/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio_tools-1.36.0-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 02226920136c7896c8f15e3075ff18fe6647b0b151a500f7ec2179b87de4ac93
MD5 94c7c38f8453a2e76f1ab64421e0a956
BLAKE2b-256 765cf1ffe0e68802aa88dd5d805e41b1485e4b34ff64ec399665213511a88019

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.0-cp36-cp36m-linux_armv7l.whl
  • Upload date:
  • Size: 26.0 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio_tools-1.36.0-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 e3afca65d668cfcb679fef47a8b696357ef6d7d41a09b143400292dec5339b09
MD5 124f988152a4afc0b3ba99a8953827ca
BLAKE2b-256 573ec88e563991f11bf85175031e9c2c97822ef54023bb9036adefaacd9138c4

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.36.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 f44c86116cb636b3955843ed3826378b1b5e76c3270b116b21f559f72c378eea
MD5 15854f773fa1b58a888900ffd773d41d
BLAKE2b-256 e103b6cc49a61d940c247bcf102f22d18e6265f07fd9e559dd9935c45b76cd92

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.36.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 a66f03f6943b3a4ce6b182c23f30a405e7514049aadd65a2ac37e690c0328614
MD5 1d31e534bfa7f7c42652bc9d936138d3
BLAKE2b-256 61a4cfda13897538b83e7199b559a91bb0783e6413dec7f38ad47363886fc97f

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.36.0-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d980275c26d9308ab3e710cb10d27b6a24b0d28f0d503d8db634c2382939a6d0
MD5 45dbf24b7d1e80dd5aa22fccbb18007d
BLAKE2b-256 2955db0af01c5d25e6b818c9347f98fac6400cfc4a18e1845f4a3e5ca2b86736

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.36.0-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4105642883c3dfd71295a71b493b94e7f082f36cd8ebe48a00e2dec67c85d45d
MD5 c878c4327a96beb3d08f343a696c1acc
BLAKE2b-256 39857c2c396ececda24290326631a21eebbc3c0f750f1cdc45f43597c0519029

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.36.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 42e774a0b341ff39c19838a204c0d9521731761cc821737f09067da3fb9232da
MD5 f59c524dabe46a05253d8edaf285da88
BLAKE2b-256 a3c5100206faade525658b292647e97758d153a4cb0ec60be3645e5ac3bf62f9

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.36.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 dc80678d503aa65bf7901444be87979a6fc5553a36fe592d57a8515e3966b64a
MD5 283f0db6fcdabf1ec0d42331565b7f00
BLAKE2b-256 fc5941d9b70b928930661e949d3c1817d2afcc36f32a8d8919b1b01a0337858a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.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/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio_tools-1.36.0-cp35-cp35m-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 1032c81a134f5a27053c535d1924e23d5b216aabca3ba4990423800e96b31efd
MD5 f8fdb63d728bfcf56f253f4e7a5e46ed
BLAKE2b-256 42877d7edb1e134baf0a5c02a873f63742f5898cbcdcbc91ef727b8540d81b37

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.0-cp35-cp35m-linux_armv7l.whl
  • Upload date:
  • Size: 25.9 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio_tools-1.36.0-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 7e3ca46acd5d73015f07db826a3accb984e11b5aad3abc7b4a401af9aba0af6a
MD5 7f63d7f68de048d85e3db47ba169635a
BLAKE2b-256 c0c5ce3da4d3d8ef62705f83deab8625186b121b489c4f68997792f469826c1a

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.36.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a492162bea37ffdef6450c0deac21490181986ce5ea15425a864822156dda970
MD5 cc5e08b4fafd09d2cb942569a453e6c3
BLAKE2b-256 a268438b755fd68a2c7ca5bac49e00898cde124419372d97eb13bf880d72eb2a

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.36.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2a9fffd9ce64c23c29e5a0275353a0a773fd8a7ba83d0b53e060e33db5dd8a3f
MD5 bd9896386f30a6944327d234cccbc245
BLAKE2b-256 f031f27ccdb096adddcdd2509591d993604c66eaa86278fb1c782639f25ad516

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.0-cp27-cp27mu-linux_armv7l.whl
  • Upload date:
  • Size: 25.9 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio_tools-1.36.0-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 ac26d278d3990fe9b4aa9f657602b37482b7f0332f30324c5b67b7d7dc6568a7
MD5 68912e736c038f663f3cf5ee05a4af49
BLAKE2b-256 82328ff0660f415c578700020aea47949d76ebed7a99f3c21a99050fa3a199fa

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.36.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 410f2169133dfdb2a3fa4661fc06a91336c1c97db99177e7a8bc36d352eeba38
MD5 df4a67a3c80dd651a3fe20577536eec8
BLAKE2b-256 50b08068171400e6528f5f243fea2d067f20284022bbddb0e27c746bfe0cacda

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.36.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 5259f3e0faa0f05c0ff51cb352b41337c4c1052e40f407bc531b3a7f1ed391b4
MD5 cec9047bdd91b2eb81b61ea1df4a0165
BLAKE2b-256 eba8a1f16dc526f3a28603799fd3359fee38cfa8148764e0558191130aa93b46

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.36.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c4979a8519f48afeacaec3f22b74caa19c67eb47aa732447761dc8f19d237bd8
MD5 fcc3e89fe7172d3be823df2c7d4e2bb8
BLAKE2b-256 91157d30e842eac5a1f6ae922ad91c1439d10ca875dcdb898f1cdfe4cc118674

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.36.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 967b951052dd14d587ee97de21ea4491cf715367ae35b8d41486790d7cfc8bf5
MD5 6c7f7b3bf5211c7a4fead04845497b21
BLAKE2b-256 453d4ef05aaec9c85a77f0cf82fed11d1b9da981fe40b2a1ec8cab71e5cc9a0a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.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/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.7

File hashes

Hashes for grpcio_tools-1.36.0-cp27-cp27m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 0559baba222bd2686bb8676e2d6b941ac6c6198931797a22dedc7843274285c2
MD5 6b2a406b8a9105c5a3de85eb1066b52d
BLAKE2b-256 33c48fbfa1d6d9d64b47b8aca0da8030690b9633fadc3ac3b6979e5b96593da8

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