nipunn1313 / mypy-protobuf

open source tools to generate mypy stubs from protobufs
Apache License 2.0
654 stars 80 forks source link

Name the imports #652

Open complynx opened 2 weeks ago

complynx commented 2 weeks ago

Instead of

import a.b.c_pb2

some use() -> a.b.c_pb2.Something

do

import a.b.c_pb2 as a_dot_b_dot_c_pb2

some use() -> a_dot_b_dot_c_pb2.Something

as it's done in protoc generator