I have a pb file abc.pb file.
I need to read the file by retaining its format i.e. dont want to convert pb file to string and then again reconverting it.
Currently I m trying options with
with open(data, "rb") as file_handle:
data = file_handle.read()
But this converts that into bytes. How to read them as Message. Can someone please help?