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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

grpcio-1.14.1-cp37-cp37m-manylinux1_x86_64.whl (9.3 MB view details)

Uploaded CPython 3.7m

grpcio-1.14.1-cp37-cp37m-manylinux1_i686.whl (8.9 MB view details)

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m macOS 10.9+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

grpcio-1.14.1-cp36-cp36m-manylinux1_x86_64.whl (9.3 MB view details)

Uploaded CPython 3.6m

grpcio-1.14.1-cp36-cp36m-manylinux1_i686.whl (8.9 MB view details)

Uploaded CPython 3.6m

grpcio-1.14.1-cp36-cp36m-macosx_10_7_intel.whl (1.9 MB view details)

Uploaded CPython 3.6m macOS 10.7+ intel

grpcio-1.14.1-cp36-cp36m-linux_armv7l.whl (8.5 MB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

grpcio-1.14.1-cp35-cp35m-manylinux1_x86_64.whl (9.3 MB view details)

Uploaded CPython 3.5m

grpcio-1.14.1-cp35-cp35m-manylinux1_i686.whl (8.9 MB view details)

Uploaded CPython 3.5m

grpcio-1.14.1-cp35-cp35m-macosx_10_7_intel.whl (1.9 MB view details)

Uploaded CPython 3.5m macOS 10.7+ intel

grpcio-1.14.1-cp35-cp35m-linux_armv7l.whl (8.5 MB view details)

Uploaded CPython 3.5m

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

Uploaded CPython 3.4m Windows x86-64

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

Uploaded CPython 3.4m Windows x86

grpcio-1.14.1-cp34-cp34m-manylinux1_x86_64.whl (9.3 MB view details)

Uploaded CPython 3.4m

grpcio-1.14.1-cp34-cp34m-manylinux1_i686.whl (8.9 MB view details)

Uploaded CPython 3.4m

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

Uploaded CPython 3.4m macOS 10.7+ intel

grpcio-1.14.1-cp34-cp34m-linux_armv7l.whl (8.5 MB view details)

Uploaded CPython 3.4m

grpcio-1.14.1-cp27-cp27mu-manylinux1_x86_64.whl (9.2 MB view details)

Uploaded CPython 2.7mu

grpcio-1.14.1-cp27-cp27mu-manylinux1_i686.whl (8.8 MB view details)

Uploaded CPython 2.7mu

grpcio-1.14.1-cp27-cp27mu-linux_armv7l.whl (8.4 MB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

grpcio-1.14.1-cp27-cp27m-manylinux1_x86_64.whl (9.2 MB view details)

Uploaded CPython 2.7m

grpcio-1.14.1-cp27-cp27m-manylinux1_i686.whl (8.8 MB view details)

Uploaded CPython 2.7m

grpcio-1.14.1-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.14.1.tar.gz.

File metadata

  • Download URL: grpcio-1.14.1.tar.gz
  • Upload date:
  • Size: 14.4 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.14.1.tar.gz
Algorithm Hash digest
SHA256 4bf23666e763ca7ff6010465864e9f088f4ac7ecc1e11abd6f85b250e66b2c05
MD5 0987ae2e47b5103de3cacc437874a3c5
BLAKE2b-256 bcf09ac37e255a5f1023cba15c425be5c03fe687eed0f8d98f0fa305de3159c0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.14.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.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.14.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 39ade6613e355dea85e69d8ce82447fee906f29b5603326e6ba8b44213f2611b
MD5 80a2220e2f232f68433331a3b412627b
BLAKE2b-256 b10bf46b579e65e11a1ddb0d2a19f458cac91ed71841fed39322e980fd58be44

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.14.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.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.14.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 f363852c617c7e15760acf0d20b7c6db8bc4507f1507dfa35e21e6610005a598
MD5 26632826ef4b0fce69160b99c56d08e9
BLAKE2b-256 740f9305172443511bd3ac9d63cb526db5245070131725f305ae942d7b67c8de

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.14.1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 9.3 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.14.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4d95f832eb37f667186369182ccbd44dc163a8a81392576daaf3f039a139fdff
MD5 ee5cce25a726f1f80e575c76e1baf429
BLAKE2b-256 07e76fcbafca18b33e5fcd0baf966a74ee5169e65d4ffda272c5048cb1642e5c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.14.1-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 8.9 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.14.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 6480da99906c8f7fb822179dba243de7dec2b0405302a9339cb6b6c597899ee1
MD5 53969cf24719db124a7ce1f8724c0341
BLAKE2b-256 915e0a8692067c24c13198713ca32a939f096760bf9452aab991cdf9b2b8a2d0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.14.1-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.14.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bbbd2a993747e312fba0d7b6497a2b5c403d67995e0c59218ffe35dabe1121ff
MD5 61f496d957a3276c86e2778a9ba037ee
BLAKE2b-256 fd4969c8b0e963566fe02f0d215b42bf95c9fd0d8f3e85b1649470684adac723

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.14.1-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.14.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 6e633d69ec2b0c5c9ecf92106523695175af33953535188d0e6a1abf98af3aa4
MD5 6797b16fbc60fe7988788569a2dfcd24
BLAKE2b-256 f0b8cd13f956c290df74e5ff2b549f4afb090c06326d597101d4db3f9b4308eb

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.14.1-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.14.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 22a64e6a43f5e536326cec78e85c141e283d9ff44887a662c8672c9ba80e091d
MD5 2055dcf9aa433da9f415c1a4b5f82207
BLAKE2b-256 1ceb1ecf5a7549b7b3a6641d90b5db9dc843de2961ce71676f60647b0c50dea1

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.14.1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 9.3 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.14.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 435d6f91a583ae07776d92305c392ba4cfae39af8fce3fdbf8fa50b857f08f65
MD5 93706edc152527080a34676041f3b394
BLAKE2b-256 31170f79ff2f56018aa0e12ffb1cc8086df6bd6cfc71efea0df64fe78d569f71

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.14.1-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 8.9 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.14.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b18188e5bcebe4c3cacf8c174c5da05fc1da68aa99bf07e3b93a6570cbf8cf1c
MD5 3be583cd84f843cb1078ab27fd601219
BLAKE2b-256 70a9d931df4b2e547429148148589dc55a00d3b93af3317cdd18550acab5ef03

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.14.1-cp36-cp36m-macosx_10_7_intel.whl
  • Upload date:
  • Size: 1.9 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.14.1-cp36-cp36m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 6b5f34a1a1bde97f71058dd0ffe6c0d4432c944fa843a324879120f437d6bebd
MD5 825b4367c391860561b58d0ab3d6144c
BLAKE2b-256 53e4c430af39c28ece28fa632c7652d8bb374e385f389a58f94df8235e56a19c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.14.1-cp36-cp36m-linux_armv7l.whl
  • Upload date:
  • Size: 8.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.14.1-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 d7b83e630d8b4dfe0a0de64d390e0160b352415b5aa3da09115b2602a79da437
MD5 f35e448aae0f14b09c5f5511c59164c3
BLAKE2b-256 8aa323ed930d3460906646b54fef074087ad39fd2731b70826c41594c20d156b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.14.1-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.14.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 334280c56a35453b8e7d636b3c8038bb979832ef6a620a475293a5f0d91ae208
MD5 a5f9ba6e09bab1356dead2aaa6612c20
BLAKE2b-256 81e7d321d750a5e11469e076677bc5ce9a1da591a2048e854af206f88a9e7a09

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.14.1-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.14.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 213da2a8df928eabb4723621b8e3b7ed52eb9c4e5d9bb14439723c1d9fa17a70
MD5 6807c58c7adaf2d117ecd8a9b8193485
BLAKE2b-256 53a7c49513fa595f4360c96df74b0d9481b6c81f209c9ea049a242c7373006cf

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.14.1-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 9.3 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.14.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d9e4b0dde1e74162ac57e3022a61ee80370c5c70414038166514c2a799995e1f
MD5 8b6f305f20ff2c93c0238e7c6dc29974
BLAKE2b-256 66e067edd247828d240491204525527e05cde80b5c1115534c4d05859b376c68

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.14.1-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 8.9 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.14.1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 78bcf7a7828b377f11f00d6146e3e56c529ebd016e2d8146ec4120cafa080839
MD5 defd62a243d80aa60ae65432df2d2aee
BLAKE2b-256 d76237836f180340ccd64ad107723de158867b43b22b32038de94ac2788c1e4e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.14.1-cp35-cp35m-macosx_10_7_intel.whl
  • Upload date:
  • Size: 1.9 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.14.1-cp35-cp35m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 9122d053577fb36235733934680349a97af39d6f91675d16a2ff05d966095253
MD5 da61d098ffa45c98df550327c7e43f15
BLAKE2b-256 afbfd93fffac8c542d967442338ca5b2db3d6d0cc2286101fb6d7748684ac8fb

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.14.1-cp35-cp35m-linux_armv7l.whl
  • Upload date:
  • Size: 8.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.14.1-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 57c1b34424c51c385a982a4faf8f9d97f30102ff1b0111971b0b5c1bd4b182fe
MD5 4da5b0650e14e74445573db6543f1dc6
BLAKE2b-256 1446a7d620cfd8eba1b30e5f886a0bc324b75997edcbdcfc43f39f3856c569b6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.14.1-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.14.1-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 33fc815a8752ddc844579f9ff724855561701dc3d52851aa0483e81e2f796af8
MD5 4a6cd6ea641b80be64551c2a1a730a8d
BLAKE2b-256 f024881bc432f338a0166de0af113fb7fa32ff791f53d7cfaedb3237253d3b07

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.14.1-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.14.1-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 02349c8d4e33fa2d1f98b0493eeb517573cfdbbec6b1f20099e224bc3452ddab
MD5 335db6bcc3efc27702b5174a07c2be2b
BLAKE2b-256 31c126ee552819fdae1bb68eef992815b607a3abc5aac0af9cce6034da814a0f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.14.1-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 9.3 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.14.1-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 679f92ec9185b58f9d944caa9c2b843537143732b9e61e195c4c6a594e1cb60a
MD5 4f56d20979230ffe4f98c31fa2137d73
BLAKE2b-256 48ad44d573b2ae87a12806827329e9d22331c1e27d227c20a878499accd06ee0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.14.1-cp34-cp34m-manylinux1_i686.whl
  • Upload date:
  • Size: 8.9 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.14.1-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 19814e9e0cdc6ee4582fbb55ed178a35b4f5a8417096396628f8664b233441b8
MD5 4f65aaaa0c2fa5e5ab8ea2f8b760c1c8
BLAKE2b-256 2bb2954f85fbedcb79bfe6d81ea44c30b4a74638396954347ad9b94b2da3aaf1

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.14.1-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.14.1-cp34-cp34m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 19841f07caaf3d0fb12ae906a2c23e177d1c3304bc526c8251db2e5d6f23b31f
MD5 3b7862cd87c65dcb3b4ff55d3159877e
BLAKE2b-256 fb5d217c922ba615f3480e048e73c564fcb06ed41927052107e51143a1d57f01

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.14.1-cp34-cp34m-linux_armv7l.whl
  • Upload date:
  • Size: 8.5 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.14.1-cp34-cp34m-linux_armv7l.whl
Algorithm Hash digest
SHA256 576c5edc856f6607818976055529be0f480c818f8fd09dff0e6c60e443d276c1
MD5 65c332f10aa28d9910c57689d7911241
BLAKE2b-256 925acd2f59570e0a196cd48f7c6ebcb3af9183951a14fc5431ad9bf252a9f66e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.14.1-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 9.2 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.14.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 50712917e24057acea00be61eeac430e8d6790b5944826d9b63c928ce336d685
MD5 2e2fa969d31166b6dfdb68d0cdd829cf
BLAKE2b-256 b584c0d0a0355f2e3ea1e49fd81aa123e0bf42bfaa58be56583cc3b9baaf2837

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.14.1-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 8.8 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.14.1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 0087fb171150b93ebe98763b94dcab071d1af289569d6d163166f38b31ab2fc6
MD5 f07c948e5e1883a97ccbf916e0555ee7
BLAKE2b-256 4b5761ddd41b879666335b14ed7b87534fd78d7dd560c596d565da106ca6ce2e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.14.1-cp27-cp27mu-linux_armv7l.whl
  • Upload date:
  • Size: 8.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.14.1-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 03b546c32b67735cad029a45dc5b5281f7038a00c2b1a097779893f635c2bf81
MD5 69b33306e3b02a85d1c2aa34b5b5eb7f
BLAKE2b-256 6250460971b6d3532d7a94a4dcd3bce76c3f7bf30c0479bb6e201beef1951237

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.14.1-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.14.1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 8054ff2be82cf08d416e9596cad18977c28cbe25e442c2513aa6fb33ada7cb19
MD5 1afe4587a01087a91d0d32cfe285a5ae
BLAKE2b-256 29aca7ce0c079eb6c97da1ee32ecc4b57823397c7a2496af817eb5a553779598

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.14.1-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.14.1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 f9bf9749f20757ccec8abce9f25666ae3bccfd747f9df2b83261942be982e3c7
MD5 104c2ccfdd3279c9061f14ffe2fc32b1
BLAKE2b-256 ca0be2497470e0be983528f36a692156ddd8f84d712ce370d651b4762c03cf08

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.14.1-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 9.2 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.14.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ab7144bf2c8c13eae4f16a08ae8a9bc8d9eef514c41312a2e3d3a5d5aab900c4
MD5 71a250522ed9f1a4389875811cf077ba
BLAKE2b-256 4f3843877844bbf1076905ba4830171e941bcbd3f54dfcf224e4516cdedba551

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.14.1-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 8.8 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.14.1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c12ee6d554eac17b7b11b0baf97a31dde27e8ad5ebcfdc088fdff1118def62d7
MD5 e24be8116ad17fca6608299e15153e1c
BLAKE2b-256 7f042693d913865e66d329d8242c1bf01001a856acee75939317cd0eda27b019

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: grpcio-1.14.1-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.14.1-cp27-cp27m-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3a3baa77bd1183e963766f57a70475b970c8b20462f77e497b6062197c134437
MD5 a684e4a38a38978a7342a8ee1c1f6359
BLAKE2b-256 77a1a587467be4cc44219425968a0620629d044bac787388fc1bc52fae6ee0e8

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