Skip to main content

HTTP/2-based RPC framework

Project description

Package for gRPC Python.

Installation

gRPC Python is available for Linux, macOS, and Windows.

From PyPI

If you are installing locally…

$ pip install grpcio

Else system wide (on Ubuntu)…

$ sudo pip install grpcio

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

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!

From Source

Building from source requires that you have the Python headers (usually a package named python-dev).

$ 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

# For the next two commands do `sudo pip install` if you get permission-denied errors
$ pip install -rrequirements.txt
$ 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 the following error on some platforms

    /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

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

Uploaded Source

Built Distributions

grpcio-1.15.0rc1-cp37-cp37m-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.7m Windows x86-64

grpcio-1.15.0rc1-cp37-cp37m-win32.whl (1.2 MB view details)

Uploaded CPython 3.7m Windows x86

grpcio-1.15.0rc1-cp37-cp37m-manylinux1_x86_64.whl (9.5 MB view details)

Uploaded CPython 3.7m

grpcio-1.15.0rc1-cp37-cp37m-manylinux1_i686.whl (9.1 MB view details)

Uploaded CPython 3.7m

grpcio-1.15.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

grpcio-1.15.0rc1-cp36-cp36m-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.6m Windows x86-64

grpcio-1.15.0rc1-cp36-cp36m-win32.whl (1.2 MB view details)

Uploaded CPython 3.6m Windows x86

grpcio-1.15.0rc1-cp36-cp36m-manylinux1_x86_64.whl (9.5 MB view details)

Uploaded CPython 3.6m

grpcio-1.15.0rc1-cp36-cp36m-manylinux1_i686.whl (9.1 MB view details)

Uploaded CPython 3.6m

grpcio-1.15.0rc1-cp36-cp36m-macosx_10_7_intel.whl (2.0 MB view details)

Uploaded CPython 3.6m macOS 10.7+ intel

grpcio-1.15.0rc1-cp36-cp36m-linux_armv7l.whl (8.7 MB view details)

Uploaded CPython 3.6m

grpcio-1.15.0rc1-cp35-cp35m-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.5m Windows x86-64

grpcio-1.15.0rc1-cp35-cp35m-win32.whl (1.2 MB view details)

Uploaded CPython 3.5m Windows x86

grpcio-1.15.0rc1-cp35-cp35m-manylinux1_x86_64.whl (9.5 MB view details)

Uploaded CPython 3.5m

grpcio-1.15.0rc1-cp35-cp35m-manylinux1_i686.whl (9.1 MB view details)

Uploaded CPython 3.5m

grpcio-1.15.0rc1-cp35-cp35m-macosx_10_7_intel.whl (2.0 MB view details)

Uploaded CPython 3.5m macOS 10.7+ intel

grpcio-1.15.0rc1-cp35-cp35m-linux_armv7l.whl (8.7 MB view details)

Uploaded CPython 3.5m

grpcio-1.15.0rc1-cp34-cp34m-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.4m Windows x86-64

grpcio-1.15.0rc1-cp34-cp34m-win32.whl (1.5 MB view details)

Uploaded CPython 3.4m Windows x86

grpcio-1.15.0rc1-cp34-cp34m-manylinux1_x86_64.whl (9.6 MB view details)

Uploaded CPython 3.4m

grpcio-1.15.0rc1-cp34-cp34m-manylinux1_i686.whl (9.1 MB view details)

Uploaded CPython 3.4m

grpcio-1.15.0rc1-cp34-cp34m-macosx_10_7_intel.whl (2.0 MB view details)

Uploaded CPython 3.4m macOS 10.7+ intel

grpcio-1.15.0rc1-cp34-cp34m-linux_armv7l.whl (8.7 MB view details)

Uploaded CPython 3.4m

grpcio-1.15.0rc1-cp27-cp27mu-manylinux1_x86_64.whl (9.4 MB view details)

Uploaded CPython 2.7mu

grpcio-1.15.0rc1-cp27-cp27mu-manylinux1_i686.whl (9.0 MB view details)

