I want ERD package which works with Python3> I tried Django-extension, yet, its requirement was Python2.7 and it didn't run on Python3> Does anybody know another alternative?
Asked
Active
Viewed 177 times
1
-
From the link you provided: "At this time we test on and thrive to support valid combinations of Python 2.6, 2.7, 3.3, 3.4 and pypy with Django versions 1.4, 1.5, 1.6 and 1.7." – Michael C. O'Connor Apr 22 '15 at 04:22
-
@MichaelC.O'Connor, Yes! until this all the things are OK, But when you want to use graph-model, you must have installed Pydot or Pygraphviz, in fact, Django-extensions is dependant to them for running this code: [`./manage.py graph_models -a -g -o my_project_visualized.png`](http://django-extensions.readthedocs.org/en/latest/graph_models.html?highlight=pydot) and they just work on Python2.7 ([Pydot](https://pypi.python.org/pypi/pydot)) – Alireza Ghaffari Apr 22 '15 at 04:55
-
Nope, have you tried the development version of pygraphviz? – ashwoods Apr 23 '15 at 07:35
-
@ashwoods Yes! but it [doesn't also work with Python3!](http://pygraphviz.github.io/documentation/development/install.html#quick-install) – Alireza Ghaffari Apr 23 '15 at 17:12
-
1I've started working on [app called django-spaghetti-and-meatballs that produces interactive HTML entity-relationship diagrams from django model definitions](https://github.com/LegoStormtroopr/django-spaghetti-and-meatballs/), like this i.stack.imgur.com/lvxSG.png – Aug 22 '15 at 03:56
-
1possible duplicate of [Django - Model graphic representation (ERD)](http://stackoverflow.com/questions/6776592/django-model-graphic-representation-erd) – Aug 22 '15 at 04:00