An open API service indexing awesome lists of open source software.

https://github.com/alextanhongpin/python-grpc

Working demo for grpc
https://github.com/alextanhongpin/python-grpc

grpc python

Last synced: about 1 year ago
JSON representation

Working demo for grpc

Awesome Lists containing this project

README

          

# Installation

## Upgrade pip
```bash
$ python -m pip install --upgrade pip
```

```bash
$ python -m pip install virtualenv
$ virtualenv venv
$ source venv/bin/activate
$ python -m pip install --upgrade pip
```

## Install gRPC

```bash
$ python -m pip install grpcio
$ python -m pip install grpcio-tools
```

## Save the dependencies

```bash
$ pip freeze > requirements.txt
```