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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

grpcio_tools-1.38.1-cp39-cp39-manylinux_2_24_aarch64.whl (24.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.24+ ARM64

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

grpcio_tools-1.38.1-cp39-cp39-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.9 macOS 10.10+ x86-64

grpcio_tools-1.38.1-cp39-cp39-linux_armv7l.whl (23.4 MB view details)

Uploaded CPython 3.9

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

grpcio_tools-1.38.1-cp38-cp38-manylinux_2_24_aarch64.whl (24.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.24+ ARM64

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

grpcio_tools-1.38.1-cp38-cp38-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8 macOS 10.10+ x86-64

grpcio_tools-1.38.1-cp38-cp38-linux_armv7l.whl (23.4 MB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

grpcio_tools-1.38.1-cp37-cp37m-manylinux_2_24_aarch64.whl (24.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.24+ ARM64

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

Uploaded CPython 3.7m

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

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

grpcio_tools-1.38.1-cp37-cp37m-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m macOS 10.10+ x86-64

grpcio_tools-1.38.1-cp37-cp37m-linux_armv7l.whl (23.4 MB view details)

Uploaded CPython 3.7m

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

grpcio_tools-1.38.1-cp36-cp36m-manylinux_2_24_aarch64.whl (24.3 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.24+ ARM64

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

Uploaded CPython 3.6m

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

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

grpcio_tools-1.38.1-cp36-cp36m-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m macOS 10.10+ x86-64

grpcio_tools-1.38.1-cp36-cp36m-linux_armv7l.whl (23.4 MB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

Uploaded CPython 3.5m

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

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

grpcio_tools-1.38.1-cp35-cp35m-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m macOS 10.10+ intel

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

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

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

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

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

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

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m macOS 10.10+ x86-64

File details

Details for the file grpcio-tools-1.38.1.tar.gz.

File metadata

  • Download URL: grpcio-tools-1.38.1.tar.gz
  • Upload date:
  • Size: 2.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio-tools-1.38.1.tar.gz
Algorithm Hash digest
SHA256 cd85f58038b92e1961f8127d79691e84e151390d35cae73c4c0cbe2042f76b77
MD5 fa44a9673d9b6e06db239fd45a9fb83d
BLAKE2b-256 22d029684a35c0490bdcff75aedb58864b5fcc0e931e12e7286ad6eeea2c20bd

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 156eb516564b7a3d1ca0877bd8edcc3f0b797815445c1192df1e7e8db2537601
MD5 37992175d50807c6f8e17f7242de28e0
BLAKE2b-256 8d6331e6ff4decdded802f08d4db5de5293ecac044a572647c0d095d700cc222

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8226c1b44d7aa519e2ec09889fb4d39bd7b52b7fc768ce400cf9eb7aa101d419
MD5 3883948686948564f6d5f569ffb1612c
BLAKE2b-256 e4f2d416bca2a0993ce01386d0a35c6778a85e418c73ada807cc6a5df296449a

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.1-cp39-cp39-manylinux_2_24_aarch64.whl.

File metadata

  • Download URL: grpcio_tools-1.38.1-cp39-cp39-manylinux_2_24_aarch64.whl
  • Upload date:
  • Size: 24.3 MB
  • Tags: CPython 3.9, manylinux: glibc 2.24+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp39-cp39-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 dd1edaee80cce4149b04c8090fd5a93534b7eaf83c0dec747be0d2b738210598
MD5 ef6c28fd1edaaa26e29bc016aabd8d75
BLAKE2b-256 b9c97e5cd3d69e835b3087680c7609adf820a17d78386fde55081fddeb0ec6dd

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.1-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c0a93efe5fdb27618be78a34c8a2320175b2c5ccc53386cfe1799cb8fb1499ec
MD5 f20c76536546597386e4768c707d9b36
BLAKE2b-256 44f70cc919bde2f691400f59506da12ff21e9092f4034ebdc9e7c772f037f997

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.1-cp39-cp39-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 09487050dd3e297b4107821680da023f7db332e02cc9db03c7ced8873717fe4f
MD5 6f7c9f1493b97ca01121d0870996cd01
BLAKE2b-256 38b1e895241c2c4b14b9f1af28c88fa00f13ee85fd412a15c6cd573c75466c63

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.1-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fa4956ed0d72b3d9eb4d3a4b2180bf4cb368a6246b93b2ef6367e74cd32067ff
MD5 410e1c95ce97c2e554ddda34d93fb7db
BLAKE2b-256 47a581e8e369fc499afa123dc90ef1375d3bb655643a1ac479a1ddd8d9b75ee4

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.1-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/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 58920d167a0414156b9c6b91816c5ce2de35fba25d068d076e3f5ed12cc535cc
MD5 9e139530b8f434d07bab08261aaa50f1
BLAKE2b-256 69318bc90df704d16bfdc0635432f350ac9cad9323bf8a59dcf1eb72cafb8cbb

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.1-cp39-cp39-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.9, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 48424b77cae16859e39e31b37d3b1cb54acf12b70a903a5494f8d352bcd5d733
MD5 fe13b06e364d294de63acf3c3a266920
BLAKE2b-256 70ef78a87a069fe619f90d0d2f051ffc0a05b8e89fa3895a13cd242d660ac8d1

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.1-cp39-cp39-linux_armv7l.whl.

File metadata

  • Download URL: grpcio_tools-1.38.1-cp39-cp39-linux_armv7l.whl
  • Upload date:
  • Size: 23.4 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 2fc301ac4c8e39c741e31bdf8594448c5e05d84b37373c5c2308653da7f74d10
MD5 d641074d2176350eeab6d567326977b1
BLAKE2b-256 9e189ecc7ce82806c56f4d54e56607c962e0ec32e82b47e0e28f5cc6c80a6338

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 18c710f2be5ff7b819898af3b6821b6d1853e1b9abd8d133396483e201fcdece
MD5 a9be5962da51cec6c3461d3d1da84c3a
BLAKE2b-256 927a7efe1a3fce125e690284534141872e8738efb13ee5f6d2d2b8238fe4a9ef

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ce99acf886561ad704ea9f4f5c973f42389b3522a507baa5ad78624af92231ec
MD5 99df06512bc3aca385ed8d8489b56628
BLAKE2b-256 4fe56e6e778044a4e82f53dd24a73908564b66d885b774bc5cb71c6f9b8415ad

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.1-cp38-cp38-manylinux_2_24_aarch64.whl.

File metadata

  • Download URL: grpcio_tools-1.38.1-cp38-cp38-manylinux_2_24_aarch64.whl
  • Upload date:
  • Size: 24.3 MB
  • Tags: CPython 3.8, manylinux: glibc 2.24+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp38-cp38-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 ed41f0146540f6b48ac8d9a3f45cab5f8b0721062f342cb006d1fefafae811e6
MD5 29e9172f696d6c6537fb2ce78b348ce9
BLAKE2b-256 2c2ac6426502e5c2d87bb722553c55cc06852990210e56f0ab3294a593e52a16

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.1-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c71126f5c55f8e7d822cd39038da1fbc52131d5ad1831565555a1f0148508c21
MD5 34e9310c30bdbed82e06f94625ca77d1
BLAKE2b-256 869ea4ee33ba57fc25f0a44435ec1f9389a4ea08433ed2a1e880b05b9ea8403d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.1-cp38-cp38-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 94a3c388c1f167aa4b17ce84e334a4c3f826ff3871beec888940f6082968ed23
MD5 b6a457201017fcacb04af08a2f3537e5
BLAKE2b-256 37a43de5e26e57ed36b56e67690a08210aacc018011eae7f4f07235444e98947

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b148d44a70a4c14809380050f9cd5907f7edf17f6645df424bdb4302d7bf21b6
MD5 28e6f871e2b437c0f5f95af146a63d11
BLAKE2b-256 c99b6804c4896ea74b6e783d02a07e1fd7f53e301b2133d932d87b48f5f53fd6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.1-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/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2ea397c2968dab3ebf81d957cf4654f5517bb57c8c9def2d4909d3c06bc1405e
MD5 7a2228d9b0811087d909457528a7f525
BLAKE2b-256 74b94c012a4cc0dc55afe5ef626ce767aee139e1717594c93e8aa517adb8985c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.1-cp38-cp38-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.8, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 c6427583e598e77d72c518a930fe839def7d220ff18d9bd8f07f89263255fc2f
MD5 bcdf6fc89e7e3ddceabb6d8fe020140f
BLAKE2b-256 930b0505032dfd0554d6904546284ae85b7d440ba8a47c0fa08f72daaad86369

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.1-cp38-cp38-linux_armv7l.whl.

File metadata

  • Download URL: grpcio_tools-1.38.1-cp38-cp38-linux_armv7l.whl
  • Upload date:
  • Size: 23.4 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 5889a5dd9490106736b29e14e1812755c02b2b2e8a1e70829b4631ba004dfe09
MD5 6458aca7071cf41c722b178170797643
BLAKE2b-256 fa53bf7282ddb71cd0ce127efc916266875c0c1833a0309bfa38d2dc3ebf4b13

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 a3f04462d20bfc7ac197af12ea2a114436deb78306db33f555fae64b884f05ba
MD5 bef84d113ad33098cb5a491a9a3144fd
BLAKE2b-256 0755afc627def61f8efe2be9021ff9a661ad185a6167b2c6dfafe5324d56d1b9

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 280772a6f43ed96b84521cd6187bce0a6d9ea1a07cce95074c21f8fd998dc95a
MD5 9d1fdddd7f96f632cda15af374736ab4
BLAKE2b-256 1cad25ed0baf03b40a27e26a10e3f1b975d6d65b1ea59826ec512e06991ce2b6

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.1-cp37-cp37m-manylinux_2_24_aarch64.whl.

File metadata

  • Download URL: grpcio_tools-1.38.1-cp37-cp37m-manylinux_2_24_aarch64.whl
  • Upload date:
  • Size: 24.3 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.24+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp37-cp37m-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 6f19404a12778703030009e6e28a7fa243d58f5a7380c40f23786aae614b35a9
MD5 46ede64152ad101733f1dbe204dd5cff
BLAKE2b-256 368731a6678f9847440f43f45fb8a32c730beee1bed59cb9387195fad833dc27

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.1-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6a92e26cf42746228d668e9ef1fc66fe237fb2fd00e92a2eab56053d223149d7
MD5 6ab0a3bbe8070f5fa749fc78244ad576
BLAKE2b-256 4d256320a04d57717e0b88722d91205f22cc4caded5376a2a0717ba2c887cc79

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.1-cp37-cp37m-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 315b72d38f954707e94497cb81efb450c7ac53a390c9b8e4b73f47758391d643
MD5 ff8f962eed6538a899e9318d72244d62
BLAKE2b-256 74bc350a5440bf180172fa0f43deb9d44bad8001a37375eb7a2120c2e582a6ab

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d6445128492eec9a4d387dab8ef3811f889c674055139306ec5e055b1b8c92e9
MD5 ab370e1bbde2c3375b8cc4da3976c252
BLAKE2b-256 cde029efe1fdc35b1ccddd09f2852e27d5dea8df6570d3f2219de862722c2998

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.1-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.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 baa1c225b361806bcad14de23f7cbf09f568a3550c1c97e6f22d414cd71b4c92
MD5 cbbcbe3d9e8df9bca011dff3698ea659
BLAKE2b-256 6a21e7a55a8fda652b7f116c32598606360a47f86560b2243ec68c8c59358fb8

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.1-cp37-cp37m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.7m, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 142357f786c862dc5dc4141b60f74ebae57b06ce3451c823b708d628dd403f19
MD5 6f552e482dc02da7b22237bbd443bb8b
BLAKE2b-256 59c9fe090c4e08f7c31ef1fc2cbc728ec7131c76965781d4af377dd56d722255

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.1-cp37-cp37m-linux_armv7l.whl.

File metadata

  • Download URL: grpcio_tools-1.38.1-cp37-cp37m-linux_armv7l.whl
  • Upload date:
  • Size: 23.4 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 c9f6a3b5f546a57a1011e59a5b8588970adeba7c3567efc4f21a4bea7337192c
MD5 14497921b3f338724cd12a697768ee60
BLAKE2b-256 256dc2c6abfea86bccce740de165709a43ad2d1701b58ce11d4a93798c89ec6e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 7ed99b84c9866f834f7c46e00095b16cf154b39c18944f1c138407b789d40da0
MD5 d31b5131675594afeaf8e0d7e1268545
BLAKE2b-256 1201a76a7be75a66cb8cddcc4331c353b66f71cc8baad9907793962925f6d7d4

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 5bf5c920c7b8b55b9f42ea270a032280a8ceb500d30a9894f83384f48c2cd5a0
MD5 f57f61bf81ececc28a73bd338c24bf08
BLAKE2b-256 ac6342264ba1e171d068fb32d2ba4f821e83484c39d09cb1e9bba42cfa80f2e1

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.38.1-cp36-cp36m-manylinux_2_24_aarch64.whl.

File metadata

  • Download URL: grpcio_tools-1.38.1-cp36-cp36m-manylinux_2_24_aarch64.whl
  • Upload date:
  • Size: 24.3 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.24+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp36-cp36m-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 82f1a4d60f5b4371c4afee96f9f460d67fed17efae8ad152c2e6ce225f1fc1a6
MD5 1a94f56cef1aca1c02c657b1baf987eb
BLAKE2b-256 2763f59e57c712068007218773658482808866f52a291b6390fd5c7ed3689ab0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.1-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 10e7343fdba4182951a0cd33757e1beca784b9b95098a61a38515edfcdf2129e
MD5 336be7c03568da99730980b7fc1af4b6
BLAKE2b-256 c7ee98de1f34f31a7f9b7ecc3682af32fc6ea7bebd1eab1804e9d628ac319be5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.1-cp36-cp36m-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 69e0d7fcf788ecee123487d4f229010e65f77a267293a2c620b2930a65e9abbb
MD5 f8b3ef2d85d417117ff05314940c3b2d
BLAKE2b-256 12e2ea281b540e00c82023b8c242bcf9247a103020d8eddb0c956457f1e6ea98

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 53f5cf971321c833d746258f656dba79b70f24129afef070e8a617b89e4a8281
MD5 debed76c6902686e289043c7c55118c0
BLAKE2b-256 0f827f12d59266b4e96e47f9d70e2349fc905102e702de10dcca9c97b33f91e7

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.1-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.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 91c8de121d5a9ba8f76512e691c89c77f2bc93aa8924d3f891b76a183e1a3226
MD5 3bb76a3d0312d6bc6f417548e8006b2a
BLAKE2b-256 ed3c9737ce8ac282d02a55a0b7d5930785313ef5762489b7b274f685ff423ce6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.1-cp36-cp36m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.6m, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 36a081086dc3646584cff59fb5675cded8226141adc1d160e1cd54466b6b728f
MD5 c701505b502a47c8afc2bd15118c5f38
BLAKE2b-256 863baeac671f7fb10f9cfb091e60b5041c3f9a2ecc492e19ca83be30838816c4

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.1-cp36-cp36m-linux_armv7l.whl
  • Upload date:
  • Size: 23.4 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 0ed1238044d908fe461e63a97c846a2420ec15103ed7bf8aa76372614e7216de
MD5 5d4ee10d902db2f2a7f2320f7d640c26
BLAKE2b-256 43acb6480565d21b9c30890488ff3b92acc2a623c64c9562b829ce28edc26b07

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.1-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/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 5b31142da2c74c02159eed352e39fe2d6b6ca8a6a25c53cb7efacb53d08055b2
MD5 b7ee3fe167c35ef5b1b11be992e3d76b
BLAKE2b-256 5fa4c7d02de5caaec0a170b4d4998ecd13d34d1bcd8d82a5054fe57813547a2d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 728a9a96fcfdd32309ccc584664f3935c482951cc9340316235ec000683af1fa
MD5 dd31be8ecd799affb1a5d61c279a4ba4
BLAKE2b-256 fcd6c5f79900c6640379aed61b365fe9b02e420ef07c2ba13aa0bd5b5469f80b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.1-cp35-cp35m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eebc25185c109dd584f3ab09146f8471dcbbdee23a6330753b30e732cf374fa1
MD5 2c21c34310af88244719d884fda3ed78
BLAKE2b-256 5241ed9b0b8a38227ce9487bdd63e2641884b79b32ebd8dad346fc10e2ef1a13

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.1-cp35-cp35m-manylinux2014_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e2e97564aec7dded3a864f740ec5121ce7c574d2d1585d0fab1be8ab856ce312
MD5 b915a4db4c700e5bb11ae4f72690f0c6
BLAKE2b-256 1bbb103c752adbb223e184be80046a60fa85d0a83dacb465fa244ac608c7020d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.1-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 21efa933597d6c6133f5dd77dbfdb9c4bdb6b8c5d599c47ec96de264abf74157
MD5 9e4c678a5dac709cb3471b45727fcb42
BLAKE2b-256 93c85e5c232ba89db48627bc00015d3369872098936fcff99a6dc66e81fed474

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.1-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/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 31c5ad318a47aefa451dd00cbbf3d0fba693df21d6382a52b8c3b7c67b0316af
MD5 4f522f24b6acc3feadbf2ab5c345ff12
BLAKE2b-256 19ff0cbca1ddc116ebcf9a829da073f68747120c5995a0a8125f4fa99c1480e6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.1-cp35-cp35m-macosx_10_10_intel.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.5m, macOS 10.10+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp35-cp35m-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 6c4e385f41d9c3e4a8f59af1b9c2b1d3d16840cc615f1f7f301012b3a7b53cab
MD5 8aff1e76ff6932121ca566a984095bb8
BLAKE2b-256 efe4e93f1441a822947ac337ff0eeb51f0a0c99b8c9e75978b9c59ebcd3b1f18

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.1-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fa714aa29991328a4d51d1efd73ebd15f15b41ed0a84dd19af1654076b6f5ed2
MD5 75abea72896799cdc8ed165ac3e9e2fb
BLAKE2b-256 0436cd5a1ece06117d214f76cba60c20b21a016f2f349307299fdfabb9eb2ac4

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.1-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4ae9fb7d86f01915e0f640226a8eeb4063e2d1604e172596d52a06ac96c8fb11
MD5 6c47648484a0be32d8be35b22dec6095
BLAKE2b-256 55912700c21900e9b1ef45ab0e733a068255ed5a2562cb0e2a1232c60678a7ea

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.1-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 cf150b9b56ada5d78ad47e9d4c58da688788a9edfedd6b7586369311d40d6d51
MD5 91feb3f07c003a5390503212105f0a35
BLAKE2b-256 2a2b470be28aa5b4c1e8706da435d371764bfdcd2bfb35e3574240f3e9394685

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.1-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 72775c21fa5ff7e73a9ed9a26d32969ee5faf31e56ff8107b99c9d7914ea895f
MD5 bb6eb06c8b19684800b0bac6ce94a37d
BLAKE2b-256 7050e7868ac37ba3b60bfd1d488c57ec7117ffc012db043b339a0b0d7ae9e55b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.1-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0df193c2ccdc93d343e5c789198f2c9196dcb2375538728c03cbf5b57f0d257a
MD5 a0262a51ce8bf8b89910b25382410506
BLAKE2b-256 dcc854facd121d9a07eceacef56fa18f7d865963e0a26091ffda9e358c1040a8

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.1-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3e5a1485a4c18e1a35aae704682b2faac57f4f2122a8eaca576fd74f52e32cc0
MD5 65e04f0825e6dd760236f3c16b08bcc1
BLAKE2b-256 71fb461a4743415c81a8f0de912e1a1d4a38e680f78a2cdc33a838a8e6becbed

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.38.1-cp27-cp27m-macosx_10_10_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 2.7m, macOS 10.10+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for grpcio_tools-1.38.1-cp27-cp27m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 913f3dc262f28e2220bbb69aab4174c0a8b0fc94e7dec3a47c158bc2cc4fcdc7
MD5 52b5e5a865fc7280136fb4d2e119910a
BLAKE2b-256 ff2ac69b5c5e4045b0d54b59cf9db7ae4e7b3bead017b18f83f613edca8fe586

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