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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m macOS 10.10+ intel

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

Uploaded CPython 3.5m

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

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

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

File metadata

  • Download URL: grpcio-tools-1.36.1.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.1.tar.gz
Algorithm Hash digest
SHA256 80ef584f7b917f575e4b8f2ec59cd4a4d98c2046e801a735f3136b05742a36a6
MD5 d965dc4ad491a489e947c52ac0dacbd7
BLAKE2b-256 e45bc94331a068ded73612be721b684554e3c0efa222f77f4a348d1f66608e65

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.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/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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5cec989d219164312bdfa9389aedaea5887fb8133bb1a247fcde5901775b5427
MD5 c4e6a791df8e79235e9d4ee0deffd4e0
BLAKE2b-256 e7a2fa17dc4a74c5817b3bdd82519d6f3d9e6ab046a176018b087f0a4366f2ae

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.1-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.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 120bad5a3f3288ae8acd07d839a13d7873304ae35a1d717033295e90ed9bd8ac
MD5 91a14b6eaf88f672e7d6b970bf6ec276
BLAKE2b-256 14af446303a43621e8e94a131e566e5bd95429232f8d5781b8b49105a1d6803b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.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/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.1-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 377cd9b8d2098d2ced48d3dee466fd73fb19128aa0edc6f1799077cf4dbda606
MD5 9785e06fe7f5364b6a679f1dd35d5d33
BLAKE2b-256 84e025f8e48c13c69ff9d8448c30b4dab324651f5f5f24b551502ecff5134822

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.1-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.1-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c02b5b6d185b1af86342381ddd1ad3d0482c4116e203e52a7145636fb1b2ad12
MD5 56fdb3fe04c543daee5d17915b7562f3
BLAKE2b-256 4dc526673ad14d2764c4c051e8c9c15ee7563b47969a78c49932194d7a12af96

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.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/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.1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 cd44135fb8b45acc79424e7354bb4548911a6202ca2fac384574099f8d998f06
MD5 bc03d04775fbba1914dcb4811819ad36
BLAKE2b-256 c8c9d3f9afee9af3e031cc4f999900216e88cdd6422b744894096a264178f900

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.1-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.1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9b8556e2938ef9437ef07d028b46198f299533497df878f96785502e6f74250d
MD5 6b46a912fd30b8d27ac2b3ceaa3b5544
BLAKE2b-256 f538c730fe0dc85fc3f030d5d3055c0532f9334045af4f41c6ba521a2d6ed311

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.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/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.1-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 0a7b85758e44d9585f27fc7692b58e63952a2e9130cfbbd16defda8c2ffbb2ad
MD5 50be5ad3d0226d7f74101a6e1d2a32fd
BLAKE2b-256 3c7c12ce3cb0fb3e8c4b989b83bd459d51b67238bfafdb4425e301ef03e5eb81

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.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/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.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 76900dde111192900c6eb5ed491cf0d8a13403e502c74859f2e2c3116842668a
MD5 626318bc9c7821dc39139cfbdf2e36d3
BLAKE2b-256 bdae1467c92104c723c8d1f295c1b3621d818b34a3eb2a26f6d6dfa4ec53a426

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.1-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.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 9fa491aaccd455e3aec35d12bcef5dce307c674f08e98bbbf33bf6774e6e2ec5
MD5 ad350b5853fbc176f6e504141413674c
BLAKE2b-256 659bf9f11b9094f674f6e36dfa83fcb7af1fbcdfe3111eb57ab389a5813c8192

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.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/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.1-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 facda541209a0b0edfccf6a5b18ce344c4e90bc8950c995482c85936a23ba939
MD5 cce53187908adfa96861e6d0b5f3c6e2
BLAKE2b-256 7d6c097ed1ea68015921a10cd837e7ebf5c0316b999ab028c043ce5fc9b82876

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.1-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.1-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 af392594ba30b5ee470b7538cf792df970e2097edc299685d8e0d76b2b1bef7b
MD5 26761bf160da5325e1e92835eb4f51f4
BLAKE2b-256 a087a6f2f39675f0a0fcfb00c032d64ad9a53a3b8d57f498f815b2387621666b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.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/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.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f7ba8d631f8f5c089958285545bd9e307fd752cdd1fa31515a51cfc1e04b833d
MD5 8d2335fe6060bb8074f18c4d8e1db6ff
BLAKE2b-256 e9333074804f3196bb56600e24b43397b4fc0419d61ad2732838d49483697a17

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.1-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.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e730845677e45c6829d212be6e4fb69768979c3b35b5884293be02a7f436e18c
MD5 d35f2b544b8618c61dca67880fd27d6d
BLAKE2b-256 cdfd912425a57fd3145c1da8fc5a24dd93f254e43427a478554efa0b0ae8e4f3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.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/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.1-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 93e3ba4696b69fc4356a0823ecddd8b29ebb1fba0571f27574b1182ef5c262f6
MD5 c2e957ba3300827544adbb9085c2fa57
BLAKE2b-256 14e497d66b329a7f88b36e4d9aa340f9f47a71ba7388b1315a2711c7b1539ae2

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.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/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.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 f74f0c3eedc0de72c402e82bb1199ffe5e359ccdac70bf789d65444042a84f42
MD5 622e2b960ddd8571a0b227bf8d50a837
BLAKE2b-256 304220605409cbe445b3f2da08e60c6979743e717a9b3d200d18dde951da3e73

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.1-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.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 55ed5c5de883defacd899123ba5a9f0077b7fb87d8f1778cb5996b4391604447
MD5 6eb38cc69f99f85683c16ca427de167f
BLAKE2b-256 ce417e3799fb81af3016cb4ac1645047a378d82fb9263eaedf4d3fcf665041a3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.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/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.1-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6fee070c18be66a282ceb56245191dabf80986aee333e74d2fdea58118b452d4
MD5 03e740cee606ad014ab5c27538b6a323
BLAKE2b-256 d4e2da36d345c8779599ddd9ae1a2920f40949c5e87003e6aafed1c136cd5579

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.1-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.1-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6898776449485feedb6d0fd98d3a36c8882c32a5603b86b2511e2557ee765d40
MD5 db82a171d44d9fd7d513cf5ee02f19a1
BLAKE2b-256 2c57a6b6e3267db4ebce8f60f80fbb56d4e11f79e5993aa572cd6913ef414c33

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.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/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.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d6b3c868c6ac15a0e288d3a5380ad5f01802cbbed8645333e496fa31ecea19af
MD5 fb717581b293908f4596ebd8b4a7ae29
BLAKE2b-256 aaf80bd87fdf1db975b88f5bd2b06fd0dbaaf5f2431ebbf25d251db9b99ab9d6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.1-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.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 dcdfe82237e7498eb49dd12751716c55d189a5e49b4bda0bb53f85acbe51bbb1
MD5 a15ae245f310aea35d114fd53969bca2
BLAKE2b-256 3d4a42718ec8ae0faba0702e2f8491863042e16a29747fe1efeb78dbee8a312d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.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/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.1-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 f35fad86d99743cc15fccf11ec74d8c9b76e997cd233dc1fd031457d3f0fd7fc
MD5 c202425bf28d0acafe194953f1210612
BLAKE2b-256 cb3ada0abd715f0e0c87a23f14c74a52737b5a2ac7c0839edb7245ca7a8fbeee

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.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/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.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 bc6257b5533c66143f4f084aea3ae52c1c01f99997a8b81d2259d0cf083176b5
MD5 c924cce43eef13e20f5aceb2a83521ba
BLAKE2b-256 391aff528a1456c4d8669d50ad9ab69e340f52de1a5ca50d11779d48f89f4a7c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.1-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.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 fd5eed43f5764209a95a58db82c064c1958525f30ad8ebb57df38dd2c9e86aa7
MD5 21e4ad6bbde50b32b889ea5d877d235e
BLAKE2b-256 0c8f1f77624b02e5a04ad1ce7f6c2fc17326ca0f08855c9e21610de3caf63789

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.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/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.1-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 747b547c487231a6325eda820d1d6a7c6080eda2cd1f68a7d4b2f8d9cc0a3e95
MD5 f422754cb5e51f99c8167d992b0f84b3
BLAKE2b-256 0c54d040e6ce7f55e65a691ceccac036200ac39d9924e02a9baae99773750e79

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.1-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.1-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 add07eb3c79478b003ac3af7b636275c37fa6bac56e6a29f79128bea09b37488
MD5 6b4bf048af4439e39d1c1066b4c8c5a2
BLAKE2b-256 668e5b77e10f1adb064d64ca352c5ecd9f4ea31a67f961d2ac08daba0389638a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.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/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.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 693dc16a65b1766037fca8cddc173c0f45e79dd14e05d61128a30dbfd02f6503
MD5 acc92ad698922ac3c200e54d7a46e4fb
BLAKE2b-256 a7296451e1400e1bf26e71189546417da82fe3781fe4f2d04b72b2121fdfc4e2

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.1-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.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c669f1ee5642631ad93fa51d298306124d26bccc76ce63a3bc143ddcf01c58af
MD5 2728a6de3d48d0fde1a5eae88ecde2db
BLAKE2b-256 9ec86c6d9ddd9756d44e7c432e139d21a6be6f87f1278db273079d55f50ce90e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.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/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.1-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 125859be6458e65e348c50ddb7a964ba48945d521af3f46ce35aca9a2b752296
MD5 640faad6ad89743cc2d919085fbd455b
BLAKE2b-256 561a88a8e728627c01868c95df0ce830b3573251ec64ce8a6db9ce125719ebcf

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.1-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.1-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 f2befead0395e8aaab1e8f76825c8c9fa93d69249a513c26107a55183f91ccd9
MD5 b82bae2e06c648c24995295c4c4fb6ec
BLAKE2b-256 f2af738f06aa0e6ed9ec089e2f57814ed2aadb3949b2ba3114dbf0630aefeaa0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.1-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.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 f4326b1a5352e85480629bf888b132f0aec79bb791d29cd3e2322586cd70433a
MD5 4a22e241ea36e920a9b553efb73dead6
BLAKE2b-256 164663c7fac4dc1e4f3f60854ab40e204c7469d92a806a1405bc50e019a3630b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.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/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.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 96e1c0d267eb03b819a31bcf973579220ec3b8b53178952daa9e2f1ad696783f
MD5 0c23218c5996ace87dd50542647c2349
BLAKE2b-256 e6715c1e5f2169e9c04f1d9f7d6f69533a31a9dac1389a640c2355677e5bfe1a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.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/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.1-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bbe8da70ccbe21c72599eb8de5ad26bd053c01f4f03c48ea16323f96f1ec7095
MD5 0eda1e5f5f6f8597d965b4c6c4e148de
BLAKE2b-256 792f82b310e3cd7ca08f249ea835dfb4381b04805db80a9d06253a43363ef0ee

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.1-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.1-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 92336c60db1052c865ab7c9936680187d16d2f565c470ba03199e817120714e8
MD5 2a8bcf72e566c9f3d5e7e1944e86f902
BLAKE2b-256 f07a6b2bc71170c62566afb0cd35f84dcdba60dd5a4403e7e86728a391981c8a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.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/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.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 aec997dafa90a29b399bdb23d968ab43da223faeac005d384a1194f43ee0f46e
MD5 3a11ff3c513c625362b266a15444f4db
BLAKE2b-256 44abfed2d215ffbb7d3e4d7888d0bec9284263662559365974907c34b7e51834

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.1-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.1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6df49b402f387decaaf57784c3e74bea6f34cf446cc45d4bf7b9adb34f97fb20
MD5 addcfe8b7deec0e059be040cc6526403
BLAKE2b-256 e76f2618a18da488baa1910ef5a786c953aa041e1a29e1eadd6a78a861e3d476

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.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/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.1-cp35-cp35m-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 0873697064cdbb116ba9f88ff524e13e9afd78bf7905ecd6a0f0f743bf40ca64
MD5 12b96fd5a978a9873a3a474d69621cad
BLAKE2b-256 acfb2afa67dabf0d33cded3f8f216220f53abcdd02ff373e90341163075aea83

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.1-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.1-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 a3a64797840fd4917ec98532d17b9b7c6a954dcfd7862657c750255556d369a5
MD5 bd8915e71742e343049b42209ea22834
BLAKE2b-256 a10a3d90550faf1512e0f61fc338cc2f975872d4f9995670de6bc2667d867211

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.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/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.1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ff1792b188183e977e2feccb1f3b3d4580f921df8f61385d7ae8eace10578a23
MD5 b914ea1035909575b63af8e471655fec
BLAKE2b-256 56ae1fc9ea30ffa719505675a9543916099706ef938537c7bcd31caf9a7f2f3d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.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/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.1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ce621375bc7dfaeac93e23e202771a6e567a8ea7e9a7cc690b87d8b1950e3da6
MD5 50aa9d33e21ec8be646d9799999a4398
BLAKE2b-256 3180afae9155b0f0df0c198f90b52be6f72ee6193f4d3c571a2e92004ded6555

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.1-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.1-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 702c3eb61a3cfddcaea04d2358c0390c2e189fe42b64a92239df8292366ab4df
MD5 55fb0b9920aa679316b1e15b461b916b
BLAKE2b-256 ef07fe1d9979a583d4d2e64b4b0348d09eb4ec47fa716a7b850413d4c5e831cd

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.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/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.1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 66d2a6237941199df0493e46b8a3123005b4dfde9af1b9572e8c54eb605a7567
MD5 e5399e99fde1507e94345f28c39be0fe
BLAKE2b-256 aa1d90592fc6cf52b9c5b769ac7f5d8b9d5269555d9e97b18d202fe7183e8347

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.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/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.1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 582b77e7a4905063d8071ac3685cefa38941799d5f4ea7b4519281a28cfc6752
MD5 7d4bf24f630221744bb97342d263d3c2
BLAKE2b-256 e9a7a43fc1808738c3fcac301e5bad2f350a191fa32aa5225b909cf92e9fefc7

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.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/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.1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7969915ac252d0e67f9cfd4f8b9d6bb546efc7b26bce34978a940e37ee4078d5
MD5 cffca52b3e38e4844badbcdbaf58950a
BLAKE2b-256 a9d409258d72b99af6a227e6cd53242ebb6a554e7549bb28369c460a79a42103

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.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/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.1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d95dfefe156be02bcce4eb044ac7ff166c8a6c288d71bc3ed960d8b26bce2786
MD5 c99bc93aee94fb6aba078f3baa7e4eb2
BLAKE2b-256 fe32aa61c1222758c4567e1f4f6f27a074b8c003b3bf76a4100b9b168eef26a5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.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/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.1-cp27-cp27m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 ebbfdbff079bfc303a4e1d3da59302147d5cf4f1db2c412a074366149d93e89e
MD5 106b14b28e1fd1233accb63cd250d775
BLAKE2b-256 33f408e8df96c71f34331a2db16349b96d3fd6d2073afad77ae050bd2eeb1e3f

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