开发者

Django - Model graphic representation (ERD) [closed]

Closed. This question is seeking recommendations for books, tools, software libraries, and more. It does not meet Stack Overflow guidelines. It is not currently accepting answers.

We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.

Closed 6 years ago.

Improve this question

I'm searching a way to repres开发者_C百科ent my Django project model graphically.

Is there a "native" way to do this kind of ERD (diagram) ?


Update following @Etienne instructions

Here is an example of how I finally view the PDF representing some models of my django project

$ python manage.py graph_models app1 app2 ... | dot -Tpdf | evince
  • It generates the dot data with my applications (app1, app2, ...)
  • Passes the result to dot to output into PDF format
  • Opens the output with evince


If you want to extract UML diagram from your Django models you can use the Graph models command of django-extensions. Another one that do mostly the same thing: django-graphviz.

If you want to create your Django models from UML: uml-to-django.

And to create UML diagrams, there's Dia, yED and ArgoUML

You can check also this list of tools.


Best I can think of is Argo UML which requires you to design by hand (and then you can convert the UML into Django with this tool)

If you want to do django - uml conversion (the other way) try looking at Django To UML

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