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

Uploaded Source

Built Distributions

grpcio_tools-1.25.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.25.0rc1-cp38-cp38-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

grpcio_tools-1.25.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.25.0rc1-cp37-cp37m-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m

grpcio_tools-1.25.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.25.0rc1-cp36-cp36m-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

grpcio_tools-1.25.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.25.0rc1-cp36-cp36m-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

grpcio_tools-1.25.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.25.0rc1-cp36-cp36m-linux_armv7l.whl (22.0 MB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

grpcio_tools-1.25.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.25.0rc1-cp35-cp35m-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m macOS 10.9+ intel

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

Uploaded CPython 3.5m

grpcio_tools-1.25.0rc1-cp34-cp34m-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.4m Windows x86-64

grpcio_tools-1.25.0rc1-cp34-cp34m-win32.whl (2.0 MB view details)

Uploaded CPython 3.4m Windows x86

grpcio_tools-1.25.0rc1-cp34-cp34m-manylinux2010_x86_64.whl (2.4 MB view details)

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

grpcio_tools-1.25.0rc1-cp34-cp34m-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.4m manylinux: glibc 2.12+ i686

grpcio_tools-1.25.0rc1-cp34-cp34m-manylinux1_i686.whl (2.3 MB view details)

Uploaded CPython 3.4m

grpcio_tools-1.25.0rc1-cp34-cp34m-macosx_10_9_intel.whl (3.9 MB view details)

Uploaded CPython 3.4m macOS 10.9+ intel

grpcio_tools-1.25.0rc1-cp34-cp34m-linux_armv7l.whl (22.0 MB view details)

Uploaded CPython 3.4m

grpcio_tools-1.25.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.25.0rc1-cp27-cp27mu-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

grpcio_tools-1.25.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.25.0rc1-cp27-cp27m-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m

grpcio_tools-1.25.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.25.0rc1.tar.gz.

File metadata

  • Download URL: grpcio-tools-1.25.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.16

File hashes

Hashes for grpcio-tools-1.25.0rc1.tar.gz
Algorithm Hash digest
SHA256 5a9470e625f4bb0affc0f91b62232186a1197953d977b9f5f4374bd637892333
MD5 d095f2582325c348ced02722a6c94507
BLAKE2b-256 9f5ceaa6ee6a505ae1d3c5bee6f048b01738f0d369d0a7c04f4a018c526bc3d2

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f3a69b47607c56aefab42895b860a108c919abef1b3dcffd6bc4562fc83c2afd
MD5 d504012bf7dd5c96aa8a7e6d0694dd6d
BLAKE2b-256 000f484777554b1bb641ffb07ae66722832dae21ca9792573fcd607ffa94a1ae

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 cd1f03b2dca107f89f59be5bd41c3445c17a8ce3208a727df9e4e4ffc7cb9c59
MD5 48a636ae30e260bfe0310fefa129d2b0
BLAKE2b-256 16bb77484ee1889a9f11f908b0689075647982ab52db6c3e6470eec0111b09b6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ad7f11020bae70ba8c9a691e3c809f037d37b98ba6ae5ceb720400d6416f2668
MD5 2dc5694ff7682792768ea4c5a4258fd0
BLAKE2b-256 b436b1202a00d16f164be2cdd7f8e061a35eeaf0a93bac161961b28580e6831b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b7b978e8d1a8b6f9bc5f4c84fa3843f9ce5381d46a09e4fbb5dd8399f29f8017
MD5 444d62b36b5669434c6b79aa9b0006eb
BLAKE2b-256 db1f27bbd4500d06fadf0ab961c88f3f6e9c0052c0cf4be88d9e8aa73fa8588c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 313fd019fe7eee966719a66b605dffa4273b3cad69089b897efbe8019cc9e726
MD5 306646bbedb82d6b41a0d08b7cca6c51
BLAKE2b-256 485bf60e5fd3c2e65b6b021510c693ac9cfffa694973871dce3311a9c58ac895

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 39e8e3d0e80770b9f9dfc0d745dfa5bc4c7094ae45b4c8a0e77612b00c836c44
MD5 36dfbe6e917ea4306ba019b85fe1793d
BLAKE2b-256 6ef38627f947c5a9eeaf02db192f18a5a3274d405b63a84e286c70422393609c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6e34c300f4723ecf516059f1ac590357c2be342bbda28447c70d379735564713
MD5 05471812bb6ad4c8ab16b9f2a8475172
BLAKE2b-256 663e12437c6be3e8fdea0e93ea8a55b30f5457a740749b3559f2b6d99ebe8750

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1041010640e4f442bc40bd78094f3a6fd75359a8dac88fe8a9deb7ef2b206552
MD5 637e57aee46c4f82ebb5b30de4b6a1d3
BLAKE2b-256 ae223180e846ce11665cdd0fc8253e9cb01c5b9cefb0eaccd6afe52b85268cd4

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3ac7f3bb55ac3375251c55e3dcdc421d92af5ea0afe4e557dc7f17aab92e9983
MD5 eaad62d823f5f9d45049cc609ac500da
BLAKE2b-256 61d4b97d332a8442afb32e12009b97ef8eb2eb9624b952682936453dbaea40fc

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2a57663852d8e13cbdf6fef69e2fef5d1244c0db1b53e4ffe5acdef909399b3d
MD5 9cb629be4296293345b10e05e031b605
BLAKE2b-256 bdc19c817b28d475bf022f775b7272d8ff48eb0ad42713c94417cd59333d1e30

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3a79b4d9c1729585bf5188add60a3cdbbc805b61a8f2f327fa5790cd6a88caae
MD5 df70e685ba988bf8673150e928e8b30f
BLAKE2b-256 1788c086e05cd28799e0b73a084e675d0ad28b9d1331c75e362233f847978fb0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 a4699cdd216496076e2ddfbdd7b08a2278f5ac350b0b8ed64079bfff7af79136
MD5 46f6b9e56d6aaeec1ff2e4d621baee72
BLAKE2b-256 6f7bf7eb636fd696d48c78d6f9cb16c7b413da5eb0e1cedd413835f6497602da

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 86f3a46f5347b6dd7ef9908c3b157387ec491b34659694cc0f716b32918d7447
MD5 647d6a592af752e125c1b7e7158b5ba4
BLAKE2b-256 c5a8f2dbf36016a9de32e6346dca3225948f91ef78b50440471c7eef20ee060b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8287ad38cd05153cf9efb6256bacddb53791f8375f94e289cf4a033f8de275ed
MD5 63129c81eda0e5ea904bd9611d53629e
BLAKE2b-256 ccae0a94f2a468f98e5ff5e3d03dda9381f287a7b194d34fd693930be4978349

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a9eda615c7163d3fb6df1e6d544a1b583bf4d8009e4274e841d0da15e51287c2
MD5 1680e69ba9038346cbaa9117c4ee9942
BLAKE2b-256 d67e001e4ff2ba882bee5631f9499f4c967656a8ee766c7ec9ad73e20bdb4194

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e3d7e74bf206b1fa1c1970a0e9846d1591aa7aedb21156892c53ba892a266f64
MD5 898585fc82146d7bf2a3cee047ea009f
BLAKE2b-256 51a0bd5eeadf294faf33c3edc0675956866b9eb3f0f581c1eda9a566c5d14df2

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 cc23c7117e0a482182485fff8eae78b9b6bc2f5a0bd0d3d36c64ef45495a4190
MD5 534ee246f411940d18464dcca052d4f8
BLAKE2b-256 c0980a86ae911c976905221a6f062a9719ed07dbd02e002b71dbd4a9cb6e5bd4

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ff756855257e62ddb01d0b65d722dd04a49ca86864a2b6e56d15c861710d0080
MD5 9668155b1d11aa7f2d90aa4ad84efc74
BLAKE2b-256 35d4e51a0e503dbcf3e44e0ed53c4ffdc251d71f291f59590030d72d2e51ac5f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 a34a8136e8398fa6963edcd15d360470d185d03efbf765789571cef1452580c1
MD5 4276ac59d7110364b98dc2ebbd20d07f
BLAKE2b-256 e7ae091016a642d4e6ecbad162b2f722344418f4f3d5cadebb358d4df99ad29b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 6310eb55165621fa9127167fe136158c0e1ad363783ee78bd19c84e31c2f3a91
MD5 6980276f1d4814a1faee00a6d1dba521
BLAKE2b-256 aa629c75a31e68847f89df55f7ea458ac679de8ec7ee48e330cdb19e8740b798

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 f67c44aed4ef80792c247f6be34996b0cfb4e452c0c2dc0a87b8d785a3d7d7e3
MD5 b22e0a35ec90e563be4adc236a4b28f1
BLAKE2b-256 303ef00579bbb3dc9cc7e260dbb7827c56159bdd52011a414f80973ba1be7f64

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 13d2cb8d86f9cb0ebe5e8db9ddecfdbd080b8d800e10dfbd672d790598fbf4aa
MD5 9449eef890d867fd812ed87f91776b8b
BLAKE2b-256 4785fee23ce733b287edba67a3ea90ca8b7b2e4d4da16bb4ea010054c64e8434

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7d4e8832d8a7d584a2e55a0272a4fbf865c0dbdb79efe18f06935a3dcba5643e
MD5 8ba0e6d2c2a8c86037d72f9341b9e339
BLAKE2b-256 6c986fce4bafa1bbc85d8a073cbf8b36fde03850360657a340bb95cac343d5f7

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 458855d46d2561fe6d0abd08fbcf94c6cb3058a31178a771b54a971c225754c5
MD5 6adbbe2e742186292d0c64970c36b4cc
BLAKE2b-256 16159fe7ab30b2aa1715ce393fdac2b98da33fd5aa0e9e824c0cb315d68107cc

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8662dcafa19b6c675ab10094b6115c28fc574e93ae269e2e2beafaa8c36462f9
MD5 ff87b44a6f5d6d2bf61ea13f4634b515
BLAKE2b-256 e128e2e291699d92fa7e088e7cf3c4de3f2616d3490784be9f1e48e947f85264

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp35-cp35m-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 03ecab7f75d3bd533a1ee62c1187231a9e567fed1e033663a91277728ec998e6
MD5 ab54bad634e5abc6681c15f72063cb4b
BLAKE2b-256 71317ee974ddc6b831f3d2f6a4571666822c47648eff042f2f18ecb6b2ff0126

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 503f52057138df5821e7a8475342c2e28bbaba6b2c406c3dacd7ce7b0ec830fe
MD5 3ce1ac0d794210a9d1a3ce195fb356d7
BLAKE2b-256 19a3e329d57200afb0083cbb5eb722dc144daac7cb5c395fa6b4eacd588df7a6

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.25.0rc1-cp34-cp34m-win_amd64.whl.

File metadata

  • Download URL: grpcio_tools-1.25.0rc1-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.4m, 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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 0ef0d3e74d8d4399f0ae55d51c314eb3c424179b86184fe1e50638ce4678327a
MD5 be8a833f70751a9412b338e629e5d51f
BLAKE2b-256 4b833dc0fa63d9e149e371e3e19ebdc7b1f7f7c98e13f1585793dfdc78afdb37

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.25.0rc1-cp34-cp34m-win32.whl.

File metadata

  • Download URL: grpcio_tools-1.25.0rc1-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.4m, 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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 501c0ceb28a549998cb640b06a3cd0c934c9998f9fe96dd8d2dd8c3e191da30b
MD5 bdc7cd6e5968a73442445b9c00872560
BLAKE2b-256 847ba4baff0e359b20c692abe5361ec4dff299ec77c85bd61aa5b140a5f941a0

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.25.0rc1-cp34-cp34m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.25.0rc1-cp34-cp34m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.4m, 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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp34-cp34m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 dc873c804353ed5a648468daacef224e607ee6a90b752a55f2dd3c0fc2a22dac
MD5 944ca86c8f039ea7e459acdbfb67870b
BLAKE2b-256 5b4776c51fdd7829e75cc512e6e183f615c4985d2404351a7ba5a42f5f556a6d

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.25.0rc1-cp34-cp34m-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.25.0rc1-cp34-cp34m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.4m, 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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp34-cp34m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 270c45aa3520bcb8e9a68f5dac6b10f03ea227c9de20daa6aaeea1ea1de2219a
MD5 df65b2671b6d1ca6134630af2b2d9aa8
BLAKE2b-256 49469dbfd8e8f628d9b06856b4e4f8b2dee5243e8f60a18d7193a73c4eebfbfb

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.25.0rc1-cp34-cp34m-manylinux1_x86_64.whl.

File metadata

  • Download URL: grpcio_tools-1.25.0rc1-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.4m
  • 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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 323c9b61fef56f12b4996cafeec4ee3e30ba0e2b911986c833a04e1f6fd9f9b2
MD5 6d88d1930945ad7b63a2abd58f03683d
BLAKE2b-256 23130a6be1100c20bde65abe37bfceb25aeb7850b09038f055fb4710a50a2f60

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.25.0rc1-cp34-cp34m-manylinux1_i686.whl.

File metadata

  • Download URL: grpcio_tools-1.25.0rc1-cp34-cp34m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.4m
  • 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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c3b64edccd8be595491f479bc57269ee020fa7ceff2e2669365170a332dd8aff
MD5 1e5344a9c00ee0fea0f95d9513034abf
BLAKE2b-256 95b7d8cb98c9052264c3357010a94f59867b74a0a9d89e8625683656d7b2bdc7

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.25.0rc1-cp34-cp34m-macosx_10_9_intel.whl.

File metadata

  • Download URL: grpcio_tools-1.25.0rc1-cp34-cp34m-macosx_10_9_intel.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.4m, 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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp34-cp34m-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 8262ec068263b06d54c5cbc06de78715387b9d6ce560a6ab79002ec0cb145c11
MD5 7fb630924f37e5df42424669b6d5f967
BLAKE2b-256 cfda81d7d33fce356c3a2ee41bec603c53aea7f5fa5a976f6de01177131b3444

See more details on using hashes here.

Provenance

File details

Details for the file grpcio_tools-1.25.0rc1-cp34-cp34m-linux_armv7l.whl.

File metadata

  • Download URL: grpcio_tools-1.25.0rc1-cp34-cp34m-linux_armv7l.whl
  • Upload date:
  • Size: 22.0 MB
  • Tags: CPython 3.4m
  • 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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp34-cp34m-linux_armv7l.whl
Algorithm Hash digest
SHA256 c8c7142c533b4923d31a8ab3c8b1d4175f3aca15f3cd146ee6d6fddd57c02ea2
MD5 9c777bdd3bdeb2da5dc19e7a68c19e97
BLAKE2b-256 673f2329ca8021cc3eca9b46023fbf0fda0ed9ce843e63edb15c9786a3060fbe

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 bbd639a20a34ad07b15294d8c05745e611a0d9ecebf441327632bd0a89e911c6
MD5 905b224a59d7efe42a2cdc4b6c6e4ffc
BLAKE2b-256 8be7b4942901e7fd1ae9dc6c7ade28f2a89085bb173de920393e2ec401913fcc

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3814688518c9234fb1b44919d3e66c89db42d549a80b818d47f4646f9949a0bb
MD5 4cfedf2783e3269071500f4ca7c7b329
BLAKE2b-256 60469699819b65e6914ff78b239f4a324b58c4785ce54ec1b96cfac79ef333cd

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b3c25a2d37f30ae3c5bb5a0f5a33e03f0d4486bc2f06617ba9997e702633303c
MD5 0a68439bf8cb558176092e3c318eb274
BLAKE2b-256 0fb8b5f52b46bb62742ac61edac463d64e63450550e31d97c61cefe22aa0f1d2

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 03e5970de2cdab8c2827f7cc4d89012ccfe870d34753234aceba27fafa9ec21e
MD5 6f5d86fceea23df1c2e3bc214a16989c
BLAKE2b-256 ac3b94f5cd9dbd34e8e715c00572976a8270bacedf9020bac532ff04db295d5b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 0454a465cb36925d6d362b693eda36ee1a2a18e03b8aed9aff7ab250b53d6381
MD5 ddce8704d29735ecbd74bdfc66b8ce2a
BLAKE2b-256 5de008a53792aad08a425276b3fb3edca5930045844f29985b19a10847a3038c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 af2d64db6e72b9f2e40b1532e3eda2b4d0bb3c9693d1ff0f5dae9750130844d9
MD5 d82e52ee89fe52791e6f145bdbae817d
BLAKE2b-256 342549cf992a1183751661027ddd9310a40cbe8b8b0c1865a57a92acb74c7549

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 44b91f66adec48fcc81000000c6e374cb8d67bb8ce82e3c084d04bf1a20a1d5c
MD5 f86593aa6a66b03cacc8683069691c39
BLAKE2b-256 fc826184b9d5152d685592d79651ce26654a329b9db4efc5e0fb7cc281514032

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 cb60659e5b119b32e21ccc866e34aeae9a9f795cad13679b9069c643ae3a390b
MD5 0f7f14e5b7bb073dca2cd8499adfaf87
BLAKE2b-256 c9afe06ac6b5db7beb1ca974c5de987830c8d266276b63e8617b9d8e04582196

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d29c5ccf7715d4e4c57e99173e133364cd354ded0162d5478efdd0453965920c
MD5 4cf16a09378c6dc056429739ef0a1d90
BLAKE2b-256 dc8d04f496934119387ac316c74badbe4f6d3f106010ec20699c056c40aef75d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d88beb5f106295fc868f0af42486e99169e01d4f35922a46c95f73e8c18cdbab
MD5 2e0af9c81795ee6f7b1e36b6ea09cf5d
BLAKE2b-256 520773530990bf6ee527ef45a73fc8bb1d07810ba512236dff3af1e937851102

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ea5c9aedcfcab459fd485d83e446693a678f710e287f55fb220600fea116419f
MD5 d1e03d8541958d2ee818ff8cf6200fda
BLAKE2b-256 a306a6a400efdfa3c96e32973b0256d487fca56de696cba0cd6ebf131fc96d19

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio_tools-1.25.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.16

File hashes

Hashes for grpcio_tools-1.25.0rc1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b71b2cf2eec41cef517a7615275bbe79e0f6e085de555a1e29cea8dc4ec0dc4d
MD5 5795cfa157879aaf3a33fd604fa6c8b7
BLAKE2b-256 b1de655637f48f65099ce0501a7405d12383a3c11745e0df86fb3e0faf1f356a

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