Skip to main content

HTTP/2-based RPC framework

Project description

compat_check_pypi

Package for gRPC Python.

Supported Python Versions

Python >= 3.6

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

Uploaded Source

Built Distributions

grpcio-1.48.1-cp310-cp310-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.10 Windows x86-64

grpcio-1.48.1-cp310-cp310-win32.whl (3.0 MB view details)

Uploaded CPython 3.10 Windows x86

grpcio-1.48.1-cp310-cp310-musllinux_1_1_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

grpcio-1.48.1-cp310-cp310-musllinux_1_1_i686.whl (5.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

grpcio-1.48.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

grpcio-1.48.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (4.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

grpcio-1.48.1-cp310-cp310-manylinux_2_17_aarch64.whl (63.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

grpcio-1.48.1-cp310-cp310-macosx_10_10_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.10 macOS 10.10+ x86-64

grpcio-1.48.1-cp310-cp310-linux_armv7l.whl (71.6 MB view details)

Uploaded CPython 3.10

grpcio-1.48.1-cp39-cp39-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.9 Windows x86-64

grpcio-1.48.1-cp39-cp39-win32.whl (3.0 MB view details)

Uploaded CPython 3.9 Windows x86

grpcio-1.48.1-cp39-cp39-musllinux_1_1_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

grpcio-1.48.1-cp39-cp39-musllinux_1_1_i686.whl (5.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

grpcio-1.48.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

grpcio-1.48.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (4.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

grpcio-1.48.1-cp39-cp39-manylinux_2_17_aarch64.whl (63.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

grpcio-1.48.1-cp39-cp39-macosx_10_10_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.9 macOS 10.10+ x86-64

grpcio-1.48.1-cp39-cp39-linux_armv7l.whl (71.6 MB view details)

Uploaded CPython 3.9

grpcio-1.48.1-cp38-cp38-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.8 Windows x86-64

grpcio-1.48.1-cp38-cp38-win32.whl (3.0 MB view details)

Uploaded CPython 3.8 Windows x86

grpcio-1.48.1-cp38-cp38-musllinux_1_1_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

grpcio-1.48.1-cp38-cp38-musllinux_1_1_i686.whl (5.0 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

grpcio-1.48.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

grpcio-1.48.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (4.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

grpcio-1.48.1-cp38-cp38-manylinux_2_17_aarch64.whl (64.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

grpcio-1.48.1-cp38-cp38-macosx_10_10_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.8 macOS 10.10+ x86-64

grpcio-1.48.1-cp38-cp38-linux_armv7l.whl (71.7 MB view details)

Uploaded CPython 3.8

grpcio-1.48.1-cp37-cp37m-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.7m Windows x86-64

grpcio-1.48.1-cp37-cp37m-win32.whl (3.0 MB view details)

Uploaded CPython 3.7m Windows x86

grpcio-1.48.1-cp37-cp37m-musllinux_1_1_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

grpcio-1.48.1-cp37-cp37m-musllinux_1_1_i686.whl (5.0 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

grpcio-1.48.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.6 MB view details)

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

grpcio-1.48.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (4.8 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

grpcio-1.48.1-cp37-cp37m-manylinux_2_17_aarch64.whl (63.6 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

grpcio-1.48.1-cp37-cp37m-macosx_10_10_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.7m macOS 10.10+ x86-64

grpcio-1.48.1-cp37-cp37m-linux_armv7l.whl (71.3 MB view details)

Uploaded CPython 3.7m

grpcio-1.48.1-cp36-cp36m-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.6m Windows x86-64

grpcio-1.48.1-cp36-cp36m-win32.whl (3.0 MB view details)

Uploaded CPython 3.6m Windows x86

grpcio-1.48.1-cp36-cp36m-musllinux_1_1_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

grpcio-1.48.1-cp36-cp36m-musllinux_1_1_i686.whl (5.0 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

grpcio-1.48.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.6 MB view details)

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

grpcio-1.48.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (4.8 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

grpcio-1.48.1-cp36-cp36m-manylinux_2_17_aarch64.whl (63.7 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

grpcio-1.48.1-cp36-cp36m-macosx_10_10_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.6m macOS 10.10+ x86-64

grpcio-1.48.1-cp36-cp36m-linux_armv7l.whl (71.3 MB view details)

Uploaded CPython 3.6m

File details

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

File metadata

  • Download URL: grpcio-1.48.1.tar.gz
  • Upload date:
  • Size: 22.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for grpcio-1.48.1.tar.gz
Algorithm Hash digest
SHA256 660217eccd2943bf23ea9a36e2a292024305aec04bf747fbcff1f5032b83610e
MD5 a3e67c6eafc0951ec8cadcf53673eeaf
BLAKE2b-256 e2130f91c6c7eb0d934141743c7663e8808f4dc478dd0a7b0fd2a02a286c0d6d

See more details on using hashes here.

File details

Details for the file grpcio-1.48.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: grpcio-1.48.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for grpcio-1.48.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d751f8beb383c4a5a95625d7ccc1ab183b98b02c6a88924814ea7fbff530872d
MD5 c24203149ead4e419d19aab813f39a8d
BLAKE2b-256 f1407730cc1854e82f5fc5e94bb06c7ba3e9d34714248ff18a3696e71c9dbbb4

See more details on using hashes here.

File details

Details for the file grpcio-1.48.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: grpcio-1.48.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for grpcio-1.48.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5d81cd3c161291339ed3b469250c2f5013c3083dea7796e93aedff8f05fdcec1
MD5 624fcc6783eb2b72b9dc74962a3474b7
BLAKE2b-256 fa27eefd81c1cef9afe5c0a70a9b4f2c4b88d053c704dc9dca49a43646a63a3d

See more details on using hashes here.

File details

Details for the file grpcio-1.48.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.48.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9d116106cf220c79e91595523c893f1cf09ec0c2ea49de4fb82152528b7e6833
MD5 382a417e3da0ff2d2769c968a3b0c1e7
BLAKE2b-256 2810531eec1d8e4063655e746964d39f8e5479b05c927accd8034fa3fa5ba86e

See more details on using hashes here.

File details

Details for the file grpcio-1.48.1-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.48.1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 a5edbcb8289681fcb5ded7542f2b7dd456489e83007a95e32fcaf55e9f18603e
MD5 faccc4299c9b5e8d707c87f1c527d797
BLAKE2b-256 94d97b6acced42c80606405d42f3956b70a69fa3a561e8bb1612ad2e659fafef

See more details on using hashes here.

File details

Details for the file grpcio-1.48.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.48.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c924d4e0493fd536ba3b82584b370e8b3c809ef341f9f828cff2dc3c761b3ab
MD5 8f86617ad7bf1e19cd8eb4dca1680cad
BLAKE2b-256 0c90c8a6a69946e9dcfdaf3bc011ea2792a013b27b8e170ac444ccc30ef113d8

See more details on using hashes here.

File details

Details for the file grpcio-1.48.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.48.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 598c8c42420443c55431eba1821c7a2f72707f1ff674a4de9e0bb03282923cfb
MD5 f10cf5a194a1d6ac951265ec21ec6d26
BLAKE2b-256 0cb734c8d94c54a5170a580772a41d284c9dbc402d6c2339bf2edc445f37f026

See more details on using hashes here.

File details

Details for the file grpcio-1.48.1-cp310-cp310-manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for grpcio-1.48.1-cp310-cp310-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 a661d4b9b314327dec1e92ed57e591e8e5eb055700e0ba9e9687f734d922dcb6
MD5 fbc161f6f48feaae331784c8c4c41cdf
BLAKE2b-256 bc86c7dace324962571f578962c43e9de2ff01fa86635102bf329da4ea2fe66a

See more details on using hashes here.

File details

Details for the file grpcio-1.48.1-cp310-cp310-macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.48.1-cp310-cp310-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 b0fa666fecdb1b118d37823937e9237afa17fe734fc4dbe6dd642e1e4cca0246
MD5 2f79005091265d9138992818908e1175
BLAKE2b-256 90729e7625b9041f249af86a2903090e94959d8fd56b7cf37d3a0cef6039168f

See more details on using hashes here.

File details

Details for the file grpcio-1.48.1-cp310-cp310-linux_armv7l.whl.

File metadata

File hashes

Hashes for grpcio-1.48.1-cp310-cp310-linux_armv7l.whl
Algorithm Hash digest
SHA256 19f9c021ae858d3ef6d5ec4c0acf3f0b0a61e599e5aa36c36943c209520a0e66
MD5 f7690fc37e1f4ab7cb6d26c659118c4d
BLAKE2b-256 86a29b82c4ebe4b2ab03f7fdc2fbc84e707ee7e8f966184466f8020a53bcc7e3

See more details on using hashes here.

File details

Details for the file grpcio-1.48.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: grpcio-1.48.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for grpcio-1.48.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2b6c336409937fd1cd2bf78eb72651f44d292d88da5e63059a4e8bd01b9d7411
MD5 86ca39dd19835084cd5f8513e2068f1b
BLAKE2b-256 63a12c0dec3cd253c6b87bf4e8b73c495e1df2ab98f4acf1b944b69198a5c752

See more details on using hashes here.

File details

Details for the file grpcio-1.48.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: grpcio-1.48.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for grpcio-1.48.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a15409bc1d05c52ecb00f5e42ab8ff280e7149f2eb854728f628fb2a0a161a5b
MD5 bafb5f80a83e36e0761a7e36eb765261
BLAKE2b-256 bfcfe6b9b92bc5af4314043abd7b103149783618a97aa57e1098ec49166f43fa

See more details on using hashes here.

File details

Details for the file grpcio-1.48.1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.48.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 741eeff39a26d26da2b6d74ff0559f882ee95ee4e3b20c0b4b829021cb917f96
MD5 f1c3b7f9ab90b4a1cac43fbdc9791d86
BLAKE2b-256 868426749287a34850fe834dec91d7f2a06e6d7fc0e024933ddeb65bdf255ecd

See more details on using hashes here.

File details

Details for the file grpcio-1.48.1-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.48.1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b01faf7934c606d5050cf055c1d03943180f23d995d68d04cf50c80d1ef2c65a
MD5 f236923a425bf3e1a7d245b026988fde
BLAKE2b-256 aceca626594b4f21afd24163a2e892ad4dc3f635f7eb6a20967aca7cc2739b51

See more details on using hashes here.

File details

Details for the file grpcio-1.48.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.48.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f29627d66ae816837fd32c9450dc9c54780962cd74d034513ed829ba3ab46652
MD5 688575894158098a6ebc033a30b2c5b9
BLAKE2b-256 c3bc94b8f9a6f83265abffa22bb2889dd4c49c8b5bb1d82a840d6c7c1ed1684b

See more details on using hashes here.

File details

Details for the file grpcio-1.48.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.48.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 346bef672a1536d59437210f16af35389d715d2b321bfe4899b3d6476a196706
MD5 edf2922573920fbc67c5112ba93829b6
BLAKE2b-256 2367f8f3300d66c14089d7723401bf908335ca1e3c32a0c64835ac195bde6296

See more details on using hashes here.

File details

Details for the file grpcio-1.48.1-cp39-cp39-manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for grpcio-1.48.1-cp39-cp39-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 c6b6969c529521c86884a13745a4b68930db1ef2e051735c0f479d0a7adb25b6
MD5 61f3714d40e62c46b4d5b52a71e16cb7
BLAKE2b-256 5de82b49a36684248659945197245f0168d266ef174e6d285b5bdc04bdf325bc

See more details on using hashes here.

File details

Details for the file grpcio-1.48.1-cp39-cp39-macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.48.1-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 c54734a6eb3be544d332e65c846236d02e5fc71325e8c53af91e83a46b87b506
MD5 c33421bfa8140e6edcec8f631e40c5ab
BLAKE2b-256 7d2090b8ea180595d9a517628f691673416b26312cb3d348d0ccf05bc193027d

See more details on using hashes here.

File details

Details for the file grpcio-1.48.1-cp39-cp39-linux_armv7l.whl.

File metadata

File hashes

Hashes for grpcio-1.48.1-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 460f5bec23fffa3c041aeba1f93a0f06b7a29e6a4da3658a52e1a866494920ab
MD5 2dd095d3fc1bc94b932fe972eccda896
BLAKE2b-256 56835005a88aca13e7ef84d8ba2f7cca95e2fd11b7485477c696f0b6b9011efd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.48.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for grpcio-1.48.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7cee20a4f873d61274d70c28ff63d19677d9eeea869c6a9cbaf3a00712336b6c
MD5 776fe671fd3b43fe8b4287d26c1468e3
BLAKE2b-256 cc1957402c658802f72be9dfa3cc1fe23ffacc65c6472048ff2ab90dc6c26670

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.48.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for grpcio-1.48.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ca5209ef89f7607be47a308fa92308cf079805ed556ecda672f00039a26e366f
MD5 302d9187ef56a5dd12964e86c463d38f
BLAKE2b-256 12412f81988a66a590f2b56222b967123636cbbd1cac3d403d8ce1f092dc6355

See more details on using hashes here.

File details

Details for the file grpcio-1.48.1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.48.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 626822d799d8fab08f07c8d95ef5c36213d24143f7cad3f548e97413db9f4110
MD5 e6333e63c89d005ad11b88b7d7fb903f
BLAKE2b-256 7d33a84722b65b415e64d8c76461a58dae7118ebe111b1aa0f61253e3b455596

See more details on using hashes here.

File details

Details for the file grpcio-1.48.1-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.48.1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5a6a750c8324f3974e95265d3f9a0541573c537af1f67b3f6f46bf9c0b2e1b36
MD5 8f7023d4022678cd02aa7818086bc04b
BLAKE2b-256 678294b7795a2b0c9249ff441ac73329dfaf2c845760a306ba26ab1bf66300ad

See more details on using hashes here.

File details

Details for the file grpcio-1.48.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.48.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53fa2fc1a1713195fa7acf7443a6f59b6ac7837607690f813c66cc18a9cb8135
MD5 ea9f195c6cb5a7149328c9c3c7595811
BLAKE2b-256 74ab3db763996ac5f51c6158ca91d3e23f5e41999c90d15672a95dfe1bb6af94

See more details on using hashes here.

File details

Details for the file grpcio-1.48.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.48.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d03009a26f7edca9f0a581aa5d3153242b815b858cb4790e34a955afb303c6ba
MD5 c9801269026a056b9d8c7b992666cbaa
BLAKE2b-256 898d4b7bba0b07f921ce4d03399fb1e38f875a20a40e7bff33b2ad48f2f4f470

See more details on using hashes here.

File details

Details for the file grpcio-1.48.1-cp38-cp38-manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for grpcio-1.48.1-cp38-cp38-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 3340cb2224cc397954def015729391d85fb31135b5a7efca363e73e6f1b0e908
MD5 38fec751d9314c4372adc3e91d69c0ce
BLAKE2b-256 bf970157d6d83b3b8d63a46382a9c88f3da7b3bef7b2cd8f64b3a776c8b4b6b1

See more details on using hashes here.

File details

Details for the file grpcio-1.48.1-cp38-cp38-macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.48.1-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 1d065f40fe74b52b88a6c42d4373a0983f1b0090f952a0747f34f2c11d6cbc64
MD5 c0dee77d0127c580abef514060876ff8
BLAKE2b-256 5e712f91e188e9447e2273bf5e6eb87c355c25d6d31e551acf8b4ec225244994

See more details on using hashes here.

File details

Details for the file grpcio-1.48.1-cp38-cp38-linux_armv7l.whl.

File metadata

File hashes

Hashes for grpcio-1.48.1-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 2563357697f5f2d7fd80c1b07a57ef4736551327ad84de604e7b9f6c1b6b4e20
MD5 dfcb129aa253e7091b01352af98208bc
BLAKE2b-256 81c7688ee60935768c8087ae4e60f623f7ba68acd55c6846c01b2453d59e33d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.48.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for grpcio-1.48.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 934aad7350d9577f4275e787f3d91d3c8ff4efffa8d6b807d343d3c891ff53eb
MD5 150375251cf4edd45bd3800a888d160c
BLAKE2b-256 b9a12561614a046f43b3ed730ac34d38da2288623b620b3645cc474254c30289

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.48.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for grpcio-1.48.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 4786323555a9f2c6380cd9a9922bcfd42165a51d68d242eebfcdfdc667651c96
MD5 ccdb5394ce80deb01fb421eb836fff2a
BLAKE2b-256 cadea22235b77d8ad34bf0af3e704903a17ab6991c8466a2eefbf49986fe57b3

See more details on using hashes here.

File details

Details for the file grpcio-1.48.1-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.48.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 dad2501603f954f222a6e555413c454a5f8d763ab910fbab3855bcdfef6b3148
MD5 6d10068629ab89091fdab77f92e58485
BLAKE2b-256 c245c077e7bc8891e1d977a3f52eea6a6ae01e1ec36dc00551a71d118bee9e25

See more details on using hashes here.

File details

Details for the file grpcio-1.48.1-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.48.1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 53b6306f9473020bc47ddf64ca704356466e63d5f88f5c2a7bf0a4692e7f03c4
MD5 d0d649f1ee530b32acfa6ae87b6c0bee
BLAKE2b-256 65399fcc754a4f16ffc90c2f9a0ee54af544f478c8492af195dabe3a8c51a43b

See more details on using hashes here.

File details

Details for the file grpcio-1.48.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.48.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ff1be0474846ed15682843b187e6062f845ddfeaceb2b28972073f474f7b735
MD5 07108065c234386c236da62833bece53
BLAKE2b-256 d6dbabde0f1eb724a97efcf605cef88d91c315f70be7092b0c0307bc363b7a3a

See more details on using hashes here.

File details

Details for the file grpcio-1.48.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.48.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a1b81849061c67c2ffaa6ed27aa3d9b0762e71e68e784e24b0330b7b1c67470a
MD5 a272096986f277d3c7bd1c1f554061a3
BLAKE2b-256 62a031104d7e4554bb2a1a10165667593441f8e43fa30569eda0e70119bd994c

See more details on using hashes here.

File details

Details for the file grpcio-1.48.1-cp37-cp37m-manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for grpcio-1.48.1-cp37-cp37m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 3d319a0c89ffac9b8dfc75bfe727a4c835d18bbccc14203b20eb5949c6c7d87d
MD5 ebef86840a1291493e9aa50977b8adb7
BLAKE2b-256 83c3c2cb3568d5e10ce4a3e050e0076911875aaa58bd6afef68c523bfacdaa93

See more details on using hashes here.

File details

Details for the file grpcio-1.48.1-cp37-cp37m-macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.48.1-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 ca382028cdfd2d79b7704b2acb8ae1fb54e9e1a03a6765e1895ba89a6fcfaba1
MD5 07c559ce3da7d65f85b2548fa82f5041
BLAKE2b-256 98622ac516601dd450b245d7c5df39e34fe650a35b405e076f7451630f1225fc

See more details on using hashes here.

File details

Details for the file grpcio-1.48.1-cp37-cp37m-linux_armv7l.whl.

File metadata

File hashes

Hashes for grpcio-1.48.1-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 97dc35a99c61d5f35ec6457d3df0a4695ba9bb04a35686e1c254462b15c53f98
MD5 8cdac3c76c2e486dcbd30570a3ff89f2
BLAKE2b-256 e621a53f06212762275d3dd7aeea5247218462b6b61f91d5e4ba166cb8eff483

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.48.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for grpcio-1.48.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 e02f6ba10a3d4e289fa7ae91b301783a750d118b60f17924ca05e506c7d29bc8
MD5 2ed0a61fbf8c24f9c8c8d54d74fbb59a
BLAKE2b-256 02ccf6ab51cb26ead9d59d3c12cf4c0470702555153f08e6de02c9ce515676d1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.48.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for grpcio-1.48.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 8bbaa6647986b874891bc682a1093df54cbdb073b5d4b844a2b480c47c7ffafd
MD5 9321ee8cbebbcfffd768fef23f56a21e
BLAKE2b-256 a273cd320ff850a44f3c59a62e2f3625e1ecd68db37cf030e51a681474a37e1c

See more details on using hashes here.

File details

Details for the file grpcio-1.48.1-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.48.1-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 dbba883c2b6d63949bc98ab1950bc22cf7c8d4e8cb68de6edde49d3cccd8fd26
MD5 9fc74292b8bb1d5c8da0f763c740e499
BLAKE2b-256 f978331b7b0872884dd9dbdcdae1588aef8d23e2fb58479383e37feb8fece1fe

See more details on using hashes here.

File details

Details for the file grpcio-1.48.1-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.48.1-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 9477967e605ba08715dcc769b5ee0f0d8b22bda40ef25a0df5a8759e5a4d21a5
MD5 46c1de78ad7c403629277e33aa05493f
BLAKE2b-256 70aa273a5e844e3daf95344624883089e1a6ae453705d68d111e79b4e357d1ea

See more details on using hashes here.

File details

Details for the file grpcio-1.48.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.48.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f0ef1dafb4eadeaca58aec8c721a5a73d551064b0c63d57fa003e233277c642e
MD5 a0161af79013608040d3431f1e40a5cc
BLAKE2b-256 aa1cd6fd58f23b9eccb6e4c03c7e3503cf9f1755dc36eb5f270cd16a45067a31

See more details on using hashes here.

File details

Details for the file grpcio-1.48.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for grpcio-1.48.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b005502c59835f9ba3c3f8742f64c19eeb3db41eae1a89b035a559b39b421803
MD5 cef2a9016efcfa8d274294a40dde7d62
BLAKE2b-256 2524f87656c1169c32723d9d006744b52072c7a13b7f22ac5ac181ee4f7779a5

See more details on using hashes here.

File details

Details for the file grpcio-1.48.1-cp36-cp36m-manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for grpcio-1.48.1-cp36-cp36m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 f3a99ed422c38bd1bc893cb2cb2cea6d64173ec30927f699e95f5f58bdf625cf
MD5 3a9cf1b5dabee2ae52e744215437d0ca
BLAKE2b-256 338ffcb83fdeed518344e657b044d775e0979c36ca8cb217c91200ce2f77dcc7

See more details on using hashes here.

File details

Details for the file grpcio-1.48.1-cp36-cp36m-macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for grpcio-1.48.1-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 9fba1d0ba7cf56811728f1951c800a9aca6677e86433c5e353f2cc2c4039fda6
MD5 d7725eb86dc9d60ab68e52d95a065eed
BLAKE2b-256 b62d29be4dbb1a279a57c3e5115a13f8ab967dd32ddf97af479d072289767651

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.48.1-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 1471e6f25a8e47d9f88499f48c565fc5b2876e8ee91bfb0ff33eaadd188b7ea6
MD5 a6b111cdc7c7bf64350d371b120f5c69
BLAKE2b-256 4a82a954c29a706cc1de0e7c11ca2828932546b6d2640c1b4391f0bb35e5994f

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