My goal is to parse Protocol Buffers file with an extension filename.pb.string. Downloaded Protobuff using Homebrew on Mac. Ran protoc --version and have libprotoc 3.1.0 version.
But when I run Python it says cannot find a module. I changed my .pb file name to _pb2.py and import the module in my Python Script.
import filename_pb2 as proto
I am using Google Docs but still not having any luck. I am also having issues with compiling Protobuf .so files via Python. I am just not able to process how Protobuf and Python link together. Can someone please guide me?
Python Error
import response_123_pb2 as proto
ImportError: No module named response_123_pb2