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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

grpcio-1.15.0-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.0-cp36-cp36m-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m macOS 10.7+ intel

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m macOS 10.7+ intel

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.4m Windows x86-64

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

Uploaded CPython 3.4m Windows x86

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

Uploaded CPython 3.4m

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

Uploaded CPython 3.4m

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

Uploaded CPython 3.4m macOS 10.7+ intel

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

Uploaded CPython 3.4m

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

grpcio-1.15.0-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.0.tar.gz.

File metadata

  • Download URL: grpcio-1.15.0.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.0.tar.gz
Algorithm Hash digest
SHA256 15a5fc23ba2e5f30758fbb8763f79a764e3de1ffcb92c2ccd46f45ffa63910d2
MD5 c8223de87ebc76e0201c2e7c56ed32f6
BLAKE2b-256 f740875c30426e2df486dbb032c28478b2d551f6f8531cbc566040507bd7a4e5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.15.0-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.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 eade750711df77696ae8361412018c0b294bb078fc0a3b51f5a77e789af692c7
MD5 0a0585736f343b6ae5778700af333179
BLAKE2b-256 d93516d4cab8e5bcb8a4b5f8a8032b76cdbe74c388100885c5a1e0d143ec8be2

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.15.0-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.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 113d457cf87a2d642820f2a442008d714c52f9760fea2c02b22fe06aacc40531
MD5 d5a7e45eed1a1d795ae47bb9530ae7fa
BLAKE2b-256 dfd55b488cf6efde43b2fe039d29b3bf68d1b1636b2cb17a7c921f58862b8ed2

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.15.0-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.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d360ccb3aedec5b799c8b0d7968013b92a5a67fad00da77ff987360d59182f9f
MD5 855036e54cb6a8d186f50b239c82752c
BLAKE2b-256 1c372c204d0150084f72a13f2827c239acf03d79345cf233a22eb3566bc9f1f3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.15.0-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.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e0b262828da4b0986ab9994ed8727655b21f1575b6b31cf2f05ba0d9ca650bae
MD5 abbf186da18cb2e3bb609cc8c3210c9d
BLAKE2b-256 201d75a2dff96a602eb6797ecef2c94419be3dba783621ec5076e422bf4b15d6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.15.0-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.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2767b87260b2256d738a496d5aaf8ce4bbeef34cdbe9c852508c09a36ff35631
MD5 0b8418d003928896f7401acc03cb6f7f
BLAKE2b-256 9448e3556c285229b58b529dbde4e1f8529851ff703fce43b219428e113ae41e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.15.0-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.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 3b16f12bedb3fc22db8c4a55119f460778330d0ca44cc9716d106170b4270685
MD5 4dd78efa10487db6fd1d8127b51fb5ab
BLAKE2b-256 0e1343a98e233716f1d9846ca65322b065443af5ea1aed5f631e240d231174c0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.15.0-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.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 5f54bb445a443a12123d88f3f83a715d00c0579481201e08caa931a0c38f794e
MD5 14db2743a64bc2585f610513d3ace836
BLAKE2b-256 2ee0470d7031a51178cc3f3eeb91f91f0d53b156707443874cbc15b9cce71e2e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.15.0-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.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cba9f8b4910644c6664f875ba20e8ea031919118d4567fe0b77aee28d7fa32c6
MD5 8396ba79089c413e5c81c4d6fb91d603
BLAKE2b-256 a79c523fec4e50cd4de5effeade9fab6c1da32e7e1d72372e8e514274ffb6509

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.15.0-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.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 25f2d6120e710223195027375855a06cfc5a4f448e89b20f8f09975527297aeb
MD5 496e63d0375a363c846ff4f118ee05d3
BLAKE2b-256 ae2126168783d6500c70fd2804857d71fd1a9bfff03312673f4bbc5a2ef9952a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.15.0-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.0-cp36-cp36m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 14a16eb13472cb16213dad17d4580d885824e04b93ae4323ed532168f99477a0
MD5 9af8e518dca8a19f4c3d208c6e2ee60a
BLAKE2b-256 241a84396834b04cd43be3c10f5faeadf62d01689b704b3c99d09e1e08a41d9b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.15.0-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.0-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 7b2f2882a909213d038f399dcf07995870e3a2f27a93ce8dbfb65db860df30be
MD5 2a155a56f622ca97c08a776564c0fc08
BLAKE2b-256 5c27b3675528422e1933db1d5fb35a99a5716634cbb56a25974465ec5aa26730

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.15.0-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.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 7ab4fcef50ec8257a4ec5ff676001d9be466aa965df57ccf89873a263c7bb4ae
MD5 c38702eeb3f7769122875a00e830cf56
BLAKE2b-256 6772bb365596cdd2e8c64e3287930846e333b9032038de5c6d5e00042282ff43

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.15.0-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.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 114399097a2af15fac768dd99c32171ed33804bf127945b5cba0fb9f4380b09d
MD5 8ef99636c4a35bf64c503b5618f62ccf
BLAKE2b-256 18082bf0a40a37c6beef3e9e1af1c3c7663e784c8994bda7e921d47e2618ed63

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.15.0-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.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6bb4acb354a0f84ca767658bf414b70dbfc88a41210456720e5ef1248354b0ad
MD5 530b65e42d31d12281059e1d38a78999
BLAKE2b-256 2d2d7d9cfd7b3fe8cb0281ea204f5f721749a4bfb048654f389887b82a295588

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.15.0-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.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 aa4ca8f74500d90a6b8745aef03fb765b8c1655524f695baa46320763aad5822
MD5 17f4f843b096ab1abf44692563dd116f
BLAKE2b-256 9020d25141c12f7fe3fb6a2f6bf4031e7d224b27d555d09ee7f6e94c64b49087

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.15.0-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.0-cp35-cp35m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 2fffb227db6d95e62086563720518cd5cdbf7127675f49067f55d3c7cca019c4
MD5 a4f18aa9cc9ffe9dc4a8e469c7d34f62
BLAKE2b-256 7588e923e91dcad2e7fe0cead1d6a62e82f95f5c4a3933c5bb8676c10f5205ab

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.15.0-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.0-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 4473f462accbfb6207174af8bbdd21c09d355a16d6a718e24810afb236ed237e
MD5 e2e63bc6abc47eb907f3333c99861c8f
BLAKE2b-256 af64f0378edf5078514c4fd68b67f6d1117332eee569ac51bac41fa3a562250e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.15.0-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.0-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 67f1dd57935abe0d090f3b5f9fbc4d7ef84a53c9cd806c7cb91a2bda9dd8f14a
MD5 6437c1634019d25017fa66c8e00a6a11
BLAKE2b-256 3e15968d06af3936c0d556e6624f51311eeba49e9f9805d12741d74fa930a0b6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.15.0-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.0-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 e9caf61a789dd657404195d7bc0d3e521bf1878b43448ffe8b03bb03e27fb23d
MD5 01e5a36776fec01be94fe8d6e96c47c1
BLAKE2b-256 dab4399e6406ebaa11facef97a39143ce5fb6f5c95159cfbc8a3b4d104aa908f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.15.0-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.0-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 00e0ed7a4558b65df24aed9369880c7e247bcd48c9c71c9c40f3143ab02842a5
MD5 8d7c6342e339153fe472c2c6314374af
BLAKE2b-256 982de56098b7bc8c76ebbdfafeb0c1997b98c15f38dca8f497c20064559a0135

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.15.0-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.0-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 21901beb267bd996a094d960996bff047db7c10ad3bfa7bd4689eb0374101e63
MD5 f75505be72026ef01975eff6462ed51e
BLAKE2b-256 31586e13a1b478ca5a4f22ea386868b95dfe2053f53ca118122ba6988bf07cb0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.15.0-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.0-cp34-cp34m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 9380f8365d9fd7fea6497615295b4e749345bdc7990655d52ad22fef0127f1d3
MD5 756c98dd3ec06ad0b4c85f6f9ad96a4d
BLAKE2b-256 30cc0f3e4f4b3325602da08d3cc9b32aeb823f3c7ba88fba1c246614f2c68c22

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.15.0-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.0-cp34-cp34m-linux_armv7l.whl
Algorithm Hash digest
SHA256 4a70e37c6bf2f81f48f739184c058c9912caf9fd85db6b8688e8916b748b02cb
MD5 eabed77223de0c1831b887e4d6f92124
BLAKE2b-256 dfb6f05fba8afea1827024265736489a75694f2dbc372a44d09c72af1b557cfa

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.15.0-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.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 670e884e5b5c8805e30d214da790cb86487db27ed9e7ccd74f11a2bc5a27df2b
MD5 e47f9eba2fc41357900a769f19f4837c
BLAKE2b-256 3d15b34114198a2bc9c9bb73b21e2b559468a1a68bb28b373d21da6e51d6204f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.15.0-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.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 529b872bddc0ad5243fa58f77dfbac1a04c9812f35a4d2033cba795e3b579411
MD5 b21f943425f73d831c3655d5aa93b5f6
BLAKE2b-256 022c43dfa3bd0cc71247d8fc0a1f55722012f19315c0a40508f4a692ba4bfacf

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.15.0-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.0-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 f322631581149eb35f834ea0defcacf4edc8641db206f83027b9c239aa46a442
MD5 3b709fa0c8101f63ed073ee6b43ef1f7
BLAKE2b-256 37e0b52dfab7185f008a582dfd6cfa6cf4201a7da1746ccca90fedbec88c969f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.15.0-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.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 bf203d00fa7d7f9a67646c5468732b03330f7910fffa1bac7dcde956d27d3508
MD5 efd2ee3ad39277834381ecb3e7aeab19
BLAKE2b-256 12d7b7311f393c785dd877259e6427a3abbf7c75871b53da19c70a59ecf4266a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.15.0-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.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 253ae7ed8b50132ab331146ecb329d740330f9f76b6986cc36c3280eb74878c7
MD5 87b49685bec0462973d55aaa859a213a
BLAKE2b-256 dddba8772470480f80e590e67e4b79f45abeadf871013f33626a6068b826f795

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.15.0-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.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 701534465e7936524e786f9448e9ccc9a519fddb59bca744ef2abe04fd737104
MD5 7aa4366caf64d8853e2d98acf88d18e1
BLAKE2b-256 fb4fcf4032866aee8b43518adb10b0563334f05b3d87e98108c15b6c7ac195b2

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.15.0-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.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3f57682b103febfd603350d2e0c91bdb5240593dd3c377ade9ab27da0540f4ad
MD5 9acc361eb90a5683a3b7b90720490f79
BLAKE2b-256 b1de18d737ee7ffc878825deeb50a74d7e4ec1c78af13015c6cac3a53669ea93

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.15.0-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.0-cp27-cp27m-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 16cdd82a3aed9b6d3067492413bfffe61bf0f98c06f2942f887d79b8fd68898d
MD5 01643ab8dc2b9ce9a7f6650fefd2ec71
BLAKE2b-256 13b57ada39c840c53f7cd2db642a2cd66d768a1366b4c26ffba4ec9e46bea58e

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