在Python中使用protobuf而不编译_pb文件

时间:2018-10-23 09:52:00

标签: python protocol-buffers

我想跳过使用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?

0 个答案:

没有答案