Skip to main content

HTTP/2-based RPC framework

Project description

compat_check_pypi

Package for gRPC Python.

Supported Python Versions

Python >= 3.5

Deprecated Python Versions

Python == 2.7. Python 2.7 support will be removed on January 1, 2020.

Installation

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

Installing 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!

Installing 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 RELEASE_TAG_HERE 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.28.1.tar.gz (19.5 MB view details)

Uploaded Source

Built Distributions

grpcio-1.28.1-cp38-cp38-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.8 Windows x86-64

grpcio-1.28.1-cp38-cp38-win32.whl (1.8 MB view details)

Uploaded CPython 3.8 Windows x86

grpcio-1.28.1-cp38-cp38-manylinux2010_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

grpcio-1.28.1-cp38-cp38-manylinux2010_i686.whl (3.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

grpcio-1.28.1-cp38-cp38-macosx_10_9_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

grpcio-1.28.1-cp37-cp37m-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.7m Windows x86-64

grpcio-1.28.1-cp37-cp37m-win32.whl (1.7 MB view details)

Uploaded CPython 3.7m Windows x86

grpcio-1.28.1-cp37-cp37m-manylinux2010_x86_64.whl (2.8 MB view details)

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

grpcio-1.28.1-cp37-cp37m-manylinux2010_i686.whl (3.1 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

grpcio-1.28.1-cp37-cp37m-macosx_10_9_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

grpcio-1.28.1-cp36-cp36m-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.6m Windows x86-64

grpcio-1.28.1-cp36-cp36m-win32.whl (1.8 MB view details)

Uploaded CPython 3.6m Windows x86

grpcio-1.28.1-cp36-cp36m-manylinux2010_x86_64.whl (2.8 MB view details)

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

grpcio-1.28.1-cp36-cp36m-manylinux2010_i686.whl (3.1 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

grpcio-1.28.1-cp36-cp36m-macosx_10_9_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

grpcio-1.28.1-cp36-cp36m-linux_armv7l.whl (20.1 MB view details)

Uploaded CPython 3.6m

grpcio-1.28.1-cp35-cp35m-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.5m Windows x86-64

grpcio-1.28.1-cp35-cp35m-win32.whl (1.8 MB view details)

Uploaded CPython 3.5m Windows x86

grpcio-1.28.1-cp35-cp35m-manylinux2010_x86_64.whl (2.8 MB view details)

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

grpcio-1.28.1-cp35-cp35m-manylinux2010_i686.whl (3.0 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

grpcio-1.28.1-cp35-cp35m-macosx_10_7_intel.whl (5.0 MB view details)

Uploaded CPython 3.5m macOS 10.7+ intel

grpcio-1.28.1-cp35-cp35m-linux_armv7l.whl (20.0 MB view details)

Uploaded CPython 3.5m

grpcio-1.28.1-cp27-cp27mu-manylinux2010_x86_64.whl (2.8 MB view details)

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

grpcio-1.28.1-cp27-cp27mu-manylinux2010_i686.whl (3.0 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

grpcio-1.28.1-cp27-cp27mu-linux_armv7l.whl (19.8 MB view details)

Uploaded CPython 2.7mu

grpcio-1.28.1-cp27-cp27m-win_amd64.whl (2.4 MB view details)

Uploaded CPython 2.7m Windows x86-64

grpcio-1.28.1-cp27-cp27m-win32.whl (2.4 MB view details)

Uploaded CPython 2.7m Windows x86

grpcio-1.28.1-cp27-cp27m-manylinux2010_x86_64.whl (2.8 MB view details)

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

grpcio-1.28.1-cp27-cp27m-manylinux2010_i686.whl (3.0 MB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

grpcio-1.28.1-cp27-cp27m-macosx_10_9_x86_64.whl (2.6 MB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

Details for the file grpcio-1.28.1.tar.gz.

File metadata

  • Download URL: grpcio-1.28.1.tar.gz
  • Upload date:
  • Size: 19.5 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.17

File hashes

Hashes for grpcio-1.28.1.tar.gz
Algorithm Hash digest
SHA256 cbc322c5d5615e67c2a15be631f64e6c2bab8c12505bc7c150948abdaa0bdbac
MD5 e70a14c74157bd97f1eb0ba5148aa7d3
BLAKE2b-256 cf7a9744998129fce7e29c5f2d8b0f545913b7383e65d8366fc0ae98d11936af

See more details on using hashes here.

File details

Details for the file grpcio-1.28.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: grpcio-1.28.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.17

File hashes

Hashes for grpcio-1.28.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0ae207a47ec0ad66eb1f53a27d566674d13a236c62ced409891335318ea9b8c5
MD5 b969934e72bacb28b022e7bbaa779426
BLAKE2b-256 09de83090a00281d94781bc8d293d2fd7d58cc19984f93f2b2964abaaa93711b

See more details on using hashes here.

File details

Details for the file grpcio-1.28.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: grpcio-1.28.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.17

File hashes

Hashes for grpcio-1.28.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 505a8d1b4ac571a51f10c4c995d5d4714f03c886604dc3c097ef5fd57bcfcf0b
MD5 b3b3d03b16a3d7f3a22b609e1b741f52
BLAKE2b-256 4a372fecf8aa80053dd41687c90feab6f62a38f4d7be4698360760d8d288e1e3

See more details on using hashes here.

File details

Details for the file grpcio-1.28.1-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio-1.28.1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.9 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.17

File hashes

Hashes for grpcio-1.28.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 42c6716adf3ec1f608b2b56e885f26dd86e80d2fc1617f51fc92d1b0b649e28e
MD5 04be23c92a09ef0c1ea2117aae90a908
BLAKE2b-256 871a03b2c55dac6c205a1c53ee3442402e39dbc455f0ee29e03d79f93f5db5c8

See more details on using hashes here.

File details

Details for the file grpcio-1.28.1-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio-1.28.1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.1 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.17

File hashes

Hashes for grpcio-1.28.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 aafe85a8210dfa1da3c46831b7f00c3735240b7b028eeba339eaea6ffdb593fb
MD5 76d56ec3ea6a2899e173701d365440a9
BLAKE2b-256 b2b1048feec34ad0314799b2757510c042099835741a7aa88ef3714baba70a20

See more details on using hashes here.

File details

Details for the file grpcio-1.28.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio-1.28.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.17

File hashes

Hashes for grpcio-1.28.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 181b5078cf568f37915b8a118afcef5fc9f3128c59c38998ed93e7dd793e3928
MD5 a3fdbd54be22aa9d7455211eb4ec7bef
BLAKE2b-256 52e1345d25c643e14bcca3f509b7e6b50cfc4206abe3b4389aeddceff93af93b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.28.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 2.0 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.17

File hashes

Hashes for grpcio-1.28.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 2e1b01cba26988c811c7fb91a0bca19c9afb776cc3d228993f08d324bdd0510a
MD5 1a217d2e57ae61a693002d0341aa3f1d
BLAKE2b-256 e376c57d515a3c27d669c9eb5b457f0f898b7a1982f55723ccdee44884756cdd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.28.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.7 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.17

File hashes

Hashes for grpcio-1.28.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 3893b39a0a17d857dc3a42fdb02a26aa53a59bfce49987187bcc0261647f1f55
MD5 207afabb9c7366fee3572de53afca06c
BLAKE2b-256 08b7bbb25880ccb728221cbbfaa41201422a5ada405a33044d39e06e8265d724

See more details on using hashes here.

File details

Details for the file grpcio-1.28.1-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio-1.28.1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.8 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.17

File hashes

Hashes for grpcio-1.28.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4fe081862e58b8fbef0e479aefc9a64f8f17f53074df1085d8c1fe825a6e5df4
MD5 68211eded1e8144eeb4133f64f14db25
BLAKE2b-256 f1f4c437929e1a8db457d85c0c16d348a5dd00427114e281a9a0579c07114cf6

See more details on using hashes here.

File details

Details for the file grpcio-1.28.1-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio-1.28.1-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.1 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.17

File hashes

Hashes for grpcio-1.28.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3366bd6412c1e73acb1ee27d7f0c7d7dbee118ad8d98c957c8173691b2effeec
MD5 5d5c7bf868510d025cb6d45de1faed01
BLAKE2b-256 b21e0948fc852601d29638a10a28636fb3fe7096fabc720d74a0ef5d9ed7109a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.28.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.6 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.17

File hashes

Hashes for grpcio-1.28.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f493ac4754717f25ace3614a51dd408a32b8bff3c9c0c85e9356e7e0a120a8c8
MD5 0c9d429835b62cdd2ca996f308471a14
BLAKE2b-256 7805c7450cec52bb1e3d7c56efd384c0ee647cd2b44946004035b3abe3493407

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.28.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 2.1 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.17

File hashes

Hashes for grpcio-1.28.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 245564713cb4ac7bccb0f11be63781beb62299a44d8ab69031c859dbd9461728
MD5 73584cebd9cb1bec3f59e0c3516144af
BLAKE2b-256 975b5d962954bdae84c9d5b06978a15049d947a2dad5b02130b3d984d076c0e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.28.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.8 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.17

File hashes

Hashes for grpcio-1.28.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 5c2e81b6ab9768c43f2ca1c9a4c925823aad79ae95efb351007df4b92ebce592
MD5 61d07898c3791035bd789a298099b67b
BLAKE2b-256 125a49bc1cffb1accccc156643fcbd391682ca2f4120e738a2c0fa0d2f2b6a02

See more details on using hashes here.

File details

Details for the file grpcio-1.28.1-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio-1.28.1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.8 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.17

File hashes

Hashes for grpcio-1.28.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 16e1edb367763ea08d0994d4635ec05f4f8db9db59c39304b061097e3b93df43
MD5 56ad05bff8f7dd112cb51919dfe75179
BLAKE2b-256 f397f74da84d4db8cfe95f9b6aa2469be79af1873fec1adb80405105ed99a0a8

See more details on using hashes here.

File details

Details for the file grpcio-1.28.1-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio-1.28.1-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.1 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.17

File hashes

Hashes for grpcio-1.28.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c3645887db3309fc87c3db740b977d403fb265ebab292f1f6a926c4661231fd5
MD5 f8d5bfcf61100ba716fc544e9c01daf6
BLAKE2b-256 ef115de4ee3c12326d8c1201108eaf116322fa4b6deec9f53d439250d9ea727d

See more details on using hashes here.

File details

Details for the file grpcio-1.28.1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio-1.28.1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.6 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.17

File hashes

Hashes for grpcio-1.28.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3c7864d5ae63b787001b01b376f6315aef1a015aa9c809535235ed0ead907919
MD5 e66165eccd9fe92501ec08cac03238fe
BLAKE2b-256 21cd1aa5b4649c8083410ac2cdeef5d7e834028862d1d5d1c651deb085f4d180

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.28.1-cp36-cp36m-linux_armv7l.whl
  • Upload date:
  • Size: 20.1 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.17

File hashes

Hashes for grpcio-1.28.1-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 16f5523dacae5aaeda4cf900da7e980747f663298c38c18eb4e5317704aa007a
MD5 823608f30b5ef1fbdeef1740f9027037
BLAKE2b-256 091258ea9c587d7ec0a944c77eca6e2b636f1fd80884f354fcdda62e2a6d4a77

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.28.1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 2.1 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.17

File hashes

Hashes for grpcio-1.28.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 c2e53eb253840f05278a8410628419ba7060815f86d48c9d83b6047de21c9956
MD5 81003351fa6369e5ba43ab029a64e490
BLAKE2b-256 33bfb834be50f6ffd57ba5f66c0d92731ea6604cbf7a5b9b06e1fda8defc9c88

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.28.1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 1.8 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.17

File hashes

Hashes for grpcio-1.28.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 f83b0c91796eb42865451a20e82246011078ba067ea0744f7301e12a94ae2e1b
MD5 8e0d70220f2f0acc386794cee5c5c6b8
BLAKE2b-256 4dc8d824d55f8ac845699b5e87367566f4446a7706964d48f4e8b39bec3d3bf9

See more details on using hashes here.

File details

Details for the file grpcio-1.28.1-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio-1.28.1-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.8 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.17

File hashes

Hashes for grpcio-1.28.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a35f8f4a0334ed8b05db90383aecef8e49923ab430689a4360a74052f3a89cf4
MD5 e4f1b39673ca0b623afe69e02e77226c
BLAKE2b-256 cc31178a6fabaf351064c5d35985bfbe8edee863a097de21c6281d5635332ba9

See more details on using hashes here.

File details

Details for the file grpcio-1.28.1-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio-1.28.1-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.0 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.17

File hashes

Hashes for grpcio-1.28.1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 70ff2df0c1795c5cf585a72d95bb458838b40bad5653c314b9067ba819e918f9
MD5 bf0a027439ed4495e8b8e90f0f80c73a
BLAKE2b-256 8167809236f57add2b83f800b95095e2c869f91eb17e48dbdac05fe2c1df28a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.28.1-cp35-cp35m-macosx_10_7_intel.whl
  • Upload date:
  • Size: 5.0 MB
  • Tags: CPython 3.5m, macOS 10.7+ 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.17

File hashes

Hashes for grpcio-1.28.1-cp35-cp35m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 0c130204ff5de0b9f041bf3126db0d29369d69883592e4b0d3c19868ba0ced7e
MD5 82be938d630ad509f54d782bb5222daa
BLAKE2b-256 e233bc5d52363e02b1376fa433be469247b55cb812418c1a6c81c6aafbb914e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.28.1-cp35-cp35m-linux_armv7l.whl
  • Upload date:
  • Size: 20.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.17

File hashes

Hashes for grpcio-1.28.1-cp35-cp35m-linux_armv7l.whl
Algorithm Hash digest
SHA256 4bef0756b9e0df78e8d67a5b1e0e89b7daf41525d575f74e1f14a993c55b680d
MD5 7c9d46943cbb7b1ca5989a05e14b0f7a
BLAKE2b-256 ad2bf11f70462b258eadf67e6a7073c816815b18314133f6109c8a8981edae11

See more details on using hashes here.

File details

Details for the file grpcio-1.28.1-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio-1.28.1-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.8 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.17

File hashes

Hashes for grpcio-1.28.1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 97b5612fc5d4bbf0490a2d80bed5eab5b59112ef1640440c1a9ac824bafa6968
MD5 54a664fbc6e4c13cf11af03bf681d3a6
BLAKE2b-256 5a178e0680cbcda78a3e4da74ef6c1d3c9fcf1913743025469e53bb883248895

See more details on using hashes here.

File details

Details for the file grpcio-1.28.1-cp27-cp27mu-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio-1.28.1-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.0 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.17

File hashes

Hashes for grpcio-1.28.1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c6565cc92853af13237b2233f331efdad07339d27fe1f5f74256bfde7dc2f587
MD5 54b725b71e6c74d2871750cca9ea7b4e
BLAKE2b-256 b4ca476549dfe84a003e9ad47f5470e63dea001be7d70682959a3ab98434c7a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.28.1-cp27-cp27mu-linux_armv7l.whl
  • Upload date:
  • Size: 19.8 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.17

File hashes

Hashes for grpcio-1.28.1-cp27-cp27mu-linux_armv7l.whl
Algorithm Hash digest
SHA256 0ef6b380a588c2c6b29c6cfa0ba7f5d367beb33d5504bcc68658fa241ad498d2
MD5 411de12a673ce60e0d154526c0ceb0f1
BLAKE2b-256 a4163138c5bec5255a1b1bf9b1024ecc22b643c4207c7b328535c4303fdc0a37

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.28.1-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 2.4 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.17

File hashes

Hashes for grpcio-1.28.1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 df749ee982ec35ab76d37a1e637b10a92b4573e2b4e1f86a5fa8a1273c40a850
MD5 b33eddad1d9da759a6dd14c7bd261e7c
BLAKE2b-256 7ff473ecbe0d1ca5e6c89277abf6a8e4c27a6c4cf1f37c0b88e3f28719d9dc81

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.28.1-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 2.4 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.17

File hashes

Hashes for grpcio-1.28.1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 271abbe28eb99fa5c70b3f272c0c66b67dab7bb11e1d29d8e616b4e0e099d29a
MD5 559f4cb3683069744893e10b08dbd47a
BLAKE2b-256 503a0b00e124f3f8450c79f072c62270cfda11bb5da3ffc13fd2f91910cd0e7e

See more details on using hashes here.

File details

Details for the file grpcio-1.28.1-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: grpcio-1.28.1-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.8 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.17

File hashes

Hashes for grpcio-1.28.1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e9439d7b801c86df13c6cbb4c5a7e181c058f3c119d5e119a94a5f3090a8f060
MD5 679914dc84108fa88289efecd497a793
BLAKE2b-256 58e28911b159a5f10ee389f264014f9e7c87f6a0fa00211bb67f5dc38e7ccd9e

See more details on using hashes here.

File details

Details for the file grpcio-1.28.1-cp27-cp27m-manylinux2010_i686.whl.

File metadata

  • Download URL: grpcio-1.28.1-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.0 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.17

File hashes

Hashes for grpcio-1.28.1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f80d10bdf1a306f7063046321fd4efc7732a606acdd4e6259b8a37349079b704
MD5 14d85ba3eec19c2ac6e07fab0e77ab9c
BLAKE2b-256 b51862274f39a51b27c3bbb1604a418878ad6a65a7fe645491abce1da2204ca2

See more details on using hashes here.

File details

Details for the file grpcio-1.28.1-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: grpcio-1.28.1-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.6 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.17

File hashes

Hashes for grpcio-1.28.1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 085bbf7fd0070b8d65e84aa32979f17cfe624d27b5ce23955ef770c19d2d9623
MD5 e3acdf3f75c918ea00670052d419c91d
BLAKE2b-256 73c29a3229ec0f364b33366b5b58c40fcbcea5f624d2ed6571f78f6699b71f77

See more details on using hashes here.

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