Is there an application to create UML from django models?

I am looking for a way to generate UML diagrams from the Model structure of a Django application.

Epydoc does not work with Django models because it needs django settings.py to import, and manage.py graph_models generates unreadable output, is not easy to parse, and difficult to convert to UML.

Is there any tool capable of doing this?

+4
source share
1 answer

The django_extensions application has a graph tool. It is this http://code.google.com/p/django-command-extensions/wiki/GraphModels

 # Create a PNG image file called my_project_visualized.png with application grouping $ ./manage.py graph_models -a -g -o my_project_visualized.png 
0
source

All Articles