Design Documents for Python/Django?
Posted
by british_trader
on Stack Overflow
See other posts from Stack Overflow
or by british_trader
Published on 2010-06-14T07:43:36Z
Indexed on
2010/06/14
7:52 UTC
Read the original article
Hit count: 178
After working on a Django project for a while, I now have to do some design documents for it (UML type stuff). However the code doesn't have classes, but instead uses views.py
with modules in it...
What would be the best way to show the design of my application from the initial __init__.py
, to the urls.py
where the HTML requests are then filtered to the specific urls.py
in each of the packages and then handled by the views.py
?
i.e.
django-app
urls.py
views.py
settings.py
manager.py
__init__.py
django-package
urls.py
views.py
© Stack Overflow or respective owner