benhodgson / protobuf-to-dict

A small Python library for creating dicts from protocol buffers. Useful as an intermediate step before serialization (e.g. to JSON).
Other
226 stars 108 forks source link

Support proto3 map<string, string> types #18

Open luca3m opened 6 years ago

luca3m commented 6 years ago

I've done some quick fix to make this kind of protobuf definition work:

map<string, string> tags = 3;

Hope it can be useful