2017-04-04 16:49:42 +00:00
|
|
|
proto: clean
|
|
|
|
protoc -I./example --python_out=./example --python_grpc_out=./example ./example/helloworld.proto
|
|
|
|
protoc -I./tests --python_out=./tests --python_grpc_out=./tests ./tests/protobuf/testing.proto
|
2017-01-24 17:10:43 +00:00
|
|
|
|
|
|
|
server:
|
2017-03-29 14:14:24 +00:00
|
|
|
@PYTHONPATH=. python example/server.py
|
2017-01-24 17:10:43 +00:00
|
|
|
|
|
|
|
client:
|
2017-04-03 15:18:19 +00:00
|
|
|
@PYTHONPATH=. python example/client.py
|
2017-04-04 16:49:42 +00:00
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f ./example/*_pb2*
|
|
|
|
rm -f ./tests/protobuf/*_pb2*
|