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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

grpcio-1.48.2-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.2-cp310-cp310-musllinux_1_1_i686.whl (5.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

grpcio-1.48.2-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.2-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.2-cp310-cp310-manylinux_2_17_aarch64.whl (63.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

grpcio-1.48.2-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.2-cp310-cp310-linux_armv7l.whl (71.6 MB view details)

Uploaded CPython 3.10

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

grpcio-1.48.2-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.2-cp39-cp39-musllinux_1_1_i686.whl (5.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

grpcio-1.48.2-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.2-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.2-cp39-cp39-manylinux_2_17_aarch64.whl (63.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

grpcio-1.48.2-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.2-cp39-cp39-linux_armv7l.whl (71.6 MB view details)

Uploaded CPython 3.9

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

grpcio-1.48.2-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.2-cp38-cp38-musllinux_1_1_i686.whl (5.0 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

grpcio-1.48.2-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.2-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.2-cp38-cp38-manylinux_2_17_aarch64.whl (64.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

grpcio-1.48.2-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.2-cp38-cp38-linux_armv7l.whl (71.7 MB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

grpcio-1.48.2-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.2-cp37-cp37m-musllinux_1_1_i686.whl (5.0 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

grpcio-1.48.2-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.2-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.2-cp37-cp37m-manylinux_2_17_aarch64.whl (63.6 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

grpcio-1.48.2-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.2-cp37-cp37m-linux_armv7l.whl (71.3 MB view details)

Uploaded CPython 3.7m

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

grpcio-1.48.2-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.2-cp36-cp36m-musllinux_1_1_i686.whl (5.0 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

grpcio-1.48.2-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.2-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.2-cp36-cp36m-manylinux_2_17_aarch64.whl (63.7 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

grpcio-1.48.2-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.2-cp36-cp36m-linux_armv7l.whl (71.3 MB view details)

Uploaded CPython 3.6m

File details

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

File metadata

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

File hashes

Hashes for grpcio-1.48.2.tar.gz
Algorithm Hash digest
SHA256 90e5da224c6b9b23658adf6f36de6f435ef7dbcc9c5c12330314d70d6f8de1f7
MD5 d805c8f4a4baaf86076254fd5a0c592f
BLAKE2b-256 819a6b33e8d15850356772f0ee6489bc8346a7aa90f0c86733283e139740865e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.48.2-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.7

File hashes

Hashes for grpcio-1.48.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b8ec07dcc1cbd77b8c09dfc0ce6274920cb7b09cc04013110971d95d8bcc0bbf
MD5 810ed55ddfa596e147d6478b8abd82a6
BLAKE2b-256 d213d41ae198d522c6684f111030c1de4a1c3c4c75aa3de814abe9663071d9ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.48.2-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.7

File hashes

Hashes for grpcio-1.48.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f6afd1f4b5e0ec320fb2b027a646944fee8b58ba00fb43d081968f77d1a6e925
MD5 e79cb06574af6395c053bee02194ac65
BLAKE2b-256 d32ce148a7fb3d15fb60e61656494a96486c04d927214d6db37be20650956f66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.48.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6affa7e685edbb7421f942296eb618359362e89e641bcf46779c6ec7b944d275
MD5 f81e6d00e60561a853275dc699f5ede7
BLAKE2b-256 25b6a9a4df0a8e12bc80eded731421e291ed9ee122a3c51754a52b08e851f3f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.48.2-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 110028e0b9c346230ae69b8a6d8b25d4d43bfd37bda61a8ec46486da1e781dcb
MD5 5a9f39259299b1ad03ee59eb84b66bc6
BLAKE2b-256 07d389bc271fd97d93b29deb2267f65caea68571c766e1a87c7ede75396cc43a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.48.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9dc08baa1b28749e90428aaa16e038e8c389d8ccb843ddc0dc8b95231640b432
MD5 10895410f7b40f4ada26dbbfb8049cfa
BLAKE2b-256 f36b726214491f69937ad6a7a766380b6413554f64341d8a69f1bdadfd2fac20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.48.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 abee7dd82443b2cd128004e053b263a6d7256d570df80956a974634b8c5bc121
MD5 a9d9d297a0dcbb808d7b66f7844688c8
BLAKE2b-256 0ead1b8c470183e5ac2ab0a490f47e70b842a42d08350bb58ae417171ab97d55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.48.2-cp310-cp310-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 3d3225d477663c27b9051546a32551babd1ccb80192905e08340264deccc975b
MD5 040f85c99cb1b004593bd06ddf0a4330
BLAKE2b-256 12e9cd3400b3feb33a793104be90be22de07e62c684853318ee73ea67e076f70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.48.2-cp310-cp310-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 199526758f6f8d35a596c610f33ea76faae65ec175dc109e8481ea3404d8527c
MD5 c9eed0c1ce1419e679e0c487b8637286
BLAKE2b-256 d886e474e8e6979a7919bfec5906c7d76816904cc78f9b12f0d1abfee618b50e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.48.2-cp310-cp310-linux_armv7l.whl
Algorithm Hash digest
SHA256 665141b3a97b7d22978c8d2ba0c0af7f67bd6d7a56889c5c0aa715d04009b518
MD5 707b55b459f8f1c055a978f8ee461a33
BLAKE2b-256 e08d302bed1bfafe5511f49203ad78047013642e4ef9087e626f0613f60b20c0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.48.2-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.7

File hashes

Hashes for grpcio-1.48.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 514392a30a275f4f719c2e05ea969c239e5f03eec4a25965852c7582073d8b94
MD5 bd6a0598ce2a883f2f1bfb8ce656452f
BLAKE2b-256 96d35124721e89050010eb642bba71027cc3fe864bc2a35d3d459330aba2d2f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.48.2-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.7

File hashes

Hashes for grpcio-1.48.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 2d99fb56c7e836f165828719c3695d3d27ac70b103ab52226f7a7c237e4a3928
MD5 a5c1cbc491e7ebae1eeb37a3608eea6a
BLAKE2b-256 4a37d1e33d7a26a12ff02e4cdb698d2492128839fb23e3b717a79617c898254c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.48.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6f693da8ffd2486c354c90ba5a8ca0f4c50bfb8853495501884cadc152551360
MD5 89b83adff93b7ff057c413be566aab75
BLAKE2b-256 283ae6c04be143bcea23dbfb3ae2a00f1d9860a7969d47710c70b96f9596df69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.48.2-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b860e13c112bb9cb44007ef02853a19397d915b31c42dfa18570448bdc0a6245
MD5 94e9375afe99cb26d54ce2ca0c2f4cb7
BLAKE2b-256 3e72271bf7f4564ce42de93f51ee7d4b4f82791c5cb4be7001008c80aed3cf0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.48.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f3c0d0995a0cd8c7198cb49b8ce98b4936c5a70109f9246c58e69c898e4f7329
MD5 17fe675ee5f5f4c132e5d7e5760b761e
BLAKE2b-256 d035c050ce6e04e37f5e0b79284a027f80c3b440ed48348b16a6e04e5e3fc166

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.48.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 26ed6d07f91ce8aeb4697b7e71d930355282ec80acb7a488f4030a3a75c2f7a8
MD5 090ab4bec90d031a9c60d9c4778bcfd3
BLAKE2b-256 3d74396713c8910251a0eedbbb94433826b26f5cef765ee9181544007e1674b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.48.2-cp39-cp39-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 5792943481d4270b3e9a4700af0eea86e7183f4d3c250a46e0b357949cc09411
MD5 06830b81616aabe6c24f4605241ed7a7
BLAKE2b-256 132f3894e1d559ec42025f5993a7ce8031dc0c6bb91fba363964ccde7b276d48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.48.2-cp39-cp39-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 8d130f666463e4d09a63ff033a6c5cd032867fd51a0db4660c18106aa352be3a
MD5 037302d687c3489d2ef399a028267676
BLAKE2b-256 5eebc46cfbfb20968b27e884906c58f6257e40578536766eef8d22b341be156f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.48.2-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 104b555e1cb2e0614f05c1def24eb8bb06f1277460058aa0f9c9e6a1018716da
MD5 31460611d870d8898d0676c99c92d3fd
BLAKE2b-256 08380098aa29b41e120b178a14881ee9af8c233fd80f2765248ef8c1867eef82

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.48.2-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.7

File hashes

Hashes for grpcio-1.48.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b8768daa636e0fa48fec75517bea65ce8fdaca0066dc411fc0a2290d92032f91
MD5 0e5d2b89806392020ee81aaada7ce4f9
BLAKE2b-256 c2c0b2f74cf6c3c0841efb4a003c6a4387c592189b45d4f503a5f32ea347229c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.48.2-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.7

File hashes

Hashes for grpcio-1.48.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 dc00681d546cae66e9d54451f650fe140f9e1aca2dc4f8c9686cfaa4dd5d680b
MD5 a1c64fe590121395b9695534915b5978
BLAKE2b-256 f7e6607c4c2819c6323570ee60cbb88713bd8b3cd10fbf759a3e2e4a16078b9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.48.2-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3463256399158e9abf115620994e968db8f003224c36bda0d14570eab8a44cfc
MD5 60189302f2fedb4cdca8e169e79e5009
BLAKE2b-256 0e5a2cdbccd22c6e68fb102dc4b874f5c27cc5e655dedde6b26e2de217a9b7d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.48.2-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1e2dc213fe71566efbf9a5d704c665ff4b1760a88d37f8533b19ca92776070c9
MD5 b10fb9660f6813871e9de88603c0729c
BLAKE2b-256 c443f486a8d134e8aca4a776211c77ec7ea0bd4b98e41d35141db086c03372a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.48.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a760ef87fde9a8f2761c7ad8ccf617fc590547ed743a9207fe7e367496164c60
MD5 0965656eddb6bec5269a1107aa3a08c9
BLAKE2b-256 c1869904a35732c3d8294c6623eee65fc7d62f2396be90baae59815c473a41de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.48.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 13c3b69f8efb214a54f48e8dd1e235a4d8d22fa985f32a9b2844373993c5a605
MD5 3453b24030699cae3d7c9c8714bc6cd9
BLAKE2b-256 fe2b5f1286914fb10245bbb18863a265418d9855ff735fbacdf79e30c1111427

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.48.2-cp38-cp38-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 3f52ef5ba7a8bc334daa87675838d6dafda7d8a116a72b567b8351e561ace498
MD5 1351c45c68e839fa2261511f6b97f417
BLAKE2b-256 63e1ea262890fbecf4b44518706ab1002c2e45b526ca3fbc0943b4a705d01900

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.48.2-cp38-cp38-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 2bb1df2920a4968f0c09041b49e591df96f2e6f801f15eed3821c1f16a12f1a8
MD5 460601665d51cee1760895f7230c7487
BLAKE2b-256 d572f70fff27d7663d65ef973183662458a6394c11abe58c2294777d078dba7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.48.2-cp38-cp38-linux_armv7l.whl
Algorithm Hash digest
SHA256 c92b5ef64cd5a0c6aea82dd6862fdb8a1562510d537ea3c356a7fe60db7021af
MD5 d7d74467eafbb53fcf7829f9241ca275
BLAKE2b-256 baf2d79dc53b59ac0c2f03f916695fbf7b6f110351f24f0eed9a5a178cf439ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.48.2-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.7

File hashes

Hashes for grpcio-1.48.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 0bfb637344442b273b698ff425d735a5d806ca8715f988875ad669277fb9b1e6
MD5 46063c33b0167fd476bfdc5945fe608c
BLAKE2b-256 726e7f844e090c37ef71cde9702fade635045253195b4c8c27a84f4b8fdb89aa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.48.2-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.7

File hashes

Hashes for grpcio-1.48.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 1fea4cb4368dd0467eb2d208e2d5e3c4f0be28fe33965d45ac9e1d562be67a8c
MD5 df9d65f11468cbd31fabfc4dfa5ffe9c
BLAKE2b-256 f86c5fdd4ea65f3d36a66e8639df3b6494f9a6ecd0eabc588913a37e07947971

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.48.2-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ec2dd9f7ab0c809af6b2c65ed31c3cbef2ca9695f7f4d49866ec4707e7836890
MD5 3dd200e96259f32b8deb21b2d38e8efa
BLAKE2b-256 2a7730a3d87a02a5fbba3a638eea48c6f7597ec77e2fb485d0d64a7789ca6ecc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.48.2-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e48595440dc86e13245aec7c096238db12b659e5ae6078aecf99d66befb77678
MD5 0809a0bc26167d6e2776669df0e1db97
BLAKE2b-256 66febb5f251ecad525cab310a226850d99e5d6bfd4c9a73f818b52eec3db5199

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.48.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d7ec6b04875a5065d04ad86cd2678ca6431dec868c01d731b8233f3de155bfdf
MD5 ec76847407e2be8171543d11326f20c7
BLAKE2b-256 b3cbc9393a133dda715834bd21d5245b00f76d4c7eb44623f5785a1efefda6df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.48.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d7b1a3a75c34ab39c9df73aa9fecc519dc1035e588a41af19f39b1298a283a57
MD5 b2ca5199a0362773cc023108898e7ffb
BLAKE2b-256 2a983d60807ebd8901584bc43e927edd57667534eb22c69df2332710b2428c09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.48.2-cp37-cp37m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 2f185b8c5130663c455f6542906ce99f046608e94950c8b354aa22462c202c2d
MD5 960388a35bbb6c121599ba3a81884441
BLAKE2b-256 b0965cfbd36609de73bec35bf20fcf509c0b8356cb587e5d01862c0c73ab53fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.48.2-cp37-cp37m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 5571cb828d694b34a7c75484722803e13a2f5e4760e47ae32fb077c83d0c9b2c
MD5 d1997671f1a392d7afe6f2e3c3c53fae
BLAKE2b-256 9a437cd6c9f415c43c75d194c410f8e131939b52274f539010d9b68e0d4347f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.48.2-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 855c125e8cd1c3ab09a239689c940d26c30680edf2edf87c3c1543bd8633cc8f
MD5 f3d70253e24c6b6a37678b0c8c78c36a
BLAKE2b-256 897b7aadf52724573884abb4fa227e20ea2deab716be0a2f7b9e296ad34163b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.48.2-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.7

File hashes

Hashes for grpcio-1.48.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 0802b080b6b8603a065e505ce83190b6a06229b9a74d0a1681175271ac84fe12
MD5 d05eaaf709ef4590dcddba6dd00a74ab
BLAKE2b-256 3098baa62c0b771cb20b0381896fb61926d9bec783fb446eaa53efd4e5c70e3b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: grpcio-1.48.2-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.7

File hashes

Hashes for grpcio-1.48.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 cebeed160466a1e254eb75e7e1bbeeb1359c50b33a1b8f3b2241a8b8dc9bd216
MD5 69fe3078d5073a81833ab36a5159ce0d
BLAKE2b-256 d062b28e4e22da836a14911fed75a9da984fa994c695fccc9519cbff73a9515f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.48.2-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f5697e4ab90a41a6a1202c1a3ec268a0d69f1cd127a4940d2b2521a0fbc1277b
MD5 57a8f14b5ab0b21a54511f954cdaa76e
BLAKE2b-256 152c8eb4b5e64fe7d14be4613b623586cb800eef6c6bd453102af91a49ff8835

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.48.2-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f1d2cd5b1adecbcffee4ad6613f100e0b583ae2e253d2f8f685e7770ec72d622
MD5 5c17f59ee426331c63717554a105346b
BLAKE2b-256 528bfae69cd1710a6d03f8000d025330b461b09a7843cea5c246cc5ac9e080be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.48.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47ace91631176efa575c7a34d5004286288f1af1e9de2ff380d1433f241aeed4
MD5 4267d8d2316358b5adde27d4bccdbd3c
BLAKE2b-256 68dc31397ed1d4594a2b1495bc4e4cdc4fdb80c02a1e2593b45ac56a58e9b431

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.48.2-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 894c5f02c25c83c2320310521a82978b4e252ee18b99a5c4c564d73daeb5c1de
MD5 80baadef109fb80eb9260c2ffd380f6f
BLAKE2b-256 35a6c19167bd9c7f9a3f75c9b22168eee03ce290bb69935779c9878a36788d72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.48.2-cp36-cp36m-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 e69a5907a2a4cf0011ff46205b6bff8f56b8391436acc3c66b70ce8519578d7e
MD5 f7fe0bec4a5248f985e1e199844c9166
BLAKE2b-256 89aaa087a10f51b4d47e3928ce2be0028d7ca90ac569d807c1b7071831462c39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.48.2-cp36-cp36m-macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 c19d6f337860f382ceaa35c5acab439d84c5ffaa8baba36df1f83ab6b9ac4bd3
MD5 f071b1cdac787589c27cae217b8e2584
BLAKE2b-256 6e82533de976e53758086b277488b7cd92466fdd9530979d6074ba3b7535adf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for grpcio-1.48.2-cp36-cp36m-linux_armv7l.whl
Algorithm Hash digest
SHA256 550b08dfa938e30ffbc1652193cf2877906aa6242d6ba9f61318dc87fcecee63
MD5 4e20871b885d574ceff3ac83dfe97e3d
BLAKE2b-256 5eb8d88d32b503ddbbec11e6b514a092803b5072e945215dd84bace954703170

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