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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 manylinux: glibc 2.24+ ARM64

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

grpcio_tools-1.40.0-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.40.0-cp39-cp39-linux_armv7l.whl (23.4 MB view details)

Uploaded CPython 3.9

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.24+ ARM64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

grpcio_tools-1.40.0-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.40.0-cp38-cp38-linux_armv7l.whl (23.4 MB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m manylinux: glibc 2.24+ ARM64

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

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

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

grpcio_tools-1.40.0-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.40.0-cp37-cp37m-linux_armv7l.whl (23.4 MB view details)

Uploaded CPython 3.7m

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m manylinux: glibc 2.24+ ARM64

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

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

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

grpcio_tools-1.40.0-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.40.0-cp36-cp36m-linux_armv7l.whl (23.4 MB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

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

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

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m macOS 10.10+ intel

File details

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

File metadata

  • Download URL: grpcio-tools-1.40.0.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.40.0.tar.gz
Algorithm Hash digest
SHA256 d440f2bc089ff628618c536904d5bc39d0b44f7afdda4c4c1ecd15fcf385bfba
MD5 7ad7c71358452da8ff72c387f92298a8
BLAKE2b-256 7f6704da9b7b4d99756ba89b0046e2447bee7740b116ef8a281a4cc655426151

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0-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.40.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fe6a3ee6667c44432859ee151da766f32fc01f91228ea5a529ae121ba44fef6f
MD5 dd694261a975526121ae1d5c03257928
BLAKE2b-256 2a09fea15447eda8f13689811cd2fd94bc837d00eb3c18e5672025ad5cf9ea26

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0-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.40.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0d707e34dd86b4368391df6bbf9f7cb3649517f10655bc9ef4bc638a9c88caa5
MD5 443789a23bade3f98924dce98f8620f9
BLAKE2b-256 eaa68a69aa33d0cbe0c5a487e3dcd5c29727e6b6c47eb04dd5c4f0e2a9dc4a91

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0-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.40.0-cp39-cp39-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 76063203802e9858ec35cb454b96673a1336a8ae9e7313cc8de1a66ce3c357cf
MD5 d04a1ca0f7f577dc88f2c6fc991264e6
BLAKE2b-256 33ba29973f813259efef46c93abbdcf94d1c61d5cca1322bdef1f59e375cd1f5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0-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.40.0-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f5eea943c0524a59113dd2747a13de17a7550e838f59e3fb09c1b4fa131efe27
MD5 27ab6e7817ad7f158f18c8bffa02f723
BLAKE2b-256 59a7ba15c77bfd5094e85b7cfe7a4b09485ae76e5464c7ed1e084419fb336d51

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0-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.40.0-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a36c8ebeb348ee95376f2cf10d7530ae34593ab1132f7215e867a9e82ed8117f
MD5 5449eac0c1b6684ed7158fa719135ef4
BLAKE2b-256 13d9abdeb481d8d9c4e4dbd1076f6764dcffed4d261cbe74c20d280fd1383217

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0-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.40.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7f6ab2a9ccf50cf20e7be48531bf675b41b153cc1dcfe530c3fcbd430c44bbc9
MD5 2cf405dbd82b0da47ae788d1239d86f4
BLAKE2b-256 96b2b8f098832411f8587456bd32583f07b8b52a7b5142e0ad764e01c4d8bbb5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0-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.40.0-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 687ec1aa210ac6bdbf7880b34f5f61bc85c3b25db2fc323a946ff570a6a984ea
MD5 d1fa30c9df7cea81830321538608e341
BLAKE2b-256 99416c3eda5bdf2c7e656080a4e47857e1a1898a08631d44df620a941d29bb37

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0-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.40.0-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 f3a4bcc8bd57dbb53ec97634c5db9e459076dba8baf2c5d3a7e9e59397f0ee83
MD5 03011b76582225a8ea165e8d286d3aa4
BLAKE2b-256 2489aea7b01b618fcd0cd1d2b4a9365fbd56b7d057e030437ea7eca5e6e185ed

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0-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.40.0-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 93372ee8fc6e74af1db7128042ca21d8ceaa32b5de9cff73bed8dfaebdaac7ed
MD5 74276197d7a14b0a5cc79ee33fa198c0
BLAKE2b-256 ef5c018322dd0bb2a82b1c6b4ab3c88d21f5489f09f62f998ecef39cd392638c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0-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.40.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ce75b5c56439f6d438f67a0c9dfeec9b4295628447a98e7fe921e26bb321a50e
MD5 8d83ee702335a8c92ba6b3d72af66dff
BLAKE2b-256 acf27c13e3c0bf718bad3942940d2a3d2fb51dd85a939e385f44d6a7781fe4a3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0-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.40.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 aa681d1986c112d716586bcd51a6bb1ac459fa8a74975e9c8070123c39731221
MD5 437e926d5ee60a5795855cc5309c72be
BLAKE2b-256 289387c5875c3a56d003b379905e1d940537033a4c634b30e2692fc3dd4ed22a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0-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.40.0-cp38-cp38-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 27c10291fc41465e7931a214b6fbede38a497af766bab71fcbb9851f67a2c49f
MD5 d6e6a96a2f6cb04496d874a28fb1aae1
BLAKE2b-256 4db1370cb0854a26eadd8d1e06b0cf17b5d395625142e1f323af4c5ea0442257

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0-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.40.0-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d1065d74bbfd955cdacdfc88f4e728d651ccf546c8f2703ab4de4fb864bf073
MD5 8fdae34d926b2411936ed8afe8a339fb
BLAKE2b-256 02293ea84587e7888eba781f07e3778f396140b830f6198944d375adbf81c277

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0-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.40.0-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 47c9e396636a64198d4fcdc9bc8d8ed8835bcc5cca28786f5f24de9feddbd937
MD5 5214f91362ee37d5fdcb0317dfaf9ab2
BLAKE2b-256 ba69f9ab7ba4f386631c743a63e9013c6499ba4fcc4ee7aa6e39b231f21a417d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0-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.40.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4235c3ed899c44a8b528b07a8d98261b369d2072445cea0759310dcb9be5c329
MD5 c60bb9993a35f33b9ecae16054c7e705
BLAKE2b-256 105dd98cf366514683abeda0e8b620cd1fb7b32a857495fc2b7c8d041ac59b46

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0-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.40.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 791084528308a9ad403801527eb79074bb45cf71321204bdb12bcd58fcd810f8
MD5 fd93c00b94f903dea9f980a2a6dd6884
BLAKE2b-256 ebf2d0ce89c5b559ceadb9ebdc2cb7a2a2b76891e00caaee9233542b3c58737c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0-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.40.0-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 6b4235450b51f73db83237fdf54cca1235257eb8a84da0784513352f884bbb59
MD5 9cfa0b71925cd99f9426034a945996fb
BLAKE2b-256 61f256b1119d1d17d661073321395cd54b169709048e96aa6c55d504249fdc98

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0-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.40.0-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 47348f4f61a3a73e5304d096d22412d0ba00738307a5be0793930225c4034c18
MD5 199612fd161c97d507743587b4da4a26
BLAKE2b-256 f17f9156fe744bf66a84ffc76dddc40e84b7aa547e569277af59c43790b83d63

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0-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.40.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 05e10caf77717c59bb70282a8c7013db6ae9c1fbc3fbdf14f7d84dfd5ff18f24
MD5 757ab9015c8bd10c3addf887e547067d
BLAKE2b-256 db4e4f28122e1e48fa4d510e8b4e72a447424df5c3be5c2d4a35198c4c590374

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0-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.40.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 1f3f5d931815059f179c529df3dfd61040e39894f21bcc4c412f35cbefceff15
MD5 a01ff36bb76474058a5e281b594cc21c
BLAKE2b-256 7a5a48a464b1363cb719291932c655aa169e32179a828c94c6d063d37c379afa

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0-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.40.0-cp37-cp37m-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 01a3652601ff39027083c004fc8662beebc40ce92e6d77ed96403d3980190508
MD5 7bd1005769898d677986a88876af7d6a
BLAKE2b-256 0c121f08f39642168e0bef9bb0ad4539518b953a67415591d220a501314546f5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0-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.40.0-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd212d363909b36e32227e0bf734e49909d4e8ba8ddff934b54649e5ba6ef938
MD5 afa2aceccbd0b78aa03d76638946e7d1
BLAKE2b-256 b03c0dbc73b56682902aa8c4ad02da2e9a3dfe879e325082d831955ae9757382

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0-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.40.0-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 168c4444f44e386d8b387825cee09278f9311ca125c32207d54c498934ce9bf0
MD5 9ba84b3da680b84727c3a212c041ed77
BLAKE2b-256 cf4173453b6ae1f9b92a46f16e92015e720f195b9b8b597691ba9bd24d04c955

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0-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.40.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 986dc7a49e6dc2ad2f54cb6637d18c27d2feb96e32a904cc7e861750bda1b46d
MD5 832121215ea74adef8ad886ecae5fc46
BLAKE2b-256 811609a45bc4fafa3c9c1cceed7d846c785ccbd38495a26c20f72d194724d372

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0-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.40.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9eb0926a21eff5a0e4444a35309a8d2fc18bb53242253f66e5a465a6adecaf48
MD5 0dd1a2e46b0e3e567f265783ad4219a2
BLAKE2b-256 1e555b1ba85ae98cb53603a073587c2545cb101083e67fedc7485facc2f947a0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0-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.40.0-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 fe262f5cc30eff3bd5a0ca93883a7fe9b1ade5c29282b86714140d6d084ab500
MD5 c16441fcb532ed302acbb2efab7328ee
BLAKE2b-256 27296d251a6cf4ecb21196cef158a9b462b1394c5a9c1c8769da84651743e5ba

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0-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.40.0-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 d540128b3f4cc3a6ec16f0d48019dfa325e979e6a9d96c83979d7dd0adbf50c2
MD5 50a377a00c8f3f6490c9f530454a46ab
BLAKE2b-256 0e1c4329a5d37c0dbdf7c127916b02411e8f6515613bd5b8c0102a4841e9aff3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0-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.40.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 5f026c6a73476ac1506d8a4c9aa33aaecdc6ac103ed592c98e9b6cc7a123f714
MD5 609dd837a02f03a636bbf0bce48b9b8b
BLAKE2b-256 2af21e20e381d57114f2f830d36badedea524aa8d9d47645b8f1da9dfebab3e9

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0-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.40.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 00930e260a4900b68f8856c3813a32ec1db94666e140081831869fc92aedce46
MD5 7888cc43b28dd656a7a0bbc9428a4bdc
BLAKE2b-256 bab205a33eaf1d8a46583ecf5d4a7ba7632759b697f2686370b396ea1c2fa93f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0-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.40.0-cp36-cp36m-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 ff9ae29f77f9061a9239a93c53535d7f43dfd82a1a08a96c26bf76a232c4fa46
MD5 ecf52f8ccb41260030f1ef0af374267c
BLAKE2b-256 1c0790157f8f74b00f198360887aa84dc7e863c7f9e683cf5945e43804198344

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0-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.40.0-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 07e769dcf8938b5a355802d18b9bc0d7a7372276abce1b624e0af3b2b92e69c3
MD5 99e126b4eb5671a3917e9278bc850ede
BLAKE2b-256 b6c38be057a9ea77f3ec83175ea9748d1a2212369fc1f8618cc99766eff212c5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0-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.40.0-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 224d427ff0aacbbdd353721f545340c99d16c204d77b638a688160b331943162
MD5 7a078bca1a411dee5919493e592855fe
BLAKE2b-256 81373dac817a5adaccac0aa64530939678da5de2b855cc6ea49c656ee768d1c5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0-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.40.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 cf9d79ed7dea8363c7769324d87e35f2ac67f361c98ac960e45edd76b35df679
MD5 2aa656d16165e463844d9774693b8aa1
BLAKE2b-256 83a0f7c5f0a1980c06192e3756dd9581e1591cca1fdebd629c6166cbaca56bf3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0-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.40.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 849ccab9b043518fe38fe2c6c6bd4c6f6a87bad9184378f5269b0158b6d35453
MD5 7347fadb2eaed231f8357e80afcf1d3e
BLAKE2b-256 d1dfc2accb0ed4ecee90610c551c1dcb04035380be0a2b70789de0919e4ad6a4

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0-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.40.0-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 4b85c4e8037c382dacaf65defbdb4fafee5884b614ef19e03f22026ae2c4735e
MD5 b8866f9e0780c3bc344e331d55b1248e
BLAKE2b-256 d4b23aa4e7f78d2fe55b1a69e8c4f6e292e9ca4fb09369fc0e01cb36502c6cf7

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0-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.40.0-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 4805382c2f57bf393c2f7ec3c89391790f606249bf03cd722a875d3ba46e1b60
MD5 d5db71bf1c2a0e3c8b2823104fe8fe64
BLAKE2b-256 f7c918bfdfde09ce10316aa6516bc9b695eaa6afc8070aa792051c991b1ba62b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0-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.40.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 45794ebdec5bf7e9623806def361e61ae83f3acda5a53ff9744c13b5657a055a
MD5 9c4de50d07022a55edde10e5d760cfac
BLAKE2b-256 60f7a422b06a1b47939aaeeba41b46403174778fca73b592f4f6c22de2c64e3a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0-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.40.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 8aa8a081cd8ee094231d7e263266b731bcbedd4a05cd17a5084fc5bcc6cfd7fe
MD5 4aec24a5678c571c09559d57e44adcf5
BLAKE2b-256 cf22beca845943ec6820bb99d5eab76e6280ed61ce8de34e4040a19a99472def

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0-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.40.0-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 664ad975e16be1f4c8bfba0c7c7e24c73b5b7c6cf74a3d18825beb720841f775
MD5 317965bc8473865c4e97b77908cd9014
BLAKE2b-256 2ed28e48857f74a7dcc7ba7778c98a9acb37331335b98db85bf742e45e56cefe

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0-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.40.0-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cea28f8fc02fdae07501aa51bf8d89f972f5bcbd87ae56755d71b1b6f9140e4d
MD5 e1aab177d9f9858c52351f6ab59b4b3f
BLAKE2b-256 6d01835b0513317e75090b7de86614e4c89a142ed53651e17e5623998de47d42

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0-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.40.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e89722df3a263acd7bb84802e556f5e5616be4e5292b0b7551a740b93360743e
MD5 d3ff61ceb8b30206b8f272cadde1fb86
BLAKE2b-256 6b818c8e2b645ac9203fb4b4d1ee0c1561b8beba72ca08014c1101a702894015

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0-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.40.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0531233bfa6599412ffcb711ee02a3302fcc38bd1edc03b4e2443394eea22960
MD5 6092b3d8d5a3beb1d8df7260a768b814
BLAKE2b-256 6f59c3972792dc1766c3eb16a129c6e9ab5b7ef6dad52d654cd9b2043a8e710a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.40.0-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.40.0-cp35-cp35m-macosx_10_10_intel.whl
Algorithm Hash digest
SHA256 ba6cc607a9cbff6a45969f6eca730612f6413634cbf70303af56e3db66021f48
MD5 57d3db08765fb87a0312963436bc4a9b
BLAKE2b-256 c448f42d091291d4da81cb799c93f282b712f881b0ce1e533b0ba1e4d102c694

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