简体   繁体   中英

Python equivalence of C++ protobuf message differencer

I am trying to compare two protobuf messages in Python for equality, ignoring the order elements in lists and so on.

For C++, I found the MessageDifferencer ( https://developers.google.com/protocol-buffers/docs/reference/cpp/google.protobuf.util.message_differencer )

Now I'm looking for something similar in Python, but can't really find anything. Any suggestions what I can use?

Thanks

I don't think anything exists. You can probably wrap the C++ implementation in python using CLIF or something similar.

I implemented a version myself (with only basic set of features) in https://github.com/dayfine/proto-matcher

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM