Django - Model graphic representation (ERD) -
i'm searching way represent django project model graphically.
is there application kind of erd (diagram) ?
update following @etienne instructions
here example of how view pdf representing models of django project
$ python manage.py graph_models app1 app2 ... | dot -tpdf | evince
- it generates dot data applications (app1, app2, ...)
- passes result
dot
output pdf format - opens output
evince
if want extract uml diagram django models can use graph models command of django-extensions. 1 same thing: django-graphviz.
if want create django models uml: uml-to-django.
and create uml diagrams, there's dia, yed , argouml
you can check list of tools.
Comments
Post a Comment