protobuf2uml icon indicating copy to clipboard operation
protobuf2uml copied to clipboard

Tool to create an UML diagram from a protobuf files

Results 6 protobuf2uml issues
Sort by recently updated
recently updated
newest added

Getting an error while running `protobuf2uml/protobuf/main.py`. ```log Traceback (most recent call last): File "~/protobuf2uml/bin/protobuf/ProtoParser.py", line 545, in proto self._errHandler.sync(self) File "~/.virtualenvs/ve/lib/python3.6/site-packages/antlr4/error/ErrorStrategy.py", line 220, in sync Warning: syntax ambiguity - badly...

Please add some screenshots, examples What exactly is generated? I am not python user, I would like to know more before spending time learning how to compile/run Python

When different messages have nested enums sharing the same name, those enums are visualized as one linked to all the parent messages. For example, the following code ``` message Post...

When two message definitions are nested one inside the other, the inner one is translated like a part of the outer's label, creating a syntax error. ``` message User {...

Hi. This is valid ProtoBuf: ``` message Status { required bool success = 1; optional string message = 2; } ``` But it generates an error because the name _message_...