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 $(curl -L https://grpc.io/release) 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.27.1.tar.gz (2.0 MB view details)

Uploaded Source

Built Distributions

grpcio_tools-1.27.1-cp38-cp38-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.8 Windows x86-64

grpcio_tools-1.27.1-cp38-cp38-win32.whl (1.3 MB view details)

Uploaded CPython 3.8 Windows x86

grpcio_tools-1.27.1-cp38-cp38-manylinux2010_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

grpcio_tools-1.27.1-cp38-cp38-manylinux1_i686.whl (2.3 MB view details)

Uploaded CPython 3.8

grpcio_tools-1.27.1-cp38-cp38-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

grpcio_tools-1.27.1-cp37-cp37m-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.7m Windows x86-64

grpcio_tools-1.27.1-cp37-cp37m-win32.whl (1.2 MB view details)

Uploaded CPython 3.7m Windows x86

grpcio_tools-1.27.1-cp37-cp37m-manylinux2010_x86_64.whl (2.4 MB view details)

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

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

grpcio_tools-1.27.1-cp37-cp37m-manylinux1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.7m

grpcio_tools-1.27.1-cp37-cp37m-manylinux1_i686.whl (2.3 MB view details)

Uploaded CPython 3.7m

grpcio_tools-1.27.1-cp37-cp37m-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

grpcio_tools-1.27.1-cp36-cp36m-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.6m Windows x86-64

grpcio_tools-1.27.1-cp36-cp36m-win32.whl (1.3 MB view details)

Uploaded CPython 3.6m Windows x86

grpcio_tools-1.27.1-cp36-cp36m-manylinux2010_x86_64.whl (2.4 MB view details)

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

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

grpcio_tools-1.27.1-cp36-cp36m-manylinux1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.6m

grpcio_tools-1.27.1-cp36-cp36m-manylinux1_i686.whl (2.3 MB view details)

Uploaded CPython 3.6m

grpcio_tools-1.27.1-cp36-cp36m-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

grpcio_tools-1.27.1-cp36-cp36m-linux_armv7l.whl (24.9 MB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

grpcio_tools-1.27.1-cp35-cp35m-win32.whl (1.3 MB view details)

Uploaded CPython 3.5m Windows x86

grpcio_tools-1.27.1-cp35-cp35m-manylinux2010_x86_64.whl (2.4 MB view details)

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

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

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

grpcio_tools-1.27.1-cp35-cp35m-manylinux1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.5m

grpcio_tools-1.27.1-cp35-cp35m-manylinux1_i686.whl (2.3 MB view details)

Uploaded CPython 3.5m

grpcio_tools-1.27.1-cp35-cp35m-macosx_10_9_intel.whl (3.9 MB view details)

Uploaded CPython 3.5m macOS 10.9+ intel

grpcio_tools-1.27.1-cp35-cp35m-linux_armv7l.whl (24.9 MB view details)

Uploaded CPython 3.5m

grpcio_tools-1.27.1-cp27-cp27mu-manylinux2010_x86_64.whl (2.4 MB view details)

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

grpcio_tools-1.27.1-cp27-cp27mu-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

grpcio_tools-1.27.1-cp27-cp27mu-manylinux1_x86_64.whl (2.3 MB view details)

Uploaded CPython 2.7mu

grpcio_tools-1.27.1-cp27-cp27mu-manylinux1_i686.whl (2.3 MB view details)

Uploaded CPython 2.7mu

grpcio_tools-1.27.1-cp27-cp27mu-linux_armv7l.whl (24.9 MB view details)

Uploaded CPython 2.7mu

grpcio_tools-1.27.1-cp27-cp27m-win_amd64.whl (1.9 MB view details)

Uploaded CPython 2.7m Windows x86-64

grpcio_tools-1.27.1-cp27-cp27m-win32.whl (2.0 MB view details)

Uploaded CPython 2.7m Windows x86

grpcio_tools-1.27.1-cp27-cp27m-manylinux2010_x86_64.whl (2.4 MB view details)

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

grpcio_tools-1.27.1-cp27-cp27m-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

grpcio_tools-1.27.1-cp27-cp27m-manylinux1_x86_64.whl (2.3 MB view details)

Uploaded CPython 2.7m

grpcio_tools-1.27.1-cp27-cp27m-manylinux1_i686.whl (2.3 MB view details)

Uploaded CPython 2.7m

grpcio_tools-1.27.1-cp27-cp27m-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for grpcio-tools-1.27.1.tar.gz
Algorithm Hash digest
SHA256 e29aa3f7a47d37f8a15605e97bec580baa6bb7ead7114b8d2f20d7b28da30c5c
MD5 14de0a942ef2bd1dfc511de5e09fd9b7
BLAKE2b-256 9b61d74ffc7fd6ef7154229331050851efd2b5477fb693af4a0cf5ded738816b

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.27.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ab425b2cd4b724c4a8dc21bea7dadbc48107ecf9db4256e9438207def69155c7
MD5 deab86dbc71f86b9a2ffb24716e8d944
BLAKE2b-256 1a416e26a4945ec3296b611680e0ac1fca363c4e0672110ec734d183867e7a17

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.27.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2e0292ce4c4585e38585e14cc2ceb5ce09b0e9724b5aafcb53c55d4dedc7e2e9
MD5 faa77a182fbdaf2907496b4d3945981e
BLAKE2b-256 3ec6b38d09bbe77fc67951637cabd5fe58afd4c0e696018b719c31723c09ba8b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.27.1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 14104acd6f1c593611b50107ebf4c7718e8b6dab3ecab0460dc5651820a07e1a
MD5 9e0008ba1d038c0bed0fe389ca6476f0
BLAKE2b-256 dcf3681837b09531b906305cfdcf31986774ba52a77016d751c8443205de63c2

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.27.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4be83666792c1a6373a2a8c7bea4555c1a6b680e486a9e2785888c23162a3ff8
MD5 06a14672f1b5dfbc7723101d5173d89c
BLAKE2b-256 276507e722bcedf691d925d43cf1fa49a080c04704d27bd4a2d0d1f55a6f4067

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.1-cp38-cp38-manylinux1_x86_64.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.27.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 007e50f35a3b5a7ff7030050562ca2d9d89478f9add3ff2a937cb3a5733dee7e
MD5 b7644a184dad84a2121c8de87b34a877
BLAKE2b-256 cae52793ab540024c90bfe9c1c859497afbf770ad9e906818e9b0c7f148be94d

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.1-cp38-cp38-manylinux1_i686.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.27.1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 34677d2368b6dbb526f45d0b71f5752bfeb7b4ca2203b5bac7e59eba5d521669
MD5 851cbc0b48c6fcc9196d9eafa248e760
BLAKE2b-256 70d28cd8cdd53bd82705b8d92f24cd7fd69741137855510ae91d830304cdb67e

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.27.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dc0c0a9a98e20089e96552bd64ffbd370d27a9525498c22b692db1325579e2b6
MD5 d4ddf88f1e9c92c0a9aa2388aab82300
BLAKE2b-256 353ff6c244b9b8bf05dca0afa2d7b0f304043632a3fd14bd4b7387e393a32bc5

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.27.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 eac70438430e9a24d938042f3647ed87be1bc8e36c9e65a2e0ea0e777d819587
MD5 250b2da076f46845b26aadc99c391929
BLAKE2b-256 8ab44bd9b7f43baa53e25efd4fa8c7e67ecfbd584780094fc416e434b1cc9e76

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.27.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 3b85ee8c15eca0eca18dcd10e4f00c5f5ef738a8149ced2fd38b39ce41142ec8
MD5 f901459e7a66881aecdf78d6dc3c9344
BLAKE2b-256 dd20ddd092a94e86410eb5a97dce33af50f04b99266d7508b5d1a4b74caf3f3e

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.27.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 facc18738409842afc66da90356f693bec6cedc50036ce803b00f14a17d2421d
MD5 e1cba7452751c7b9595ff158a8bd751a
BLAKE2b-256 7037a7b2ab6bbc7f1e4433d001af90350ae8f558fa37e30d1d2bd8e5748d8b86

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.27.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 cdc0fc90d08f2fd4b2c5d627a5518681b9f6b15bed8fcbfa2d7409236028761e
MD5 51f22c973a1ee932a31b76aab77ce438
BLAKE2b-256 1957733b68a7b3bc415c91f72214e87e7f326f3917bb06236b55d970e58fa9db

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.1-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.27.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 66a7dcdaa56b6ae2f42fbcc9d7048afec776f923e1abb2ce994c824f2c462a29
MD5 5e982d46ad3d85c8387461f4cae3dbb9
BLAKE2b-256 30ce95c98894c337b8dc7dbc8789cc48771d764ce121f9f379ada710bfbc568b

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.1-cp37-cp37m-manylinux1_i686.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.27.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 220f71cc8282f17050f29d6031bd28d56c443d3bc835c61379655a5067d54724
MD5 be69534c96cec6bda092e9c1d835ad0b
BLAKE2b-256 b79bb1a4cf9d1e71189d53a5429d968a86813c173a92ca01b55658504c11d47b

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.27.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5e8821c15346806a5257f70ee46df9609361a0b053522115dfbf66561dd9c209
MD5 b795ceb50351b209f7b24d10aaa1f213
BLAKE2b-256 0f89f871aacab9d792adf54de76b6dd8794f96cd574fb8dd14fa30ad603ea53b

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.27.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 51c70c0ff77b3101acbf1ec2f772bedc7fce63425e16719ca27814f478489220
MD5 3abc8b807ac553cbd5d0112e2118d591
BLAKE2b-256 1c7ffb4d9be4c5e3bf189c09fd28719dd5ef44d669799e32aced4c6e808245e0

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.27.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 f47103c333f633b5507eec9057857f63d70b7bcc2030c1ffe1f602ce155580c0
MD5 3a9441d1e4ef33ce0a80995a2f47e302
BLAKE2b-256 256c1c58e6bf7cefa7ac7e402e219c29932f0d82d7998fc22ebf507138b9e2a6

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.27.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8c4180cf032c539b532bd9a0f6e94a71510290c71bb8f0c7bd55abc54f030c4f
MD5 28f3d8a7f0ca17fbc5da9687f94d75c1
BLAKE2b-256 d8f71e683d43c3f22c66ae31dd1b9900a3ee1b4e310fc7dd63279bf0402ae8bd

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.27.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 84bb753bfa1d11968deebb9cb1ce31159a88d0d440f53ef06ca8f7779afeb6d4
MD5 0239d56103535b2f67924216d0067a8b
BLAKE2b-256 b784665bcfbb9a54c6963c940af680e9b851f4c635b329353b42a3daa5c61c33

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.1-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.27.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 012b1bbccc17b45309e5b0d7dd53ae18295ad0b8b583f6f14125e457c8bc210c
MD5 11f3c0cf483d22a481fd6a60f89ad973
BLAKE2b-256 8348ca4bc396d368d349769978254137ab76844a48f23427c1cd3fcec678f39e

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.1-cp36-cp36m-manylinux1_i686.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.27.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7ffeb8015ed0f042a9bb761a855eaf2d092a3217c81da4869e2cc1b375e891a7
MD5 0d12c3f1c0ee9a02ff6426dd05185b7a
BLAKE2b-256 d02483882f44f8a54bef5d5b9206f7bf2e398b67011664cb5c54e567088ea21c

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.27.1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f4c7dbed6bd06143d3dbd2b0422c5fdb261c02a7514df4b92fb856aa86b765b3
MD5 4dab8b2fd1b93d28d91cb5f3e0c12f25
BLAKE2b-256 f7a1ceae7dbc94157900749601b8c95e672e34d59ffd4cc75bdc9011bb3e93a6

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.27.1-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 25958cabd9828f21e8aa21b75d2cae5533ff9ea14d9d4d2290141819158be170
MD5 3d302ff9e53812a219554bb971abb3c4
BLAKE2b-256 c95eaec41a77fe487b50596acf6b856321dddc2692bb475970b69ca23a0fa1dc

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.27.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 0a149620a9cbd33c9c75b7a75a229c6e11124af4307211c2400db30fb3483945
MD5 114de94903af06f3078d73af4217fdc1
BLAKE2b-256 94946e4de6794c9e2bd776f2955c9f5799b78c7aadbfad4eeb9841d6aade464d

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.27.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 c6d52b56d41c49b0d1a4d5d4b98619b5c67089e37cd75382cd5aaf3df04ca1bc
MD5 399bef0f86efa354582694daa870ded0
BLAKE2b-256 56a9b7a28ad8d53344c5b4241edaeb0c74fe2a112fa5703c5ec8404c48dda9bb

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.27.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 414ee62a2deb831690c65dbaef84fa60db18a81376cfe1eea8657c83ab3bc956
MD5 904813f8ee3f851c9631b33358389f22
BLAKE2b-256 7b00603e98996b0717cea6fa5bcc45635eecff3a307ba219c8eebe32d454250d

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.27.1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c96defec9baae1d6f738c7026d9c511c02aa2662e3a3bc137482694c6b3475b0
MD5 f54ee1976465ce547e1db7ae3736936a
BLAKE2b-256 66d85a144f3be6eb573403f9a46a4ca6455920db69d64a6979abed000b0cff85

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.1-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.27.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d7cb74693011d85b3cd292d68ba2f4ffcbe9c2edd2b260b5c037ce8df8e340df
MD5 dbb1413d326fa16c051469ec46e034f1
BLAKE2b-256 48eb76d233d0fa78fba7660240160d10bcbe0b05a57917c4fd68b0c362b7d418

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.1-cp35-cp35m-manylinux1_i686.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.27.1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 82cf8d524ab98701561e54dc45256072aafc4f9d4b814da844676fd13bead505
MD5 4de00f85eeb73f409498df9347dad055
BLAKE2b-256 9857f238f692f7c41585c2504ba6e5a53f36ed0f405ae2d4f5e4cb6a0985423b

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.1-cp35-cp35m-macosx_10_9_intel.whl.

File metadata

  • Download URL: grpcio_tools-1.27.1-cp35-cp35m-macosx_10_9_intel.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.5m, macOS 10.9+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.1-cp35-cp35m-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 e86119bf7b14f1a7af03b4e30d84df0c7d8077d726eb6272a6ace95425ac3334
MD5 00c11de3646a7b54c7643a82d482838b
BLAKE2b-256 eff4aa6eb1a866cf6502b053d64792d4653a33742213b2fa69b21910dcfb5760

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.1-cp35-cp35m-linux_armv7l.whl.

File metadata

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

File hashes

Hashes for grpcio_tools-1.27.1-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 b66a4ba71f21c4d696b3b72d518a1f370a73e773aabf1b312cc9ad876123da3f
MD5 204cadeeb19b63004327c9594ed2188c
BLAKE2b-256 e00d6f1205e3f94ec0e004c84342764df16dcf3d2ac1030d940e9ccf8dd3755c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.27.1-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 087058aa91727d4b861fa544832adc689393dc81d11f78da5101eba3dfc12e3c
MD5 952dac5ddc5cf8ccde23295066069127
BLAKE2b-256 b35a3509b88f33b37d3a50abf62a8c470898fcce0885e60eb056a2a98e69647b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.27.1-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e9c4eebd3b85c8b4ee28cd2102af8394baa95e6c6144c30d4faa45cbf41295bc
MD5 07a5c43e477d3bf645668e1e74a01abf
BLAKE2b-256 870c8ad80efb900a61b4e973012052b855396c98f67a3f25b99959a32346d922

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.1-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.27.1-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6af0950d9c68082c0e4ec30984971d78e68642ba3d5195c616a5ee5fdf9f124a
MD5 a083298b22448124a00d753e72f71f6d
BLAKE2b-256 95173dafeb252306d84ea74654a32b61419e87703893a93071adbe46c0b16297

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.1-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.27.1-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 306124c3c55cc118c4f3e9bf520e89c4409136b84d093b063702bd7dae3b300e
MD5 844558f367c5368d568cc0f98912df96
BLAKE2b-256 b3a70006ccca78cb55152466de5ae983e885388817f1419b8f54d9b11d884c70

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.1-cp27-cp27mu-linux_armv7l.whl.

File metadata

  • Download URL: grpcio_tools-1.27.1-cp27-cp27mu-linux_armv7l.whl
  • Upload date:
  • Size: 24.9 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.1-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 19c48ab57452054ba99c39bcb610e2139925304dc00c0df3bbab901d40a76897
MD5 3809dd058485592aed5bdba271b1d0d2
BLAKE2b-256 02a04cd7601269ec7b1b9e641729f2440d8ab2d201add8f46f5051f9388839c0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.27.1-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 ce560fdbe252fb46195965ee5de4ad56c641a7912082987b90568fe8460b2067
MD5 3499b682a199eb4e50f5914039133344
BLAKE2b-256 1be6603d6971c5c57820a776c4c8a64612cfdbb0e541b18b0dbbef5415bfdb8b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.27.1-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 8b16aecba2ce59ee6233e2be99884b133fd6bd2451aa90abcff8a5410905437e
MD5 984d3074d8874269fffbcc3429faaa66
BLAKE2b-256 f3316dc98a0b9ceb6f9bc4d035db594db9df6ed15f8a920f7617a4d135da29c2

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.27.1-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 70d1aa7bad5783233ee997a3cf892d193cdb2b149379cd54dab6ac1be0fb83ff
MD5 5b97396b6f92fbe2c85615ec03f0a8c6
BLAKE2b-256 3e2be0909241f4d91c9466b15b51dd2f787c7c8043532f393548fab9fd734567

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.27.1-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 18d0bd213b8be8f3c4a6cacd56059b0ca96661bb1e86dab8befc64cac0f64f30
MD5 9b0857aaafabbc5967de015dfac8eb33
BLAKE2b-256 3dab34bf5cff7944708d5a8bafa3124a225f5b530d00c35067d91a8b5848d3f1

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.1-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.27.1-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ee7a789b6aba953d0a3b322c3ba1614c8432f247c99a42f2501deeff03bd5321
MD5 d8107b0471f024ba0dd22219bc9a6b5d
BLAKE2b-256 b1c5f92212443ec531405b249fa5fc7dce54abae1dea1029e794caf346e361ba

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.1-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.27.1-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 4e0a9487b65b3a4754927cf654bd0ae6b14ecce3ccf0d688631b35bd6243256a
MD5 4ac4a127b92c401675546282cf4160b6
BLAKE2b-256 7ea143acdaa76528d82b3a34dfe54dca1feb02603138b179a358914d140d73fb

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.27.1-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.27.1-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.17rc1

File hashes

Hashes for grpcio_tools-1.27.1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 85199041e892d87b518edb58d7ce6ca2763a4a85273a2032ff3283aae3656a7a
MD5 6841752ce3cfa2c65ce2ab5eeaf58c20
BLAKE2b-256 91ce0c7f99099cf7e8095788d59fd9be88e01848e52a436da666742ca878ada3

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