protobuf

Compile and serialize structured data using Protocol Buffers

brewmacoslinux
Try with needOr install directly
Source

About

Protocol buffers (Google's data interchange format)

Commands

protoc

Examples

Compile a .proto file to generate Python code$ protoc --python_out=. message.proto
Generate C++ code from a Protocol Buffer definition$ protoc --cpp_out=. --grpc_out=. service.proto
Compile multiple proto files for Java with output directory$ protoc --java_out=src/ protos/*.proto