Uploaded CPython 2.7mu

grpcio-1.15.0rc1-cp27-cp27mu-linux_armv7l.whl (8.6 MB view details)

Uploaded CPython 2.7mu

grpcio-1.15.0rc1-cp27-cp27m-win_amd64.whl (1.5 MB view details)

Uploaded CPython 2.7m Windows x86-64

grpcio-1.15.0rc1-cp27-cp27m-win32.whl (1.5 MB view details)

Uploaded CPython 2.7m Windows x86

grpcio-1.15.0rc1-cp27-cp27m-manylinux1_x86_64.whl (9.4 MB view details)

Uploaded CPython 2.7m

grpcio-1.15.0rc1-cp27-cp27m-manylinux1_i686.whl (9.0 MB view details)

Uploaded CPython 2.7m

grpcio-1.15.0rc1-cp27-cp27m-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 2.7m macOS 10.12+ x86-64

File details

Details for the file grpcio-1.15.0rc1.tar.gz.

File metadata

  • Download URL: grpcio-1.15.0rc1.tar.gz
  • Upload date:
  • Size: 14.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.15.0rc1.tar.gz
Algorithm Hash digest
SHA256 6e634ad8a5436a9a7d7b5a4415f51386d3528ec1c0ccda7dcc38433a95f2bd07
MD5 f8235fe3a9e5027bc452fc78bfbfe238
BLAKE2b-256 8127906a660ebe3da2c78ddb48a4fe7530f42e6893a68d0a885a59cc7eb54b4d

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.15.0rc1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: grpcio-1.15.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.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.15.0rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 458f696214e86f34fdb3e7ce89f1a3dd263e98f936eaa16e7a85189e78e87b9b
MD5 782566c6303e0dc634cf9c4827f76809
BLAKE2b-256 d487df5dabad8c32c45f968b4702f7b7ea86b61437468ec9837c23cf99e2fdea

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.15.0rc1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: grpcio-1.15.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.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.15.0rc1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 983cd1780b7b51b586ac8e853448e690459bba2afe7a73982cdf3a41de79b1c9
MD5 d158f491af1dd132ed947afd66eb9640
BLAKE2b-256 95d82673b1ef605aeadeca4e80a775d190de76ded0f2dcc34e2545d300c49326

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.15.0rc1-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: grpcio-1.15.0rc1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 9.5 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.15.0rc1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a96ad7b958b19238df87b44cd8af2990f4aea456f3748830bdbc7f8a0338c46b
MD5 950169426399a126a23d305196098ef7
BLAKE2b-256 4bc12ac1c63030760922e7f5d543c313bd5a26a4f46ba358b99197da33b7a1ae

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.15.0rc1-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: grpcio-1.15.0rc1-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 9.1 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.15.0rc1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e62347d05692f08850846b890dd6d2d4ed5aa2c10504e3d295d81f22453cfa4e
MD5 866bb1b2d7cc27cb0ba2ebef0052efc9
BLAKE2b-256 b55c6a9d16c2ee78cbddf04796f00549bb0fcf7981eed3c48457488e60414583

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.15.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio-1.15.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.15.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 55f64c0e6dc7168f00282ada6d34b18aff47a457d610847f79bde4342ed7c7f7
MD5 54781fcb1840771447837679b55dd93e
BLAKE2b-256 1c78773c7ab5082e480a13e2433b0d33579a7aea56c09af57bca6feed0686c64

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.15.0rc1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: grpcio-1.15.0rc1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.15.0rc1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 0055333ef29f284b76a6eb5052b651e1040edc28513d16a046a7d0197f0e98c1
MD5 66326a08b4fcd388d220f534e4e42097
BLAKE2b-256 188ff0ba03330fdd80b9a2e9a49d35daec5dec507c0c9b565037446470bcac03

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.15.0rc1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: grpcio-1.15.0rc1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.15.0rc1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 340f816bf41340ef9e331c7192fcc02cb036b750e0ef94cffb79522c8250c270
MD5 6e837d39662fc0b7be30edfcf6882bce
BLAKE2b-256 7d493eeee30406cf94841dd873f974fdde6912fb70d9d8b19acd2bb6d47eaf04

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.15.0rc1-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: grpcio-1.15.0rc1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 9.5 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.15.0rc1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a912bdcf784894aac59f9e4593acf2667234499e4e9907a53af8104c536d3d8d
MD5 9c4266aee711b2fe430e03f44db79102
BLAKE2b-256 c36508a78b1c094aab603725a90d1ad9f297504961666bad784c5fe0933f86f2

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.15.0rc1-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: grpcio-1.15.0rc1-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 9.1 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.15.0rc1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d746c7cc17049bd7c0f9cd7685657c9dc02a5a91c47f7b0d2e114c99463243a7
MD5 39a489844d3f1803106b14c6f7cb3540
BLAKE2b-256 9dadcc2fe27dfe9cae41e7fbf8578c820251c333bdef98220afc4c0e39815f1c

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.15.0rc1-cp36-cp36m-macosx_10_7_intel.whl.

