What is the difference between invoking protoc
protoc -I. --python_out=tmp --grpc_out=tmp --plugin=protoc-gen-grpc=`which grpc_python_plugin` test.proto
(some online docs)
and using grpcio-tools
python -m grpc.tools.protoc -I. --python_out=tmp --grpc_python_out=tmp test.proto
(official gRPC Basics: python)
Are they the same thing?
Regards
Anthony