'draw class diagram for django application
I am just half way writing my django application and my employer wants me to fetch him class diagram of the whole code written until now. As I'm really short in timeI started thinking of a tool that will do it for me in a shorter time. I have tried Pyreverse But it seems I can't figure it out.
Steps taken :
I have installed pylint and graphviz
I have tried walkthrough from this post. but it says :
The output format 'png' is currently not available. Please install 'Graphviz' to have other output formats than 'dot' or 'vcg'.
and when I run pip install Graphviz it says :
Requirement already satisfied: Graphviz in c:\users\amin\appdata\local\programs\python\python36-32\lib\site-packages
In the end any suggestions for drawing database diagram of a django code would be appreciated.
Solution 1:[1]
At the end you ask for a way to draw a database diagram for a Django application. For this I can suggest SchemaSpy. It creates a collection of HTML pages with more than just the diagram, and everything is well organised and you can click your way around parts of the diagram.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | jrial |
