Skip to main content

Protobuf code generator for gRPC

Project description

Package for gRPC Python tools.

Supported Python Versions

Python >= 3.5

Deprecated Python Versions

Python == 2.7. Python 2.7 support will be removed on January 1, 2020.

Installation

The gRPC Python tools package is available for Linux, Mac OS X, and Windows running Python 2.7.

Installing From PyPI

If you are installing locally…

$ pip install grpcio-tools

Else system wide (on Ubuntu)…

$ sudo pip install grpcio-tools

If you’re on Windows make sure that you installed the pip.exe component when you installed Python (if not go back and install it!) then invoke:

$ pip.exe install grpcio-tools

Windows users may need to invoke pip.exe from a command line ran as administrator.

n.b. On Windows and on Mac OS X one must have a recent release of pip to retrieve the proper wheel from PyPI. Be sure to upgrade to the latest version!

You might also need to install Cython to handle installation via the source distribution if gRPC Python’s system coverage with wheels does not happen to include your system.

Installing From Source

Building from source requires that you have the Python headers (usually a package named python-dev) and Cython installed. It further requires a GCC-like compiler to go smoothly; you can probably get it to work without GCC-like stuff, but you may end up having a bad time.

$ export REPO_ROOT=grpc  # REPO_ROOT can be any directory of your choice
$ git clone -b RELEASE_TAG_HERE https://github.com/grpc/grpc $REPO_ROOT
$ cd $REPO_ROOT
$ git submodule update --init

$ cd tools/distrib/python/grpcio_tools
$ python ../make_grpcio_tools.py

# For the next command do `sudo pip install` if you get permission-denied errors
$ GRPC_PYTHON_BUILD_WITH_CYTHON=1 pip install .

You cannot currently install Python from source on Windows. Things might work out for you in MSYS2 (follow the Linux instructions), but it isn’t officially supported at the moment.

Troubleshooting

Help, I …

  • … see a pkg_resources.VersionConflict when I try to install grpc

    This is likely because pip doesn’t own the offending dependency, which in turn is likely because your operating system’s package manager owns it. You’ll need to force the installation of the dependency:

    pip install --ignore-installed $OFFENDING_DEPENDENCY

    For example, if you get an error like the following:

    Traceback (most recent call last):
    File "<string>", line 17, in <module>
     ...
    File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 509, in find
      raise VersionConflict(dist, req)
    pkg_resources.VersionConflict: (six 1.8.0 (/usr/lib/python2.7/dist-packages), Requirement.parse('six>=1.10'))

    You can fix it by doing:

    sudo pip install --ignore-installed six
  • … see compiler errors on some platforms when either installing from source or from the source distribution

    If you see

    /tmp/pip-build-U8pSsr/cython/Cython/Plex/Scanners.c:4:20: fatal error: Python.h: No such file or directory
    #include "Python.h"
                    ^
    compilation terminated.

    You can fix it by installing python-dev package. i.e

    sudo apt-get install python-dev

    If you see something similar to:

    third_party/protobuf/src/google/protobuf/stubs/mathlimits.h:173:31: note: in expansion of macro 'SIGNED_INT_MAX'
    static const Type kPosMax = SIGNED_INT_MAX(Type); \\
                               ^

    And your toolchain is GCC (at the time of this writing, up through at least GCC 6.0), this is probably a bug where GCC chokes on constant expressions when the -fwrapv flag is specified. You should consider setting your environment with CFLAGS=-fno-wrapv or using clang (CC=clang).

Usage

Given protobuf include directories $INCLUDE, an output directory $OUTPUT, and proto files $PROTO_FILES, invoke as:

$ python -m grpc.tools.protoc -I$INCLUDE --python_out=$OUTPUT --grpc_python_out=$OUTPUT $PROTO_FILES

To use as a build step in distutils-based projects, you may use the provided command class in your setup.py:

setuptools.setup(
  # ...
  cmdclass={
    'build_proto_modules': grpc.tools.command.BuildPackageProtos,
  }
  # ...
)

Invocation of the command will walk the project tree and transpile every .proto file into a _pb2.py file in the same directory.

Note that this particular approach requires grpcio-tools to be installed on the machine before the setup script is invoked (i.e. no combination of setup_requires or install_requires will provide access to grpc.tools.command.BuildPackageProtos if it isn’t already installed). One way to work around this can be found in our grpcio-health-checking package:

class BuildPackageProtos(setuptools.Command):
  """Command to generate project *_pb2.py modules from proto files."""
  # ...
  def run(self):
    from grpc.tools import command
    command.build_package_protos(self.distribution.package_dir[''])

