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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.9 macOS 10.10+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8 macOS 10.10+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m macOS 10.10+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

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

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m macOS 10.10+ x86-64

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

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

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

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m macOS 10.10+ intel

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

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

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

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

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

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

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m macOS 10.10+ x86-64

File details

Details for the file grpcio-tools-1.36.0rc1.tar.gz.

File metadata

  • Download URL: grpcio-tools-1.36.0rc1.tar.gz
  • Upload date:
  • Size: 2.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.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.0rc1.tar.gz
Algorithm Hash digest
SHA256 12ee1dcd63c88218d24123af706e41a0ca011688607f9e289a1609fa71e8d4a7
MD5 bfcecbef8b58fdc18976d4351e3c3e29
BLAKE2b-256 211aa49a3a581352aaa155db42067e6ef31805481c36a1eb974dd0430a83692e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.0rc1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.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.0rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 17555266dc5bc2cacad4f30ef9b52cd3da35601b5644c5c73b408e17a5fc8b8d
MD5 63c83c49f2f26126b64eefdd2201023c
BLAKE2b-256 c44ea372048d2c3d2310293d2ba7f67a35d2e36b8d2a165b241635d1398147ee

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.0rc1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.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.0rc1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5058732e006ea9477b4a2353c96697b69a755f489cc454296337d566ae998211
MD5 b538f557b1e39a16aa8ed2d16a8b22da
BLAKE2b-256 2f08499a911ae64e511249521f10ce5581e6cc34dd9cb8f5963e2d21b5bc2b58

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.36.0rc1-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d746704ece568735b1a29c18c032d9cb8ddc8f6eb7f70a6a0200f08a398d387a
MD5 cc47414dccadf1dad1dfa1d14037ce03
BLAKE2b-256 8da9981243220e07bd2c4c10509fb3ff8637d8078877b8dddc56a3d3fceccff6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.0rc1-cp39-cp39-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.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.0rc1-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a10e89fbbcc44bedf8f8532e1bc95c79f9c40915a402c6000348f669b1d3d7c1
MD5 10eafcb91fbcef4636c922fa627b3393
BLAKE2b-256 121e657ed562c3bae6ef3ca3e1d47b00574f30f41ade2a8e07a079e287b657bd

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.0rc1-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.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.0rc1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0c1a8c3e6232f6b38e13ba28c4f7aa5b0bdc38a71157a2e2407cf18ada74e17d
MD5 1e8b42304e275c38ee0d084a6ee2e3a0
BLAKE2b-256 c224d9d2d2b800f15a4c8aa80948d9ac4a6560b10bce44f670e61dcfe70c2b72

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.0rc1-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.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.0rc1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6b1dc51fc4dfe2a9015fb776041c0aef6c2db075021420c6020be33902870c05
MD5 60efab24dd3a1742796ae0947a6e6ebd
BLAKE2b-256 f9ca69bb275b66706bc559c3e8120727141781c54da94058b78b08008790ddb9

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.0rc1-cp39-cp39-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.9, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.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.0rc1-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 266b75ee79cae919f3ee738f84c67cf73ead6aef6d9faebe74e4e06ea70d5d2c
MD5 5bee2401c151025a5760260a78fecda0
BLAKE2b-256 0632d2ca7339f69d4f576f934d768544fcec3fa7074d4ba8593424380ecc9f19

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.0rc1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.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.0rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ef97b85b478b0a668b2f8b7777acdff3ec16a6c5e5f2d1f1693db588beb69941
MD5 6e745b5f51af3549289d7dfea9f3d800
BLAKE2b-256 8bd78fb7b9f792552848e42270ecb6c8fc8d20387f635d1a37ad6bb9d0436b86

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.0rc1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.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.0rc1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 1c91de1cd16cae6e76a9200d445626b81c2262fafe781a4cb10492fd7262435b
MD5 a54a747e26c9d67a7ad348429d19b9ff
BLAKE2b-256 3ac34dad6fc76cfacef04168301d32e3f598927c9a4884b91e6630031e8c1530

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.36.0rc1-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3c26b41369674eac7672f053ed61b0a2c8192bad0b4add0efcdd0ad6a6fe5c92
MD5 265e66a1c5f47cbbb1978fbb2cf300ec
BLAKE2b-256 ec7f8089a4e02992f6334e59856b67e0b976c4e0c3ae4a5508e4638cbd2347ae

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.0rc1-cp38-cp38-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.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.0rc1-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 be62f9cb20397b61ceb8414125ecf9737e2a48214c792c54f1db550763482749
MD5 6a366d47dd73522a8cb51a3b31c7c52a
BLAKE2b-256 5c8d7199f71d6dc7fa6295fd124bb0ddbf90c563ed9eaae492c7b7b6fa2eaded

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.0rc1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.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.0rc1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 11aff547b26f1b5f205a7ecd8b92b001ff40fcd1a6ca811ba90d478a9c6c45a9
MD5 c189ea5ebe48324bdb7fa29856455b6c
BLAKE2b-256 1b71642a5509ad943cd12f591c511105f9fcb9a91d3f9fa6c89bc3ede5706e82

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.0rc1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.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.0rc1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ab30ab9ceb8c5650fb64dc4961a3079ce80f240191544bca9bc5492b2a94ef25
MD5 677f4039cdca38d1440812b31c2291c6
BLAKE2b-256 3e08e032fb99ceca0005a23f2e0075c313273cc1debf19d3f3500a1a57b4b142

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.0rc1-cp38-cp38-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.8, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.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.0rc1-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 ea9b82cd470ad7118aad5c476b77f3da71baebcd99de7e69a46923ef2e33b4d0
MD5 6a4f93c7be5ad8bb5bebbaef733bf056
BLAKE2b-256 f4d94bbec0264c8f2ad880f4cc7691ec9864b778f84ee6ffa77d094b3c06f078

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.0rc1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.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.0rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e87b5afc67924afa8197da857ea64372449aef3445539cefff76905c9b6d35bd
MD5 a07f347413a8c82640b533a7a525327b
BLAKE2b-256 db782f3ce48035d5a1db90daa16854b3785ee14cbd98aadd6314ef0992de5243

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.0rc1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.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.0rc1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 78ef23db8c058acfb435bc5c856a5338b8b2fe0ed143f54da84bb8d7b25e1bbd
MD5 a59935138a562427734e1cd618673de0
BLAKE2b-256 5f3278106e8c2be929dfbdabd687bd26e277d66a14d22c35f53c55e260bc7313

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.36.0rc1-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 66f48a0e801c63f9aa130594ee370b94836528722c85f15a936b89fdfece7b5a
MD5 794263f8e8027757d6b6267f262ab16d
BLAKE2b-256 b52b37954df6512ced188ef25354da2570a52d58c1501220353ec57691cb7bf3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.0rc1-cp37-cp37m-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.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.0rc1-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8b2039a9f304fbd6cfc94d358b048a33711663a722be904b40781d4e33978c38
MD5 c15632c7a13d06f439bb6206d2555e4c
BLAKE2b-256 866a3f7e8dabb50e3b2957dba6cfc14831ae1825d0845fe8a43f8735180e10d5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.0rc1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.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.0rc1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 41b3e048cc89756055433d17841146f559809336f015e0f29af36be076c2f0a7
MD5 40d390ebb311046fed7e505b007ed2c2
BLAKE2b-256 fed19c12a4a9e98a5b7be19bfa739ae94711d25b5b99ba9674bff6e395448f8c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.0rc1-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.0rc1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 245bcd904344616a85ab1b01493ca9441fc3cda27e412f509e7a97230dccbd6b
MD5 7f994bc96843d155f986818606d7acb4
BLAKE2b-256 871430fc0ab39c7fd8fde848f6e916813da6c366ef36dabf3c12ecbdb702e031

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.0rc1-cp37-cp37m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.7m, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.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.0rc1-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 e4f5675a86129b729b664972c7d8aae478eddb601779b85b4eb893f77dd0889c
MD5 d0d17439211bdd360d7a800258ec50f7
BLAKE2b-256 c8c0c9a8e69ba488cf81bf55232b842a285ec247ce29c31e6268beaf16c0534c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.0rc1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.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.0rc1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 91e3d408d82b00652532b6fbd4f489ace9c1f352104a4880965507c9785e9661
MD5 12e10a5ec20de33a306fe2adf3ef6bc0
BLAKE2b-256 313a88b026a47e1776bdadde99a778b3fa078db366a9d559e70f932d19400f06

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.0rc1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.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.0rc1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 34db69484a001ef48acf6fd9e400e6f334701842b06171ab9e26fa4f4ac88c63
MD5 27521c52181cce62faf037e08e41c7d1
BLAKE2b-256 e6e7cca0a278dc343ec05e5fe35dee6aee0163c40539743a70f65e48f4876e3c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.36.0rc1-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 91d969d9bf2b7cfe22898622acd79f7e36a63f8333d6ed1aef8d02baee10e2db
MD5 4a891a01ccc37d64310b670a9923e939
BLAKE2b-256 141e9471cada3b04467be37200a65d3e5d4b660ced82bd2f6274be78a43f0750

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.0rc1-cp36-cp36m-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.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.0rc1-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0cc4c96d69fa84b7b2db3ab5dc7a371112215f1aff9beff372725ce258ab4dbe
MD5 027fc15cdd16144d397fe52718dc5093
BLAKE2b-256 e4fee1b204b53e8811a7c8c9304672e1f49853db66bf493cd8780ed04a000f32

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.0rc1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.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.0rc1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 732e35a69bba241d50fd3b91f69fdc96195f0264d75516a3757d8578ec55621c
MD5 7fdd12e658ff5feae94e66457d5130f2
BLAKE2b-256 c4d1b9473a18476cb728de18d179396c90f2d69cac0ab995030468cf89ec000f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.0rc1-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.0rc1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f5f3d2e57309a75ab1cde7a08532eaed507fe28b39784d5bf77db5ddf5e9220e
MD5 d8574b8e0bfb1d4c30531b5ced2ef1d9
BLAKE2b-256 e72d59e460c2da1bddef6793ebf6561cf8c2ba9179f345b6ebacdaa9e44967ef

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.0rc1-cp36-cp36m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.6m, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.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.0rc1-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 151e35fc2eb3a0694ac6d4eae4d233d002bb1a5279e489259bb1b9f0c839543d
MD5 66d41a25b18ad3a4ed16ff0e9ac97474
BLAKE2b-256 393c36f3b60020b9a1e599b653627d22c735cc51d7d1a6135132ebdf88ff403f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.0rc1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.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.0rc1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 2530832834a7d74c2fe03ab0a6bd4484b6de805ff34b131ac8f6a5796ae7a125
MD5 ebac6199af404ed19ca3dc8bd26a2a05
BLAKE2b-256 cdba00bce8e63e859ea5469cac451f1b8f383cc8de96d3b23f19ae33c3b2652e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.0rc1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.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.0rc1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 157d74e58e93005a5b3b40cf2ef833f942aed3e3c61a5dfa903cb1ebabac87ab
MD5 b1a0739e2fa76e3b3d27fd06df56eea1
BLAKE2b-256 691cdf48b476d4649381c51af0777a502fa15815370d743b0733d6bcdbf65f32

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.36.0rc1-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 771d7087e06a310d2e5f0a9ae0f6f9ce9f5ba6013b04c59bbbe218aa1d4f792c
MD5 5faae95cfa80537e8ed77a7ae591d4e4
BLAKE2b-256 93afccb228e2a6c4132a0be3cf20eda0828d761a87561259e0957e04a44a6dc0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.0rc1-cp35-cp35m-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.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.0rc1-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0f487564f41bcf4cd5e17799286a437ddd515e7668238d467757428d9642a583
MD5 3d4556a69a76047cee3cf9bbfd3587ae
BLAKE2b-256 7f68909709c8bf773033ccccdc3563b6599058b7db13c2eba57db8c5048add45

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.0rc1-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.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.0rc1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7281267098ea00aa2fa3abbc255cfe1611ba8030190214fd00ff9570f01f88a5
MD5 945bb4fcb2c27d8f0c790fbca963603e
BLAKE2b-256 f62ac5ac37295c89296f5147cf73a2998a1fc242f3832b4949fb8e9ba935d107

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.0rc1-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.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.0rc1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 be0cda3be6f26e4921113b2828758b9b8d1b79d37da2322c26269496aeb1427a
MD5 904b17bfbef14b22bea21ffc75541881
BLAKE2b-256 2a4c862225c19455913a72827d1afa286829bec6b0eac7a13a496949f9abaf14

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.0rc1-cp35-cp35m-macosx_10_10_intel.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.5m, macOS 10.10+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.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.0rc1-cp35-cp35m-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 1f7d61bb04a540e3efbd170117dbbd5f886f2e8fd410be9d64f1608e6fdcdb2d
MD5 d838118bb33b8917226d13b4fbe53392
BLAKE2b-256 1d87719672c1dd3d966dce36b5e1c7016d4cf00a58e2f33411467c1950b1a074

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.0rc1-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.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.0rc1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b771942d63fbe1bbff35e9ba3e8b0ae2b359c436e20ec3697fc6a94988831b33
MD5 a5683b5f55b7c534cb1abdba427b46e7
BLAKE2b-256 05fb53a4280de46116b64bc257f1de478e283e0a5a90d8c26d320d49cdc0920b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.0rc1-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.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.0rc1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b9941c71e5f3e0f8aee18eb3b6460f878108f4950932a7b5bd922b4d34aff791
MD5 41c2fe975c4f4e934285f8f79509ee60
BLAKE2b-256 28c7264c7376f9e83378b0c08d6da259929fa17ca3f5150e0a21e08e00f794c3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.0rc1-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.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.0rc1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 8175ea9c2a8751e0125a75b5be12ea901c1702cf8417fcc91899020d44013c6d
MD5 80811fa2994deda6c55b315850dd2e94
BLAKE2b-256 2d2461d2441f5c7037e067a65b569a810f80f733a8a3b7b5caf2915f0f438497

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.0rc1-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.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.0rc1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 e15090cd89930da7346cc073980ee9913ce9d487d412a71703961422745c52f6
MD5 7e3600c9ee36a65cfc44b0ac9c69af31
BLAKE2b-256 a876443984116c34289ea8ee62bc4d86c199e47c6d1a57cab8d2aa74c44b5e65

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.0rc1-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.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.0rc1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d2f203a871bf47ae6c0c9dfdf2648c56ae6f83800b485b8ed4a6b92479d7493f
MD5 11871f1de04d59f31c61e6545b6d62df
BLAKE2b-256 9e243b928d699e8b963214445e96e098d13659093bd7207b841d1ae9d39e08d0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.0rc1-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.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.0rc1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3034aa3c808be8ea9152831eea776371f4d5468e858d51d8ea1a6483581d625b
MD5 730b6ed2675d3a07c7cd3027ce39026f
BLAKE2b-256 fab6a498ce7bc59ce1f6fb8b584bf8f2903b39bcdd0b801f20e5d2b7bd863104

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.36.0rc1-cp27-cp27m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 2.7m, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.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.0rc1-cp27-cp27m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 2f484257efee05f2cec16d9e998ef338b68baa8e791d6aa00a4947aeb201e5cf
MD5 f94f113ca08d634fc27cc5c9f1037e67
BLAKE2b-256 59372071d5ec23a544686520a8dded7aa56834676e3c2bee6ffce8dc18eaa727

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