tags:

views:

39

answers:

1

Epydoc doesn't work with django models because it needs django settings to be imported and I manage.py graph_models generate some unreadable outputs.

Is there some tool to do that?

+1  A: 

There is a graph tool in django_extensions app. Precisely this one 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
Frost.baka
-1. If you read the question, you'll noticed I talked about graph_model.
e-satis
thought you didn't know about .png output
Frost.baka