/grpc-python-demo

Implementing gRPC client and server In Python

Primary LanguagePython

Implementing gRPC In Python

Create venv (Optional)

python -m venv grpc-env

Activate the virtual environnement

grpc-env\Scripts\Activate

Install Requirements

pip install -r requirements.txt

Generating the Grpc files

python -m grpc_tools.protoc -I./ --python_out=./ --grpc_python_out=./ order.proto

Run server

python server.py

Run client

python client.py