- Install Python3
- Install Pip
- Install grpcio and grpcio-tools: pip3 install grpcio grpcio-tools
Example 1: ProtoBuff
Example 2: Unary
Example 3: Bidirectional
Example 4: Bidirectional using Stack and asynchronous calls
Generating protobuff: python3 -m grpc_tools.protoc --proto_path=. ./unary.proto --python_out=. --grpc_python_out=.
Running server: python3 server_file_name.py
Running client: python3 client_file_name.py
SiDi -> Cloud Talks!