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

Uploaded Source

Built Distributions

grpcio_tools-1.34.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.34.0rc1-cp39-cp39-manylinux2010_i686.whl (2.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

grpcio_tools-1.34.0rc1-cp39-cp39-macosx_10_10_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9 macOS 10.10+ x86-64

grpcio_tools-1.34.0rc1-cp38-cp38-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.8 Windows x86-64

grpcio_tools-1.34.0rc1-cp38-cp38-win32.whl (1.4 MB view details)

Uploaded CPython 3.8 Windows x86

grpcio_tools-1.34.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.34.0rc1-cp38-cp38-manylinux2010_i686.whl (2.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

grpcio_tools-1.34.0rc1-cp38-cp38-macosx_10_10_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8 macOS 10.10+ x86-64

grpcio_tools-1.34.0rc1-cp37-cp37m-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.7m Windows x86-64

grpcio_tools-1.34.0rc1-cp37-cp37m-win32.whl (1.3 MB view details)

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

grpcio_tools-1.34.0rc1-cp37-cp37m-macosx_10_10_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.7m macOS 10.10+ x86-64

grpcio_tools-1.34.0rc1-cp36-cp36m-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.6m Windows x86-64

grpcio_tools-1.34.0rc1-cp36-cp36m-win32.whl (1.4 MB view details)

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

grpcio_tools-1.34.0rc1-cp36-cp36m-macosx_10_10_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.6m macOS 10.10+ x86-64

grpcio_tools-1.34.0rc1-cp36-cp36m-linux_armv7l.whl (25.6 MB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

grpcio_tools-1.34.0rc1-cp35-cp35m-macosx_10_10_intel.whl (4.2 MB view details)

Uploaded CPython 3.5m macOS 10.10+ intel

grpcio_tools-1.34.0rc1-cp35-cp35m-linux_armv7l.whl (25.6 MB view details)

Uploaded CPython 3.5m

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

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

grpcio_tools-1.34.0rc1-cp27-cp27mu-linux_armv7l.whl (25.6 MB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

grpcio_tools-1.34.0rc1-cp27-cp27m-macosx_10_10_x86_64.whl (2.1 MB view details)

Uploaded CPython 2.7m macOS 10.10+ x86-64

File details

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

File metadata

  • Download URL: grpcio-tools-1.34.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.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.5

File hashes

Hashes for grpcio-tools-1.34.0rc1.tar.gz
Algorithm Hash digest
SHA256 4831947b396da268e5e3dccb8e3b5b81331ac1cd71b03df7aedea1b3bb719859
MD5 2f7a02c9334a45508176504786bee4e2
BLAKE2b-256 a581cee6c2584e8e321ddc3ecc08f297d5a1400488c2f1ba40cb423747f04ec9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.34.0rc1-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6980acac4f71cf0bcfc3b02e4982f26683f1e0de0a48cde6bb0e273a1679c8ef
MD5 723a41a30eed978f13658d6a7fe0bfd6
BLAKE2b-256 b5223fc988333fd0b3ab1e9bf7b5d65d41e9d1ebdfeecc245e7845dec2ba35bd

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.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.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.5

File hashes

Hashes for grpcio_tools-1.34.0rc1-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e58c8b71c13fbc421f1d0fb116160a70e5293fa46e637383b2621a607ee27d26
MD5 ffb709f1a43507a38bb8ba5ef01f9f46
BLAKE2b-256 316b54fcc002ed2651c5f86c0777c5d122b223921cd4fba9760e1a2357a6ce9a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.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.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.5

File hashes

Hashes for grpcio_tools-1.34.0rc1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 96f81c3df05162029e03d7f937a2028608cb090e2319d42e11674f5f66e055cf
MD5 91be0c1a5a60e57e91e9e657905839f7
BLAKE2b-256 2639cd09f944eb1551c9d3ce3fca34d897fb59df0c6d7f5a6d87a9d7f7cc7671

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.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.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.5

File hashes

Hashes for grpcio_tools-1.34.0rc1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9c1ae19ed9abe40ca079efdf4338dc45fb8fe19d259cf1bbbc35b7c9a506cfa8
MD5 af86a793a7dc7b722fcf38ea012471c0
BLAKE2b-256 934e225d6c4612752ab23e8607b04f257375ece3b1eec7a72cf3d792a3b40a64

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.0rc1-cp39-cp39-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 2.1 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.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.5

File hashes

Hashes for grpcio_tools-1.34.0rc1-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 c11adfdd58218e9637b3b73cc33440fd57bb537c6205b9f4413829a620809bcc
MD5 3f5a66006e3839005234e2a367a46d46
BLAKE2b-256 8a820261909cc37dc567d778c9a42e0e420cb06493fc8cb635e8eac2be4ccc88

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.0rc1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.7 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.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.5

File hashes

Hashes for grpcio_tools-1.34.0rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 75c102e4db8599edf08c417766357b1bc1328067965eeb95889862c76efe942b
MD5 f48be0259705560683ba0befd1fd22da
BLAKE2b-256 49baf650a02d6d1dc2dd834e59d4e28f9b30d42232e1869a78e1ba30d86c8e12

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.0rc1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.5

File hashes

Hashes for grpcio_tools-1.34.0rc1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 df3074eb2e73151810787670b321d0798eb6b1e319c04eff7eea56ecd5e1070b
MD5 ced102bf182fb748f2809abf029b0bbe
BLAKE2b-256 4f1b0d5959da3591f2227bf69a97508e6648329f1f8029b14d13f70ab9fe7051

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.34.0rc1-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 10672bac8292e24a0a71f068164ff2be4c1adc965f2785affaf0ce9e46c6b476
MD5 3a8cf3cdf59ea0528731ecdb49f522a4
BLAKE2b-256 14eacbce814a967512f01f57f3e367fe43147b0ebeea0983c862631c7de80d06

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.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.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.5

File hashes

Hashes for grpcio_tools-1.34.0rc1-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bd531d4cf5229791e53a51a8da0e61c91914853eb078c9012346a6909422d282
MD5 0c5a6eb4d94e319f8aa8b0bbd9c43c7d
BLAKE2b-256 73720b68c6ebe2032f431b19b07e68e23d1183e3bacff5ec17a8b2e633e2ef84

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.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.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.5

File hashes

Hashes for grpcio_tools-1.34.0rc1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 13ae4ea959942b84acdbe5dc6e3c9d2e0a581c9f88eca6601cb8474bac910eac
MD5 248aa6132975e9fa5198d2cd8f4ca193
BLAKE2b-256 4d4e5583629bc6c05f9d82cc9a9a68a32b5e8b26e9c1f6c4184877f1a4312d9e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.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.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.5

File hashes

Hashes for grpcio_tools-1.34.0rc1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f962a9881d8046db1e7de253af47831d96a1768dc979463c6cf81f5f02696e68
MD5 86e29925c6d7a517b23b43a957bc291a
BLAKE2b-256 66170b104a039a525f4e2f1c7779ae45ba431764a581ba5ba5ea9dfd3ec201fd

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.0rc1-cp38-cp38-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 2.1 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.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.5

File hashes

Hashes for grpcio_tools-1.34.0rc1-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 af66f042073c9f54a3c1677410ce90215e5c1e8c1c369c54fe4dc3b057e7c36b
MD5 a4ca01a3bbb9689342fa8d3cc774c3f0
BLAKE2b-256 ab5bb20d923a5633c822980e8b2d0d3220e3582d29ce9d906a25267252471cf9

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.0rc1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.6 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.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.5

File hashes

Hashes for grpcio_tools-1.34.0rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 30e3ec4caf77df6f9288cbd31e807f44ee2ce28b667cd7b9b587d741918f15f1
MD5 91442687bf572001405ac10d32ada8c7
BLAKE2b-256 1f22d1c2716a154b2cfbfc425bdf4f8a2b9100f409f44eead08905a5a10bc6d3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.0rc1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.5

File hashes

Hashes for grpcio_tools-1.34.0rc1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 89ef08ced204e22d0c3cd33105f40f0ec5b536bb650edf7c1791743b9b5f44fc
MD5 9892b310f39f82f03a7712e7ae52e0b5
BLAKE2b-256 58ccf38119f1b868bb15c3e0aeef622f4dc335cb04d5a05c58cbafaaf0b2cf0f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.34.0rc1-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f7d6fbc70ecd5ab2f397162a7fa055f3c63c7dc11618dd395d79721fdb8f55b7
MD5 445afb9a5beb30648355f6e8158cc59e
BLAKE2b-256 553c948528e79557a2368553b5e06316137c1038c62bcd6878eab579cb43bc02

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.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.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.5

File hashes

Hashes for grpcio_tools-1.34.0rc1-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2eaece615837c1a325f6d8957f60e82b1e60f2aff9b68b96ddcca48474b33aae
MD5 e9ca0ce33fac9509f3cbe95a06016b52
BLAKE2b-256 7ab61a04245ba27ca6202c93b6c617b7d5054ec865a3f75de61d15faa93af50e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.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.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.5

File hashes

Hashes for grpcio_tools-1.34.0rc1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d77d41cc1c7cf253dbe66407b8c9cabde3100a19f3e6ea1e847f0d35c5fdd770
MD5 cdafca21b39a931d418d9ed625e970fb
BLAKE2b-256 0537a52e2d3566a214e864e99b24f6ce3e34cc8ca08c1738a1d521b9a96366dc

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.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/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.5

File hashes

Hashes for grpcio_tools-1.34.0rc1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2ee3e0a8f3e860dc793f65b30c474619ccdeca641faf439b6943f7b5b9a01b40
MD5 65f1f3c7083f452054091a53a1591372
BLAKE2b-256 8a8f7cc2dd0d53e86b8da0968efeb7119977a24e45e21c1fdd6d3629972fe726

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.0rc1-cp37-cp37m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 2.1 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.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.5

File hashes

Hashes for grpcio_tools-1.34.0rc1-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 1f96eedc3ca3c837b706c72758b58746492d5db813eb929dba45577ffc7f2926
MD5 3534a888300f82e416dce7d1202e2b76
BLAKE2b-256 c4808662586e2c1010a51d341f3ac511761f6e50308224a65dae76722885072d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.0rc1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 1.7 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.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.5

File hashes

Hashes for grpcio_tools-1.34.0rc1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 9d5d164636d365a74efb566c3e73896ab52a592e45d062fd7a41db87e83f1c0c
MD5 1c9fa3737c5e2d7fc46244a4f276de39
BLAKE2b-256 606e6495e3f313124eea80f4d956a97eaf2adbf5ce5d03c96b64d074e1f2d37e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.0rc1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.5

File hashes

Hashes for grpcio_tools-1.34.0rc1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 0ea9e0904ec869eb17ad0bc93969c36ca2cee74921f8110ba8bab7852032e3f3
MD5 90f537a029116ae2d7b07e6d759342a3
BLAKE2b-256 a40b20cba938aae891abd2ce68981b54fd99638b20622a0b8bbf13b346b15ad5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.34.0rc1-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 670e49b2b3522b86264f0650bca0405084f5f8c0d920d317de5238b60e593440
MD5 6b49c2422db286e89f92185d4fddf3ba
BLAKE2b-256 0b2773a88b7356543ae2dedac0e800ab6b6303ed9dc33e619c11843f7d84c6d0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.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.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.5

File hashes

Hashes for grpcio_tools-1.34.0rc1-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 566e003ee4daad8d0700b58bb908f4df338e6ea472a089dcc24e9d98e67f7114
MD5 9df2a1ef037888fb3a106c10ce0f2189
BLAKE2b-256 83f988526ef946de10116c9747ec4398b33603fc0e4283ab8b47de9da4508255

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.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.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.5

File hashes

Hashes for grpcio_tools-1.34.0rc1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 beaeacb19751d8c55a4db671061f42c46b28f2d74ecf4fbbd79248f6b2c0dc08
MD5 e7a37eb69513c88b8cb26450fa0c8891
BLAKE2b-256 40e53ebde1d682851ce729f53f33d8de1d32b43973908f74ca32802a59f81693

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.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/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.5

File hashes

Hashes for grpcio_tools-1.34.0rc1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b4b7b92a5a5c43e5f645d4b7a081b15ea3f74a3ace60779557d163f38b1c1376
MD5 5ab8176c8b651fb1e65c998996885449
BLAKE2b-256 a2d2ba5634c3d01bb81d2ce6d976741401b5b63208566622926e14c6b3135712

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.0rc1-cp36-cp36m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 2.1 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.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.5

File hashes

Hashes for grpcio_tools-1.34.0rc1-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 4442297004ec953b80183daaaac3ae821804bc13412c4fe48a8cf55582e12fba
MD5 2d6728f70947553514e98608be164a72
BLAKE2b-256 891760056a8e24d87bf450ac478ee9d16563a47abf4b3c7a3faf70510681ba78

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.0rc1-cp36-cp36m-linux_armv7l.whl
  • Upload date:
  • Size: 25.6 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.5

File hashes

Hashes for grpcio_tools-1.34.0rc1-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 b623879c49a1e97628f45b23045845416636181134da123e3e99d44da775dd53
MD5 e616bf9a6a3084013928182971bccbd2
BLAKE2b-256 82125910d0465a51817bcf696862003c9c97e6523ba434544c352749c6f58c60

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.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.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.5

File hashes

Hashes for grpcio_tools-1.34.0rc1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 c6852f5eab0c7a70ec08b97d5c9e435231b2cbe05fe96aa6a85d079eb4208327
MD5 932cf2be41bc8b646e877e67d1ab7e09
BLAKE2b-256 d1478cfa35c2b60f9837e8ae76858203a464524efcc2f585183b337e4d740f30

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.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.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.5

File hashes

Hashes for grpcio_tools-1.34.0rc1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 2e7b4ac6aa6c73a8768d2cbb50d9ef42fdf5073861c2f422538bf0277788d162
MD5 62b9b8c98a2c34deb8263cd120e2fc7f
BLAKE2b-256 5ecc8a46919411e5d0257c309e9b97a5bb0d2796960e41ce8fc2ac84a7892bc2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for grpcio_tools-1.34.0rc1-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e47f85141eb49bafac37b17e2ae61bff556aa0cde69ae448a237c9e9ff0ff7e6
MD5 065ad6c46c9c080a9a5f0425b96895c7
BLAKE2b-256 b1536ad989480497d1c470b33449371adb0242f7e5e3778027410f3efff13722

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.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.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.5

File hashes

Hashes for grpcio_tools-1.34.0rc1-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 eef812673fa4d574ebf4dd4e0484e8879753e3c39eade6b72600091ee037437e
MD5 99a536148bfed458a6ae86848cf6985b
BLAKE2b-256 2544e06665716eb92a515cd2caaf458830a3af6afeb2e09ad04c83d5b17338ff

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.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.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.5

File hashes

Hashes for grpcio_tools-1.34.0rc1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0bf81d151551d75ec5342a234f5644fc5cacb90de8bfeea5838a426fab149980
MD5 8e100ec8017af56f880e357b02768a0b
BLAKE2b-256 5a9aa3ef96961952ced9d19445ef831eada117f5e76b3127e861d9da1045c5cb

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.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.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.5

File hashes

Hashes for grpcio_tools-1.34.0rc1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3a006d281a995081ad16f651893e1ec385ba88a414ae76f9d5931dfff55eb1b5
MD5 6d8eb327fcd959ea4cb440298aa0af16
BLAKE2b-256 2643c02b3dee0b91778d8002e76a7d723a2acdf25b0f084e21d1b89924d51a7c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.0rc1-cp35-cp35m-macosx_10_10_intel.whl
  • Upload date:
  • Size: 4.2 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.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.5

File hashes

Hashes for grpcio_tools-1.34.0rc1-cp35-cp35m-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 e74570701d804371b1513b14351a0507e61fbd371177aaeaf907de4f2331b95a
MD5 946c9406decda00aaf14f2d1fe9d4e5c
BLAKE2b-256 c00db3b5b8443fb52ef7dd9b4e2055190e65e5a5af0ec741c96e4ac72c5262b9

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.34.0rc1-cp35-cp35m-linux_armv7l.whl.

File metadata

  • Download URL: grpcio_tools-1.34.0rc1-cp35-cp35m-linux_armv7l.whl
  • Upload date:
  • Size: 25.6 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.5

File hashes

Hashes for grpcio_tools-1.34.0rc1-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 963ebc2bef87944b4fb91e09c9c33f3363d99d305df44d72cd524bde06dc4bb1
MD5 60e5155457b8a992548d62e325d47195
BLAKE2b-256 6fb09f7360a782299a05f36523ea3d22b4ec6ac65ffdc2dd370b86319e3e7389

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.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.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.5

File hashes

Hashes for grpcio_tools-1.34.0rc1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 841678a8e3ed7d1e9ebda51fd6041f9e2e5996bb88be68d5d4589a43ee5c2d4b
MD5 52a8eb0be967b5b31e87c3a2461a0544
BLAKE2b-256 bafea84f090798e3d2c23b033ac697bee7b5a165e0c0906f7292d3024d85fe01

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.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.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.5

File hashes

Hashes for grpcio_tools-1.34.0rc1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 21e2dbdaefe16b1461564e04e826bf9b8352c8f4bdb849bea30596be18fe5028
MD5 c7f42a096160762644c1ac174073137e
BLAKE2b-256 1695acba3e01cb59e4eef6e87aa07d68fc7a54ed89bbf902a39d03b623a510ba

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.34.0rc1-cp27-cp27mu-linux_armv7l.whl.

File metadata

  • Download URL: grpcio_tools-1.34.0rc1-cp27-cp27mu-linux_armv7l.whl
  • Upload date:
  • Size: 25.6 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.5

File hashes

Hashes for grpcio_tools-1.34.0rc1-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 5abbf382e790039826ca265e3e59bf563d3cd485fb1fba44c6b5c6c745229d05
MD5 7b0ed8425c745cf960c8b6288b1c07c5
BLAKE2b-256 f5c1f91721ce9f151294075f64bd8830aca8fa6d4eb79f08eec92f9bee5f4e2f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.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.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.5

File hashes

Hashes for grpcio_tools-1.34.0rc1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 c84eab49d05777624709cf5c07797186df4ea0e21ddbf8bdd17c7b2d967f71d9
MD5 9c4dfc69902d7b4cee8d55874b6cf804
BLAKE2b-256 517924f588b2e49d1f6f33d3e85a84727df156276d420d6592c5eed71f2a7db3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.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.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.5

File hashes

Hashes for grpcio_tools-1.34.0rc1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 9d8e4681685ff877b9cb22745e3209e56a9f4940fce620d93505db62415ffa29
MD5 4ec4ae0514121e9f652b3257e05c2d7e
BLAKE2b-256 82608967cceeea3fcff852c4c0119dc844ba5f7b463bb250465eddafedd31935

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.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.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.5

File hashes

Hashes for grpcio_tools-1.34.0rc1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2d756dadd28ff8c754d7412d917911f91ba8286a840d0bafa3644caa280ed2a1
MD5 6889da3d1eb72ed5b4e5f32c944d2057
BLAKE2b-256 5181cefc488b3d82953ae35a3ede9d02869636dba34ebfbe96f9a0cd056f91f4

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.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.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.5

File hashes

Hashes for grpcio_tools-1.34.0rc1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b48a3b71229890f9f463db9c74d1772e0e725c6e5f583629943d0fe028d35ce8
MD5 76cd9a68ffd9452d911163e05b8a94d2
BLAKE2b-256 5949cd8cd2897fd8fcfdb0319bcbd2051f3ea23dba7548de086d66279c67fd56

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.34.0rc1-cp27-cp27m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 2.1 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.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.8.5

File hashes

Hashes for grpcio_tools-1.34.0rc1-cp27-cp27m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 f09febc84e359a438688771ab7e3b2ca12fd50b7847e740a84bdac9bb4bdd784
MD5 89ceac5b459deb53ffd638c64ae82878
BLAKE2b-256 9aee7d36438cc964d7a974496429b3f02bd21bd38280e59b9f4b9416496f1d46

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