blob: 8cc9c485fb2a4b5eca75995cc4be565f74c88c33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
To create python bindings,
Prerequisites:
https://developers.google.com/protocol-buffers/docs/downloads
or
https://grpc.io/docs/quickstart/python.html
Command:
protoc -I=. --python_out=. --grpc_python_out=. CommandExecutor.proto
or
python -m grpc_tools.protoc -I. --python_out=. --grpc_python_out=. CommandExecutor.proto
|