Protobuf to json in python

后端 未结 2 998
我在风中等你
我在风中等你 2020-12-13 23:57

I have an object that I de-serialize using protobuf in Python. When I print the object it looks like a python object, however when I try to convert it to

2条回答
  •  暖寄归人
    2020-12-14 00:32

    If you need to go straight to json take a look at the protobuf-to-json library, but you'll have to install that manually.

    But I would recommend that you use the protobuf-to-dict library instead for a few reasons:

    1. It is accessible from pypi so you can simply pip install protobuf-to-dict or include it in a requirements.txt
    2. dict can be converted to json and might be more useful than a json string

提交回复
热议问题