Can I reverse engineer classes in python code and automatically create a class diagram?

0 votes
asked Nov 25, 2015 in Won't implement by anonymous
I already have classes in python code. I want to automatically create a class diagram by reverse engineering the python code. Can I do this with Plantuml?
commented Jul 11, 2018 by agillesp (600 points)
pylint includes a utility called pyreverse which does exactly that.

You can install pylint by downloading from pypi.org, or just run the command "pip install pylint"

1 Answer

0 votes
answered Feb 21, 2018 by Anthony-Gaudino (5,720 points)
PlantUML can't do it.

You may use Doxygen to do it.
...