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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

grpcio_tools-1.26.0rc1-cp38-cp38-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

grpcio_tools-1.26.0rc1-cp38-cp38-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

grpcio_tools-1.26.0rc1-cp37-cp37m-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

grpcio_tools-1.26.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

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

grpcio_tools-1.26.0rc1-cp36-cp36m-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

grpcio_tools-1.26.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

grpcio_tools-1.26.0rc1-cp36-cp36m-linux_armv7l.whl (22.0 MB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

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

grpcio_tools-1.26.0rc1-cp35-cp35m-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m macOS 10.9+ intel

grpcio_tools-1.26.0rc1-cp35-cp35m-linux_armv7l.whl (22.0 MB view details)

Uploaded CPython 3.5m

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

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

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

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

grpcio_tools-1.26.0rc1-cp27-cp27mu-linux_armv7l.whl (22.0 MB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

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

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

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

grpcio_tools-1.26.0rc1-cp27-cp27m-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: grpcio-tools-1.26.0rc1.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.26.0rc1.tar.gz
Algorithm Hash digest
SHA256 d503e7e7f3db00fa24a5cc6b13b0d4605677842ebce553d9bf3446a841529f38
MD5 891ee919d78cd808237001b471abb81c
BLAKE2b-256 99a43881cd6637c2afc9f6b8789efd3697a7c130a2f0fda8b10e39a6babbbfff

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0rc1-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.26.0rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4e1e8826f125f6c225970376a90faa37e8725293f0a1789e9fbdb60e3f5d54a8
MD5 8d93f987a2abdcbabaa4646a1a4a5c7c
BLAKE2b-256 0f96bfeae1aa81fc823501194982b824f12e76713c7789014d15deb8518bf032

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0rc1-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.26.0rc1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 6ce57122288c47322a677406de00a82fa84898684bab6637d74bd53700538cae
MD5 0cd8f56c36504dd7f82e06b5c6d08de9
BLAKE2b-256 cc8c8874f9884a041b15133f4093d98583347c0eda79fb2714f484b4f9bb68fe

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0rc1-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.26.0rc1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1789bd99de93e7a668f4c5d3ad61bff715e0050729889f543459111e22cfd3f5
MD5 16a26868fccbd2c503a74558e74d3c6c
BLAKE2b-256 36ac8120c323bbfb6a7cd1ecd3282f67a615656cde14b2a9934fc8307c120e78

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0rc1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.5 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.26.0rc1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7184c8acd53e8ec9d28bba1cb14097d7e9cd5b9adeefb44e6a8c6e2af43a8c25
MD5 659f53fefe841fda4cd8727df4ef97e5
BLAKE2b-256 79baa5dd1b3cbde7b1358da37ae60269ef028562431c9aa4efafa61f14f87980

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.26.0rc1-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.26.0rc1-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.26.0rc1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7d034a169accc992de207554a3316f90d23da652c8e0b0e002007cfcb07c8985
MD5 8179526a94b48ed06b4b65275bc706b8
BLAKE2b-256 425c4a46eea406c71505ddd6ac46ad267c1ab7c06216b1399b6bacbac85237d4

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.26.0rc1-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.26.0rc1-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.26.0rc1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 59d6fb6ebb96e6a98e881f0c93b12a078849f2f319b97ba2a15675ee12fc1094
MD5 74524c7313d1e59cbd0760c2e6df62ef
BLAKE2b-256 3e653006c1fdd9c2cd5dfe1c289b57d6f24cb675280ab84272f0ab0e78afac35

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.26.0rc1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.26.0rc1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.9 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.26.0rc1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1b06ab0931687bf7af34161372265b8ea39d569c01b99f31d22ccf0a22da8295
MD5 4f0bc7cdfbf79039b9141b486cfe3c03
BLAKE2b-256 a4dcf90ab567a4c495c7393df8c27af6d2d974a1245782a23bb250b3856f165c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0rc1-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.26.0rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 124296a8f7ef9e0d542d1cd2bcdc942052817dff624dc2c52e6737f415f3c87d
MD5 a23680f63b343b6d7012af0886ce296a
BLAKE2b-256 4033b42f50a70626ed48ac1576b5376c3ec55c02356666134da5b7291d8dc185

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0rc1-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.26.0rc1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 c75e2afe84a4c98c8337b241fdd07f061b7ed6bec81db420002e33d9dbe5ae48
MD5 bd17882e86b51f4c330913c3ddd9ca82
BLAKE2b-256 aada77c58219cce5ebf004f0de7669d75b5089f952dda2536fbedb6a8c53fbaa

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0rc1-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.26.0rc1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f13d06c0cda010b8fccacf365c6fccdf1008930dc6f123b84519a252fbd42e2f
MD5 6f44c27023e07b18647d6f70ca93b97c
BLAKE2b-256 e060ac70632bad90d6812353222dfa1c95c8b801b2e409dd8dc038291be137d3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0rc1-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.5 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.26.0rc1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 bb5860cab737431c38ce0916a73c5d0d27492f485fe8afc9249f9648dc66c6dd
MD5 c8ad47898dfe0e55f1d65ad2d3bed22f
BLAKE2b-256 e674503665baf6c8beddea5d1a7bfc4a882d130e0a341e126b10168a290bf41c

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.26.0rc1-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.26.0rc1-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.26.0rc1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 95d64f1ab92380b5bb7c316f225e65bf40da9245e43c8d1e92dd1932c94144f1
MD5 f363fc0cd2047006487f6f3bdce47724
BLAKE2b-256 34748abb35c4bed8cf9b98fee069fcd04d2e2b3f16d08214de1ef714775529b9

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.26.0rc1-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.26.0rc1-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.26.0rc1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3810f5379820104d576bf5ce29ef25827413f7453a83d65c98970139baf77311
MD5 6b81646cb32fd22ffb69c1b0a191bace
BLAKE2b-256 d1cf54e7b96f40f037bc8f837c7e12af823e1bf5dbe24a6f9ec63c195f95d202

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.26.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.26.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.9 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.26.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f60b1cb964607718bd3cdd0341e4b9211bbd00b9b1402ca73ac731ab1a48d00a
MD5 68618f61a4ce11343cdd0b2e041a54dd
BLAKE2b-256 0f8c1f4ef0a3ae02ea0721114155d8c1c2abe84d40f770571ea71ed2251b6f76

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0rc1-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.26.0rc1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 bcf8854806b84e0035ba5e77fd6a372032440d3bbe0a4a8e4e84e335b73e53f3
MD5 150165b2f433a860da0d48f8feaf0a3b
BLAKE2b-256 9c503d8c76c721e862f680ac405711e12b82e31989034e0e8d136c00d891d88e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0rc1-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.26.0rc1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 e4446ee0e2fa46fbc21159064c4aaedd6c1b4f3d5b50549ff86fad32e35d60d5
MD5 23c56980524e3782c5625b753df45c80
BLAKE2b-256 b6297d602a57d4bcbff6fca17b32f5b202ed36817f0c78fca80ba1d30e866e86

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0rc1-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.26.0rc1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 16daeedb6bbecb1a74f9d4c7bb4e5937c8c7d39b0a3ff4e78f5a7fcf2d30c800
MD5 b052717173517dbf03f98334ffa11467
BLAKE2b-256 b4e2e21ada9901eac77a1a6eb6f17e9600d90cf84ee11f0d82c12425d721a011

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0rc1-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.5 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.26.0rc1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 41a49fc0d8f8897dec7ab6f8a8129792aebbc101e5ead9e7977bdfa4f97726c8
MD5 cc9e03902a573d815b1f49621d1eda96
BLAKE2b-256 5b450ad530973bde123a9f38dc6d28cc5a3f8d7e16890d8bc8f57d13463a8851

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.26.0rc1-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.26.0rc1-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.26.0rc1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4db72aa848a024d62e978bdea94a542a7f951620a783c7a223506a70f86034d5
MD5 a9a64ab16d60f92a975cbb0b9bc839ff
BLAKE2b-256 620e3cadeaf8792854b0199d824b70153a9c05c9264ff3da9707a51c88f634c9

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.26.0rc1-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.26.0rc1-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.26.0rc1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 31409f5adf82ca1ad54ffe851f28dd7a00f20a1fe5bda6502bab828435db21b8
MD5 188a5ea527830cf31d082897ba1a3f71
BLAKE2b-256 beba6147f7f283257c61ec42058b9d8d807c082211e871f30a40b27483d2974b

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.26.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.26.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.9 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.26.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 92c18a9309ee072efc69c4b72ad98691d212e8bbfd3f42330be4bc3c9a36e2c5
MD5 171d8b5401fd1b0105c9ea8c2fc27c95
BLAKE2b-256 41ddf44d5fa06fdfec1fcbc6a845dbf50e91d0f58fb100fe619016390f1b6954

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0rc1-cp36-cp36m-linux_armv7l.whl
  • Upload date:
  • Size: 22.0 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.26.0rc1-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 112f7c448c9f66d6ea4829ac13614ec2c0a983d5b00da699d52c4debadb51d50
MD5 20a0c1a322a0dac60858baf22b1a1c70
BLAKE2b-256 ea173c9cda031d4250f70cff3cc87aa286ebcd91942e8a40f237a2471a080176

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for grpcio_tools-1.26.0rc1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 91dceb1cc37d6b4aa14112357d19dd16a661f9adb1c15ac2ea88d15c0d9f6a0a
MD5 0cfd0a47ecf012149495deada934ffd5
BLAKE2b-256 7138dd2189119f2420b48f00666d480c5d46be3c9f7509a3d59ca0b5e750f4a8

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0rc1-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.26.0rc1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 83e4dbe3e7a36fd4024b7d7f58f1e5cbc0d290e01ca4d13af57c7c023cdba85f
MD5 aa499d0ef91a7e4d6ed57d1ccd2337c1
BLAKE2b-256 559a287503054a8f36821fbde9fe08418ac3d5470970353daeadebe3b7499067

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0rc1-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.26.0rc1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e153aa15b26c48d4b402084703d45c7fd88f20aded14f33b95b542b7f162a17c
MD5 3d419c136c2d1ce0d2c740c421e25554
BLAKE2b-256 1ba907ea34c3864d2ec12af0fd82f5aca18fb4d5dc0a22fcf20ff89a83d595a0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0rc1-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.5 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.26.0rc1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 96ca4466f7382665bb3872e66540bc65c1ad8f26409d017c0016c889fed3637d
MD5 26e392ebdebcd6088c093426a4af0679
BLAKE2b-256 2482db3feb621b1946217d5d6e6e201cdb5575b13e740efd70a54efbe4673f13

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.26.0rc1-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.26.0rc1-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.26.0rc1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 10f15b4596647b6eb6ad496e0f445ff1a2888ff9abe40b0c2d6b2161f23fcde3
MD5 dc99afa3068a74ae5dc7635b435af7c8
BLAKE2b-256 93673c23c37d673664c38caee8e427c1ac7f84eec392ff74ccd5a57d281e4b80

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.26.0rc1-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.26.0rc1-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.26.0rc1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b37186ea275fcb655f316a6f0ee382e9913933c980ea6eaccc5601f0ab3f95f3
MD5 4db6e58758bea301542c0a530ccd1b7c
BLAKE2b-256 09e168633062e2cac376a11ff715a5c3e9a4c73033ab02cbfc1fcd4e40cbb873

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.26.0rc1-cp35-cp35m-macosx_10_9_intel.whl.

File metadata

  • Download URL: grpcio_tools-1.26.0rc1-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.26.0rc1-cp35-cp35m-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 466657b57831fa0daec6fe7c2baec643bfb3f7e82fcdc04748d942e4f6cde25d
MD5 c62a8937853e73dc68b2d510f619bb68
BLAKE2b-256 e0478a804860faef1e05f77219921a44827afd6ee01b93ef93676751096c93a5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0rc1-cp35-cp35m-linux_armv7l.whl
  • Upload date:
  • Size: 22.0 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.26.0rc1-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 cb570063cc97ecccc3fc859e77971cfbd20641efa4bb13d672fa8025ad763724
MD5 42c7142d9c2e6e4026ffef45feb396db
BLAKE2b-256 c79ccd15d140d9b2aff6c9a2d3a4e95b28bd9f7bd6911c2e76654c63f1b58767

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0rc1-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.26.0rc1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 627197b489ca5b8eec9f76ef7dcc858a081313271ced118d7b48c01a5c09a9dd
MD5 2fbdce799d89971f5add0b0624228b59
BLAKE2b-256 52716da85ead28dc32d6cff78b15b6ed661832f1eded18b963069866fa31e5ec

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0rc1-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.26.0rc1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 162bda65e81e7238954a326da109199d4ec66d208616be7b76e92efd15125216
MD5 1fc9d2be9bb533ef08b9d10d866f5b03
BLAKE2b-256 85845717316f2f6a75bcfcce1b250bd7e3225b4eb1bd62474b0f30b196bf4a29

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.26.0rc1-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.26.0rc1-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.26.0rc1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0dc1eb3529e3aade133a5b7c7ab1c0b56ec3357043c0051e2ba091e799bbbc94
MD5 842bd41d15f88a840ace32e664252e3f
BLAKE2b-256 5755a2063a2e4f2e3dde31b738bcf0a546e19bef6a04d95c40633e5fcffcc358

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.26.0rc1-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.26.0rc1-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.26.0rc1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3e0b053327c53a1b3563fc6940d16578c4851cdde2e3bd21db6cdaef70e9c049
MD5 c589ebaf5b2dafa8a5933e3d08fa1c41
BLAKE2b-256 0da4364236a98e9442318e6aad067e68da6b92bc233f382a461710610821f39d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0rc1-cp27-cp27mu-linux_armv7l.whl
  • Upload date:
  • Size: 22.0 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.26.0rc1-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 39c179fdedc7f02968733317ab8192da8f2a465b3759b2a80bbbfcd9024662ba
MD5 59c123661aa3d28286431142d415410b
BLAKE2b-256 61fc7fa68a85b31bfbf08382d876a961cc99163c53fe82245b0ae0b00c3709cb

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0rc1-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.26.0rc1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 8a1b46437efd98ca9efa2d6c09f3609c59f10420add2ec33430ac10a489ad6e8
MD5 023bb11471268fbdaa11b27d8c6442c7
BLAKE2b-256 6022cdfa0ff220e608c13758e8ecee404a83e2003fecc1044a12ed3610da22fd

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0rc1-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.26.0rc1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 db9409a8a84821f523e1d48cd839d15fa3a692b293b441e2aafe112ee4f2ec94
MD5 c120546e13b9e33aa74a173716710440
BLAKE2b-256 34407dda9c168d465d3e125f2bccca70b0f40201cc3615b40f6364c62a4718e3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0rc1-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.26.0rc1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d6742c13f9eb04ccf817dda8bd56ee6e9b095e1a9d0a483f5d244a729d1d663b
MD5 feea6cd50805bf524586885b0b294c18
BLAKE2b-256 8a34dd8daffe3bd30139f596be7afe83ad0dbfd430bb1edcfea619deb49f18e9

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.26.0rc1-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.26.0rc1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a2e82fa6c7f9cbb3e235df3efcac87985ac0f6812f7878b66c9060d83989e221
MD5 e0d8a8e1e13f78f562a725a39045f34a
BLAKE2b-256 04969cbbcd0d730975b59545d761820fbb517f43dcb85cbc4a37da299185472e

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.26.0rc1-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.26.0rc1-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.26.0rc1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 af92c08c3f32ac447e53d81ff87ae0bec8536cdaa7fe1fc9b48b4b1e6a9afa6d
MD5 49ca891560334e869f3958105379f9fc
BLAKE2b-256 0f68a754ebe307cd66bbc8551be7e601f2aafcfdbef03de55ab2235151b256ba

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.26.0rc1-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.26.0rc1-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.26.0rc1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 bd3f588ce8a232b2e5c5f09a771329f877aa43126ca48aa4ee6bffe3ceb036f7
MD5 f06a05309f3b098615606ce932cb75d8
BLAKE2b-256 572fd7b41c2eb14f2fb01893256182523406f82266162eb66237495b21edce5d

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.26.0rc1-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.26.0rc1-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.9 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.26.0rc1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1f21f16b2299a1446476736a7eb087dd3646cbed35cf4a85e0fd0b54f67145a7
MD5 2b0f1b3fdd45bcb0efa81c34cd21b75f
BLAKE2b-256 f47f43b727472b945f2e3307a131c8c8aaad286bc7ab2e47153a5a60d0f62432

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