Now including grpcio-tools in setup_requires will provide the command on-setup as desired.

For more information on command classes, consult distutils and setuptools documentation.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

grpcio-tools-1.37.0rc1.tar.gz (2.1 MB view details)

Uploaded Source

Built Distributions

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

grpcio_tools-1.37.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.37.0rc1-cp39-cp39-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

grpcio_tools-1.37.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.37.0rc1-cp39-cp39-linux_armv7l.whl (24.6 MB view details)

Uploaded CPython 3.9

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

grpcio_tools-1.37.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.37.0rc1-cp38-cp38-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

grpcio_tools-1.37.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.37.0rc1-cp38-cp38-linux_armv7l.whl (24.6 MB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

grpcio_tools-1.37.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.37.0rc1-cp37-cp37m-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

grpcio_tools-1.37.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.37.0rc1-cp37-cp37m-linux_armv7l.whl (24.6 MB view details)

Uploaded CPython 3.7m

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

grpcio_tools-1.37.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.37.0rc1-cp36-cp36m-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

grpcio_tools-1.37.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.37.0rc1-cp36-cp36m-linux_armv7l.whl (24.6 MB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

grpcio_tools-1.37.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.37.0rc1-cp35-cp35m-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m macOS 10.10+ intel

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

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

grpcio_tools-1.37.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.37.0rc1.tar.gz.

File metadata

  • Download URL: grpcio-tools-1.37.0rc1.tar.gz
  • Upload date:
  • Size: 2.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio-tools-1.37.0rc1.tar.gz
Algorithm Hash digest
SHA256 48730e9445017dbc1cb6f3e230ff6aeec0fe1086c74fbeabcd52a42bcc18e0c5
MD5 cb6431972facb6e07d93c8ea25060af4
BLAKE2b-256 534eb4d449024017717a5bf0fdbe4c8a5cf2f439664c739b864c77cd8e914bee

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.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/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7f774935d56912b1f034d81e9f55b516cd7b713a8b828a84aaac74d2e2e27c7f
MD5 bbcfcdad4989feb8b4a26e2f07c9ae8d
BLAKE2b-256 02c924bb89f21abdf7d7becc6f7cefbca6e908929ef0ee1731b171be449d0616

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.0rc1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 29888ee299238fe2decfb89115ab1e0c35e9434c59bdebe7022288e99ec52f64
MD5 cfc7a6ef900257049221d3770b07e2ae
BLAKE2b-256 59d7c2e85df98e7f8a930b3eecbf7c8b67d29016eb763047689cfdfb403170d6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.0rc1-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 638a5ac6e0c07541808a5606d8efc523985d6d89f9761dd9ac2b651508a68789
MD5 5a1578c065c777c8c4f3405a4a8c7d1e
BLAKE2b-256 13d7fa18d4c38fe0f2ff3a274a8ee99f150f76955a7f777000b1871f4e85197b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.0rc1-cp39-cp39-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ba02d4515d7ee91b8401295dfa334e07b6ecc8e633444e6f9002b76c72c1193e
MD5 f180e026e0f2b96b56375c3de87787d0
BLAKE2b-256 858ec0a9867d9229afb7caf1c89a67bbdcf821c5a6435c2821ecfcfe1bb0b5cb

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.37.0rc1-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 74372332c550c529c5666abb6299ff2709d1b80158ff43cd935e0c575d28da3e
MD5 0eef48ed7ee0c80e03458084a0332da2
BLAKE2b-256 22d844a3a18874e20d6b59d6de1b6e7a38f08f2d09162db46fc3e291e903a459

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.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/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fd5536553bfb0e17a751fe35f901d3c6700d9ab4768eaa28722c1c568d046b3c
MD5 90bcfa661e2d70df35a57a8e105ff8e7
BLAKE2b-256 55a82ec3887f2fb53122d450d393c2dbca6f4ce3bf1a6797252333f5c9609809

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a6091e8de8b9a4f70cef113bd8bb6a4704f0e26268af57575d4fbaf0082c19ca
MD5 d6e9c64057802ae80cb4918012c782f0
BLAKE2b-256 6e462d94adc05e939cf4dddecdc514e7cbef34024ec348c183a3db31c03761e3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.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/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 030a8a6e7fc8318e118caaa28eb4e6bb4d684a4bb74b837a120bb5409838f950
MD5 e0aca9e056b0ca0e41c04f1738745990
BLAKE2b-256 81048179ce491a89c717085272d29a55bcbaedbc81dbb16f024257c7c88f91d2

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.37.0rc1-cp39-cp39-linux_armv7l.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 1ddc3ebaac4a66c9bede30cffcc2dc1229ea0718d25add9779c80dcf55fc8598
MD5 701f6294ca2b9c07a2f2277917832a14
BLAKE2b-256 bb6cc0d8ba314895c6cdf11dc42856434351a8759cf4115b59eaf3abe0b75d21

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.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/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a8c95be1767a7c863d56bac6a0513d916a3af05dd7653c229f7a5e152e7fd4c4
MD5 926989f7636e4e8e122174745c584828
BLAKE2b-256 164a90399a08f012e9e745d0b0e833854f224d4530a09baecce0876eaba39576

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.0rc1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 cef21443039dfca90ed688145a62071747f6ae44bd4e82cf2fb1fcfd532db7cd
MD5 d6046671c029efb40cbabc60c59121c2
BLAKE2b-256 56c043d6df8101559dd3256af2e3c019b0de89680723cd0292545050d5734108

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.0rc1-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aa6a855e545ae42a8125047938f014d55981143f4e22b57ba62b8453d3afe348
MD5 ed9be740ced5cb5c518feb9ca6bc2a39
BLAKE2b-256 48168576533ed28ccd050bb2d11a953a121a2ae7f0cc8113b112955bbdee230d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.0rc1-cp38-cp38-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 df4ab06095a1a547d11c92a02e3f42fefeac485b47407c6831d6eb14cf90ea7b
MD5 6923031ded3d44e305996c66d32560e1
BLAKE2b-256 9c99fc7591672e8f750bddb1b56acca28ace8b344463ee324cb940b322060816

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.37.0rc1-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 981a858374f17f220914d837b47d4367c266d4c8f0086f799c808429ff3b4702
MD5 d634ca5ef0d600bd4d33d54b977ac76c
BLAKE2b-256 b1ffc385276d7c49228f053e0a8871bf6cff24da2f0ee904cb3d4f1eabae3af5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.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/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1f2c23583223416720ee9bceadc7a0ad91c2db94e85297ada21868507b5c6564
MD5 73ed7339ee09c2d34c5f52a68645b4c0
BLAKE2b-256 01e3a4cf340ce6263b6cb9890935c245fe85f9af587f29413d8e935ebec10a39

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 dedba94e9d81a4a369af8d201d420ebe7d302881a489d7b8662156f1f7a43f50
MD5 59088000dae6e10792d6b747dbfa6c8d
BLAKE2b-256 3a283932c9082aba9d0cf5ed01d9c519bde29987ba184d56cc78d4e5af65e2de

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.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/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 fc63575a728678e47ac78688f7b2b4950d87c00051e90f109a24f96d220e2d17
MD5 acadbffc6f33c5755e6c820ab50009e6
BLAKE2b-256 72da2338d74bd1d7c5b644aabe34b4df9df25e180c4efc4291efdc8b313711df

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.37.0rc1-cp38-cp38-linux_armv7l.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 506b6431ca80f2aa817852c6d0282edb67825f582d22b5dda88a02c7e42e62fb
MD5 3799db121eb4878163c6a6d3ce88eae8
BLAKE2b-256 ae44bab5e10094c31cd9cbfbccf2919cb855ac172c24fbd28b2b211845a45a4c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.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/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 6ccb43096c090d0fa39a50581b7edd6d1deafc97a84f8edb49deed6fcb8b5344
MD5 2123dc94dbb9287fb37d06cd39fbe8fb
BLAKE2b-256 7e2ada53ec0a19e5db8be7c31f991a7b6d4c126cdbe5f4699510c46862dbfc54

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.0rc1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 5810230f793afc9a396be4cb6b3aab80492b6daf9037680b934c11f4927837db
MD5 80b9d78e91cd2cc73099b63090f6ef00
BLAKE2b-256 e7dfa2584aacbcebe42a20154f7858d38afa7ed07f03bd411f6c08a4df910de5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f7c027472f27ac22edee51f149a870dc978ed6a9ea33f9ba65dea28dc9eaaa7b
MD5 0f395c6d15dd9db65077e4fd1c446843
BLAKE2b-256 89da0f1a38a4f017c6bad2a8618b6bc3956f184222c1fe500eebab8858243575

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.0rc1-cp37-cp37m-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 082c58b211cb7c1957a546161edb5f6b8cdc706dfb32259f99769e96f3f598dd
MD5 2fb460b0d06c121133c952bcec1b4978
BLAKE2b-256 6443dc96b76de3beecb455cb3a47b1c7e425cc190d061b9207d438791b84f7c4

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.37.0rc1-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 169bb6ddf42d10d83af2f05e5f6a12993e54c3bb95b04e0230d33ffeb500b133
MD5 0fca0987f9d4ca764bc2a5c3bf8e15df
BLAKE2b-256 1291b3ab72e78d25f305c0f4467e1c62616444d55dceb8738dc5a4da05dbea2b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.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/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ed94b9ea823c200118a94d2f416f8ed173ee8b66eb10d91d9292db5db735fe4b
MD5 3c8a29b3030b867da937c487b1dfa752
BLAKE2b-256 8835606a854743b53236af4f5f5aacb8550935ce3028fcc3c281b8c70f186be4

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 29e8cb4c9adc8b465b375065e4a4f9866becb971a4c443b6eaf53ebcfa4e72b4
MD5 e304a6b5aa8ae59f089d64015a6f759d
BLAKE2b-256 acc5f29ebc78974a966080b31311708a0aa212c679231e59b908f0aebf3e6b2d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.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/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 f659624cd21b5af2cef0882a98fd2b514225826d161a2e3e6b9d176ad109dcf4
MD5 728faf49401aecec6cea43e3b33c2d3b
BLAKE2b-256 2193bcb44c2c80872a7d0d8eeedea2e998dfc212d0c24b38a0056228a2db960f

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.37.0rc1-cp37-cp37m-linux_armv7l.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 06c103df2d4bbf512df01da075b32c99259b25c802dbfd4fde49cd0f907b07bc
MD5 54efe6d7e959dccb68788f149ac9ec83
BLAKE2b-256 5eadd5cd4afb3d950a090a6f5fb33cbdbb438e02da26c89cd24133ec9263bfb1

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.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/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 b59502cb724ecf0cb90c8cf6ae0e4d29852ce0cda63b7abf1ea6d3d584ad7482
MD5 6ecfb65b9b945b56f2abc0402472286b
BLAKE2b-256 0af0a648238c4e25c025b6884cc3e86654857013065a89f237b7eaa98bed26cb

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.0rc1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 39ad5f73c3ec9749331c76b941eb5231f7b634b3983f918c6a56f6aa7d40ad3a
MD5 4c0453b52da3c66e7b17b5a8059c4b97
BLAKE2b-256 74c7384503002f7eec0ab2b9fec866960911262bce23f4087648ab3fc553f91c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 878ae514549cc406f2f64f4af4e865712110e690471626f71314d88cf1c07dd4
MD5 f97741f2b0adcfbefc0d38fca8c58bd1
BLAKE2b-256 bdf09951a7f9d6b689024b99d356913b02f665003c543992d4af0e27a6e84335

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1b24afed2bb0a863124df972df0e3e9a276240fbe160a614ceda7ad194bdfad2
MD5 53c2b1da52be271910d005752727353b
BLAKE2b-256 150ad1a742737ad4cb8cb08806b31999b959abfb01a643d875e99acd14798c4c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.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/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e9b7bb4fdc8676751d8aec5acb7a7c48ec0748b724acffba5c5ad6decade3755
MD5 4fa04609efee2f3b95107d7055cc4c51
BLAKE2b-256 e795ad5bf300a3547aebe3f7f45ffffd20d94bb7ade41b92b3feb58486ad2d66

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c1bd95afe5d5ef6515f2070923df7bcd8d5925fb5870c7123187de2f512d163d
MD5 778e91dbd2ee2b29add3471e665c2795
BLAKE2b-256 a902f59f1cb270e1d90f83f8cc7af512d0f870b22431a3d43b007e81c2e9e81b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.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/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 aa56c90925c34c24d7ae72f1640eaf147a873fff4d417c1cf3c2495eba3fdfb9
MD5 6f97a19afd8571fe3a7bbcf2d2dd7ffc
BLAKE2b-256 b844ed8a1e6dd1c00c00fd698bbc3c5e8685e642d86d6185656f10fa7e00f8d7

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 9ac18ebb0f7e59c17154e676d62e942daa094fcb63f38f62b2b9334abc28e846
MD5 3c12603a2179de5c81d55042c41f4fe1
BLAKE2b-256 6dd2182f2400e1f166baf2344f6e4c093bdcb44b41127b5acecc510a58a513af

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.0rc1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 f14fc51a0b22ac4448b8f2ae2795c1387cdc5462590b399ba49221e56e30d586
MD5 9e3fea7cd06ab52f4f93aecbdeb5befa
BLAKE2b-256 1681302850250375767e8199ed0b44ebcc822c405de6b20fcab92ac98ec8be71

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.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/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 aceb7f2c7b3da66891b8447290e7abd7da514f017360037e8adf94f04d5599ae
MD5 fe7b928ea34fe95dbaef685bb49ee6d6
BLAKE2b-256 34126f4f6a1c02e574a7570f4a78e726ddfa1ae672dc5ee4745336c24106e6ce

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9a353ba1fee7789a0974b09774fafe8b7962509e7928918291291c2b030c45e1
MD5 0458256b2a086d050e604553da489425
BLAKE2b-256 098464a03195fa9b1805b0feb577ed2b108c61ac0487b157c6ebd04b073ce4fa

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.0rc1-cp35-cp35m-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 af17bb043fd1f52441a73d29d6cce108065ef5d8cf5c801c3ee1dd6f64b067b2
MD5 a7d9e56a23327f9cd17f350e7eac04c7
BLAKE2b-256 e6f7f0f121066f569f6e68f8411ff6b27639a4964f329a592a695dd861459119

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.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/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 586477fec90784e4616a852e5268f09603c7c88e1823753ccc4baaa47773a7b6
MD5 1303cd193a3c51083b6b64156a0acf45
BLAKE2b-256 d6c90041359b93979c95fc7cb76cf1d4f1d4c48064589ef270b30f2ec0a7fdaa

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c1f46fe7c629b7b5d7a8359fc28e6cd5b35b33d1abb63e8eab1434a04d15f29f
MD5 9eca2c0b4c1d6eeaa9ff93cb7f0bfa64
BLAKE2b-256 a29bb5df61a71c0b80ea99a4559165e119d73082a652c3e53bd574aa344682dd

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.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/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp35-cp35m-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 2b38af410aacec5f6a1756714b1bd3fd6f873218d9adde8e27f2394d0bf0a460
MD5 8cafb761fa3b5f0dcf1dd2000bf494e4
BLAKE2b-256 07585de916cf65786ae3f85f49783a506716ea3df4d9da75948df981616df693

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.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/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f7a5e0b0e3a4ca7e970f736c7d67cf8a9e9de1a67ac9dfef45c9177aced72ea4
MD5 96ba70f83cf5eb73871d9e1239caf6ae
BLAKE2b-256 a13c92fa487a780acebbf913751c103c5665275b810ea3335d9653b1dda67b55

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.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/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 aca4b4f0c48c3624f451b6379ca3bf99dfe766de88ba258a73a728ee8f9b9b67
MD5 765190535cc9e1f2191088e7d987d107
BLAKE2b-256 e671cc51b21233c1ea442d417adfa46793ba5b2a8e64fcf385b18ddddcaa2aef

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.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/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 9aa19f37dc0cf0d4b2e6ca43cf4104415c943e3f4cea35828426126855a41516
MD5 64570c9829c623ce4584494f217d863a
BLAKE2b-256 16181ba9dc73642b696780a35f55c848bc222be5395b2f5833b2b2e182bd3ca3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.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/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 61261a0820ee60dba35b6bd846de9fc911b55747c46067aee1a472ecffb9b2ad
MD5 dbc607da2248eff60d346363a022df5d
BLAKE2b-256 5d3ce8d0eef404c5c4e3ff47b1d8300e75c58356cb8493c6b2843ae12077babe

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.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/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 58a829bae408e678d0a53a18233c72390d1d3987814617b3286b981f491f8972
MD5 37e12931282472ca7ef5301ccd98fe81
BLAKE2b-256 2c42418c225ed0a139839a071ca4aad81ed4cd1024811404a9a4b29932e9beac

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.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/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 40d261c4a914d7623b79dfd5ac5363ef05f6bc7a34b161afad1d58805deadccf
MD5 87ae1b8a9f007467d0679fd735fc25b7
BLAKE2b-256 15322db0155313ace03efb69848618cc7ce71c7f78224f5222962cbe90dfbeb3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.37.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/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.18

File hashes

Hashes for grpcio_tools-1.37.0rc1-cp27-cp27m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 9476960f861b5464d6341d803f1e4b432016f0abc0a20fa5f4940c168f960066
MD5 494255bb4ffad95e2aa81c600966b790
BLAKE2b-256 0745816eb539e0bd5371224eb18386b34f5226d68f13d4133e9beb2a8e420aac

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