File metadata

  • Download URL: grpcio-1.15.0rc1-cp36-cp36m-macosx_10_7_intel.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.6m, macOS 10.7+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.15.0rc1-cp36-cp36m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 6c64afee84cbbed80b4d1ba38b58a658d3de8a06c02a38a810e8c7a318e68370
MD5 77127067abd8e73f52008a4ac4573b4b
BLAKE2b-256 e8b1fb2207660dd0f53f85e4822de6d3f9033dd895d34898867a54e0cd4f6568

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.15.0rc1-cp36-cp36m-linux_armv7l.whl.

File metadata

  • Download URL: grpcio-1.15.0rc1-cp36-cp36m-linux_armv7l.whl
  • Upload date:
  • Size: 8.7 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.15.0rc1-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 391f2c6e3f2e2ca2c41ec56c6f863b16bc26de25a0acbd22d6b65339c3e9ee19
MD5 59a2570e8fe9d09f2c314eec32456484
BLAKE2b-256 6cba48f5e963fead6afdf63bd39ed551011698eb6b979c5753dd9b927ffa5e7d

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.15.0rc1-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: grpcio-1.15.0rc1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.15.0rc1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 92db1e49546690f75e70dc97665253b55978d303d7bfff530708ba0896e7d5f7
MD5 6a7b81e90754b6e20a3ff2ae4997324e
BLAKE2b-256 87643d15019b872712f77a5da66ab4c2002aababde68e13c812229e5fce2e942

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.15.0rc1-cp35-cp35m-win32.whl.

File metadata

  • Download URL: grpcio-1.15.0rc1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.15.0rc1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 2003044ee10f3cbf100b10693fa551fe5cf542e624c71c165752d630a0d357c0
MD5 fb1b1d44b71dc10f40acbbe7c158648c
BLAKE2b-256 ee05c3435a0d6677720e134a9fb7c6b1897aedea2252e24e1c7a7e6739a31072

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.15.0rc1-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: grpcio-1.15.0rc1-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 9.5 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.15.0rc1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 96ae720aaedc49322d016fb7f7797cb8817671e9bf9f41da48a26c8709924bb2
MD5 57a432fd3ddf4f9d5961204287b53312
BLAKE2b-256 be04fd8e851ebe6e16b1eaf611c4313d19e9cb7650b244cde33f26f07532e309

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.15.0rc1-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: grpcio-1.15.0rc1-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 9.1 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.15.0rc1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 641e16a4585d17e674001305e4b9fa673b07a724d5addffad52f8d4d92408225
MD5 40f08285013cd212b2c41420b2caa67a
BLAKE2b-256 07a202fcb0f4a42797ea662cb5ab18388924b4d505a93997577e40835fb46686

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.15.0rc1-cp35-cp35m-macosx_10_7_intel.whl.

