One nice thing about Django is that unlike many frameworks, you do not have to “grok” the whole thing to be productive. In my case, I hadn’t read a lot of the documentation other than the tutorial and the details of a few of the features I need for my first app.
Surprise!
Imagine my happy surprise when I found the very nicely implemented “documentation” link in the automatically generated admin site. I’d assumed it was a link to the static documentation or some such thing, like it is in most systems. Nope. It is much more.
It has details and documentation on everything I’ve done on the site. I habitually put in docstrings, so they are formatted for me and presented on the detail pages for my model objects. Wow. This is automatic, and a big incentive to keep doing that documentation! Every view is similarly detailed. In fact, there are auto-generated pages for Tags, Filters, Models, and Views. In each case, the documentation only shows things valid for the application. If you’ve added custom tags, they are there, along with all the built-in ones.
I hate to rave, but this level of detail and usefulness is unprecedented in my professional experience. Especially in a free and open programming framework.
Technorati Tags: Django, documentation, raves, python
















2 responses so far ↓
1 import this. » Blog Archive » Django milestone 0.92 complete // Feb 2, 2006 at 7:12 pm
[…] Update 2: Coder’s Eye declares another win for Django. Much praise for the autodocumentation features. Sounds good. […]
2 Daniel // Mar 13, 2006 at 3:36 am
Wow! I hadn’t discovered that yet. Thanks for the pointer, I’ll check it out tonight.
Btw - came here searching for “logging django python” — i.e. wanting something like log4j in Python and found your rant about logging.
Daniel
Leave a Comment