12 lines
218 B
Python
12 lines
218 B
Python
|
from grpc_tools import protoc
|
||
|
protoc.main((
|
||
|
'',
|
||
|
'-I',
|
||
|
'../unos-proto/src/main/proto',
|
||
|
'--python_out=.',
|
||
|
|
||
|
'--grpc_python_out=.',
|
||
|
'../unos-proto/src/main/proto/illust/data/illust_data.proto',
|
||
|
))
|
||
|
|