File metadata

  • Download URL: grpcio-1.15.0rc1-cp35-cp35m-macosx_10_7_intel.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.5m, macOS 10.7+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.15.0rc1-cp35-cp35m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 53d553a2ccbf20e26a43f6bfbe77fe995d1dbb97b8b969f114a957108f0cfaff
MD5 092e1972972adbeba272749ab5649908
BLAKE2b-256 efb2a6e3db5fb46ee6218f9d1c04bb6641d2c5a2c84a6159d38fd6848150c810

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.15.0rc1-cp35-cp35m-linux_armv7l.whl.

File metadata

  • Download URL: grpcio-1.15.0rc1-cp35-cp35m-linux_armv7l.whl
  • Upload date:
  • Size: 8.7 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.15.0rc1-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 988a22c408e059e0d113165bd2d4731c5948a75adfb89cfad9b2d443c81a265c
MD5 838f4c8022a81c116a60cdd8367e9513
BLAKE2b-256 b3915829d01a1b8c128ede5bdf7f3d03b1354e24865a97db5738418d0ef11a52

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.15.0rc1-cp34-cp34m-win_amd64.whl.

File metadata

  • Download URL: grpcio-1.15.0rc1-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.4m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.15.0rc1-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 d017320a89395abe8883a3689ad9919cf43b35d406107ff09becf08b45dc55ef
MD5 2bcbc40778f31d2f3baf4923b69ec52c
BLAKE2b-256 c217792d0434027932b6401677df1750b542a83935a996d34beba4f5d33d811a

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.15.0rc1-cp34-cp34m-win32.whl.

File metadata

  • Download URL: grpcio-1.15.0rc1-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.4m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.15.0rc1-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 0e6a129cca5f82758be0d205eb150343e6be079bd024037cb14d7a4054e6e1e8
MD5 34a15b162cd787c71b234a673e27df43
BLAKE2b-256 f20af87aa40c12dfe45b507576c35cb21b5023c3ba64f5847f506c5877a3395b

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.15.0rc1-cp34-cp34m-manylinux1_x86_64.whl.

File metadata

  • Download URL: grpcio-1.15.0rc1-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 9.6 MB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.15.0rc1-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 62c222680b701d31d0b29f4a62be1eef32f9f92183cd5958dae27cb562c4f7ee
MD5 c9ed86a6effa524aaad85ebfa7a8f9bd
BLAKE2b-256 3690d365415352c98eca5bc39315b275e9638a49e6d9ffaba2ca928ff2c23a4a

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.15.0rc1-cp34-cp34m-manylinux1_i686.whl.

File metadata

  • Download URL: grpcio-1.15.0rc1-cp34-cp34m-manylinux1_i686.whl
  • Upload date:
  • Size: 9.1 MB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.15.0rc1-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 31859e0ef6afd5ed55d8b19c032c0b4e7e375e2e83731a45b635db4affcacc4b
MD5 6897e26858fa926390bbb137a1d8bc80
BLAKE2b-256 60b45f34ce46021fc393d3c233a1e707191e7491333ad6ea4b81a22ff042c264

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.15.0rc1-cp34-cp34m-macosx_10_7_intel.whl.

File metadata

  • Download URL: grpcio-1.15.0rc1-cp34-cp34m-macosx_10_7_intel.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.4m, macOS 10.7+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.15.0rc1-cp34-cp34m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 d752fbc11cf1ff9544ba448c8fba885f38eddf635298445ccfeff4ba01a999ef
MD5 5097a88c108b2e904df132be225fdc5b
BLAKE2b-256 5085e24fa4ad7b1658760414e22f8683321dc21f89570947daf983728b9a67c0

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.15.0rc1-cp34-cp34m-linux_armv7l.whl.

File metadata

  • Download URL: grpcio-1.15.0rc1-cp34-cp34m-linux_armv7l.whl
  • Upload date:
  • Size: 8.7 MB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.15.0rc1-cp34-cp34m-linux_armv7l.whl
