proto-schema-parser
A Pure Python Protobuf .proto Parser
What it is and what it does
Proto Schema Parser is a pure-Python library that reads Protobuf schema files and converts them into an abstract syntax tree (AST) for programmatic inspection and manipulation. It uses ANTLR4-based lexer and parser rules autogenerated from Buf's grammar files to handle the conversion. The library also provides a Generator class to write AST objects back to valid Protobuf schema strings, making it useful for tools that need to read, analyze, or transform .proto files without invoking the official protoc compiler.
The package supports proto2 and proto3 syntax, as well as the newer protobuf editions (2023 and 2024). It preserves comments, handles all major schema constructs (messages, fields, enums, services, imports, options), and works with advanced features like oneof, map types, groups, and stream RPC definitions. A developer would use this when building code generators, schema validators, documentation tools, or any system that needs to parse and understand Protobuf schemas as data structures.
Use it for:
- Build a code generator that reads .proto files and emits client libraries in a custom language
- Validate Protobuf schemas against organizational naming or structure conventions
- Extract documentation or metadata from .proto files for API documentation systems
- Transform or migrate Protobuf schemas between proto2, proto3, and edition syntax
- Analyze message definitions to enforce backward compatibility rules
- Generate type stubs or schema diagrams from Protobuf definitions
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Parses and generates Protobuf schema files (.proto) to and from an abstract syntax tree, supporting proto2, proto3, and protobuf editions 2023 and 2024.
Yes, if you need to programmatically parse or generate Protobuf schemas. The package is stable, has no known vulnerabilities, and handles modern Protobuf syntax including editions. The aging maintenance status (282 days since last release) is a minor concern for long-term support, but the core functionality is mature and unlikely to require frequent updates unless Protobuf itself introduces breaking changes.
Install
proto-schema-parser on PyPI
pip
pip install proto-schema-parseruv
uv add proto-schema-parserpoetry
poetry add proto-schema-parserInstalling proto-schema-parser
Before you install
Low friction installation with a single pure-Python runtime dependency (antlr4-python3-runtime). Maintenance status is aging—last release was 282 days ago—so expect slower response to issues, though no active problems are evident.
License in practice
MIT license is permissive, allowing commercial and private use with minimal restrictions; you may use, modify, and distribute this package freely as long as you include the license notice.
Quickstart
pip install proto-schema-parser
from proto_schema_parser.parser import Parser
from proto_schema_parser.generator import Generator
text = 'syntax = "proto3";\nmessage Example { string field = 1; }'
ast = Parser().parse(text)
proto_string = Generator().generate(ast)
Requires Python 3.9 or later.
Verify before relying
- Performance characteristics when parsing large or deeply nested .proto files
- Completeness of support for all proto2/proto3 language features beyond those listed
- Whether the autogenerated lexer/parser from Buf's grammar is kept in sync with upstream changes
Package facts
| License | MIT (permissive) |
| Python support | supports the current Python release (>=3.9) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 1 — antlr4-python3-runtime |
| Maintenance | aging — 282 days since the last release |
| First released | |
| Downloads | 630,224/month — #5,663 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: proto_schema_parser-2.1.0-py3-none-any.whl
Tags
More Software Development packages
Provides backported and experimental type hints…
permissive · top 100 on PyPI
numpyNumPy provides an N-dimensional array object…
permissive · top 100 on PyPI
fastapiFastAPI is a Python web framework for building…
permissive · top 100 on PyPI
annotated-docProvides a way to document function parameters,…
permissive · top 100 on PyPI
typerTyper builds command-line applications from…
permissive · top 1,000 on PyPI
distlibDistlib provides low-level packaging utilities…
permissive · top 1,000 on PyPI
pure-protobufEncodes and decodes Protocol Buffer messages…
permissive · top 15,000 on PyPI
pbtoolsGenerates C source code from Protocol Buffer…
permissive · top 15,000 on PyPI
protobuf-pyGenerates well-typed, readable Python code from…
permissive · top 15,000 on PyPI
protobuf-decoderDecodes protobuf binary messages without…
permissive · top 15,000 on PyPI
aristaprotoGenerates Python gRPC stubs and message classes…
permissive · top 15,000 on PyPI
sentry-protosProvides protocol buffer and gRPC schema…
unclear · top 15,000 on PyPI
betterprotoGenerates idiomatic Python code from Protobuf 3…
permissive · top 5,000 on PyPI
opensearch-protobufsProvides pre-generated Python Protocol Buffer…
permissive · top 5,000 on PyPI
hatch-protobufA Hatch build plugin that generates Python…
copyleft · top 15,000 on PyPI
protoletariatProtoletariat rewrites Python imports generated…
permissive · top 5,000 on PyPI