我想跳过使用protobuf编译器(protoc)创建*_pb.py
文件的过程,而是直接使用仅*.proto
文件可用的protobuf对象进行读写。
基本上,类似:
import a_proto_lib
pb_module = a_proto_lib.load_proto_file('addressbook.proto')
person = pb_module.Person() # person message defined in addressbook.proto
...
是否存在这样的程序包或API?