Re: class diagram from models.py

2008-05-24 Thread Eloi Crespillo
If you are using PostgreSQL, then is still easier to generate diagrams ;) I'm a happy user of the the excellent command-line utility "PostgreSQL Autodoc": http://www.rbt.ca/autodoc/ >From PostgreSQL Autodoc web page: "This is a utility which will run through PostgreSQL system tables and returns

Re: class diagram from models.py

2008-05-23 Thread Juanjo Conti
I am using Postgresql :) On Fri, May 23, 2008 at 5:21 PM, Diego Ucha <[EMAIL PROTECTED]> wrote: > > It is not your question, but it may come in handy, in the future, for > you. > The same way you can generate automatically a Class Diagram, you can > also generate an ER Diagram using MySQL Workben

Re: class diagram from models.py

2008-05-23 Thread Diego Ucha
It is not your question, but it may come in handy, in the future, for you. The same way you can generate automatically a Class Diagram, you can also generate an ER Diagram using MySQL Workbench. First get your CREATE TABLE statements with: python manage.py sqlall. Then, make your MySQL Workbench g

Re: class diagram from models.py

2008-05-23 Thread Juanjo Conti
Thanks: http://code.google.com/p/django-command-extensions/ http://django-command-extensions.googlecode.com/svn/trunk/extensions/management/modelviz.py It'll check it out. -- Juanjo Conti --~--~-~--~~~---~--~~ You received this message because you are subscribe

Re: class diagram from models.py

2008-05-22 Thread M.Ganesh
Juanjo Conti wrote: > Several times I tried to generate an UML class diagram from my python > classes. I have used epydoc and the buil-in feature of SPE but the > resulting diagram did not like me. > > Is there a way to generate an UML class diagram from models.py? a > stanal

class diagram from models.py

2008-05-22 Thread Juanjo Conti
Several times I tried to generate an UML class diagram from my python classes. I have used epydoc and the buil-in feature of SPE but the resulting diagram did not like me. Is there a way to generate an UML class diagram from models.py? a stanalone app or command? Thanks you, -- Juanjo Conti