This repo contains code for my blog post explaining how to use gRPC in Go and Python. Do check it out.
The code in this repo is released under the terms of MIT License
Terminal 1 (python server):
brew install python
pip3 install virtualenv
virtualenv -p python3 venv
pip install -r requirements.txt
source venv/bin/activate
python python/server.py
Terminal 2 (Go client):
cd golang
go run client.go