Betterproto creates pythonic protobuf bindings. Utalizing the protobuf definitions from takproto Read the Betterproto documentation for all the advantages over the Google implimentation.
Install dependencies
pip install betterproto[compiler]
Rebuild python bindings
python -m grpc_tools.protoc -I . --python_betterproto_out=./src/takproto ./proto/tak.proto
Recompile generates am empty init.py Add the following for usage convenience.
__version__ = "<version>"
from takproto.takproto import *
``