grpclib/Makefile

10 lines
369 B
Makefile
Raw Normal View History

proto:
python -m grpc_tools.protoc -I./example --python_out=./example --grpc_python_out=./example --python-grpc_out=./example ./example/helloworld.proto
python -m grpc_tools.protoc -I./tests --python_out=./tests --python-grpc_out=./tests ./tests/protobuf/testing.proto
server:
@PYTHONPATH=. python example/server.py
client:
2017-04-03 15:18:19 +00:00
@PYTHONPATH=. python example/client.py