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

Popular posts from this blog

linux - Using a Cron Job to check if my mod_wsgi / apache server is running and restart -

actionscript 3 - TweenLite does not work with object -

jQuery Ajax Render Fragments OR Whole Page -