Algorithm Hash digest
SHA256 4c2d57dfd01052bb328d2d3afff0f60d3cb882718888095b59a5e40f15e11a5e
MD5 9cc114b4d320078a141cef84aa2a35cb
BLAKE2b-256 2592d00bec614353bfc948637ab14e2e51c3abf3cf808eb23fdb4496691389f9

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.15.0rc1-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: grpcio-1.15.0rc1-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 9.4 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.15.0rc1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6106590a8e506fdd7817e57b73baa3f3c690b50803f00ffc6f0defc0c510de53
MD5 10667c406592b5ad6ba80a2a611e43f0
BLAKE2b-256 85cdb6f4036cabac7f1548bf4252019296259b85d2ac3b92d4172f6e51082b3a

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.15.0rc1-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: grpcio-1.15.0rc1-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 9.0 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.15.0rc1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 662f0d6a736f0db25730ffccbf66d27829dcd9aa7c3333f4b177c2d9cdf4a0c7
MD5 336000ba77dd3ae124309817f5e61651
BLAKE2b-256 ad54d47095b2c9c6cc144dd742d830e7cde053445e9ec66cb118240218f45756

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.15.0rc1-cp27-cp27mu-linux_armv7l.whl.

File metadata

  • Download URL: grpcio-1.15.0rc1-cp27-cp27mu-linux_armv7l.whl
  • Upload date:
  • Size: 8.6 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.15.0rc1-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 2ce55e3a207b33b17df54667602dde5f981224f5f7224be0d72d7c79c0e77116
MD5 8fbde800081b03e1f1bfbfe3151f0f41
BLAKE2b-256 c1ea6c40eb7b4326701a8f6d57670377e4754e21262a7fdaa0e7501402791e39

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.15.0rc1-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: grpcio-1.15.0rc1-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.15.0rc1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 d45e3f54f9eac29efc801c62ebe727328d72ea2685844220fceb244e1e4b3769
MD5 021093ae1d66ab962b0fd14d593e3607
BLAKE2b-256 eb64efd784c3faaee8f4d6210c779f8480e3b9e403f9629be1b536afc1fd63a2

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.15.0rc1-cp27-cp27m-win32.whl.

File metadata

  • Download URL: grpcio-1.15.0rc1-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.15.0rc1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 cb401d357dd9ece80d178128469b30870887e8db848350cffec25134a30cf99b
MD5 628b96e1b08e80979145c6c657f1f5fc
BLAKE2b-256 59da83a97ef9f993144f29fdf642b294fc1292536aeb2b63800f3afcc6cdf740

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.15.0rc1-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: grpcio-1.15.0rc1-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 9.4 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.15.0rc1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7fa833e4f3eea3b56981aded364775fdbdf9f57c08a73105493f5d5a439eb1a1
MD5 afaa05b6f6e51cbfa00ecb81fa9c2330
BLAKE2b-256 ca3c096785d7cea99a72441bbbead97036e4ab1fb236c4edc3dc15ef819b2989

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.15.0rc1-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: grpcio-1.15.0rc1-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 9.0 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.15.0rc1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 0ad9af28feaff226ecdf29e9c72994b76579e427b57975edf3118d5de6a99f5f
MD5 cc1ebe0263efa46a52da5c8d562c409d
BLAKE2b-256 50a2e83ad738bf5b10518ac9fbe4fc4728414cd942c1af157809a33fcff86a0e

See more details on using hashes here.

Provenance

File details

Details for the file grpcio-1.15.0rc1-cp27-cp27m-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: grpcio-1.15.0rc1-cp27-cp27m-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 2.7m, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/2.7.13

File hashes

Hashes for grpcio-1.15.0rc1-cp27-cp27m-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8ba9d28db19a959ae57b55b0d0394793243b49d9bf6444e071464f8742f027ab
MD5 1056cbb884facec2979fe09b17a5d5bb
BLAKE2b-256 83312b840b993839e33b9cf387d3c0e867af63c0691bfa9bde28523ff114d1dc

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