What is a good reference guide for Django - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T06:12:38Zhttp://stackoverflow.com/feeds/question/298447http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/298447/what-is-a-good-reference-guide-for-django5What is a good reference guide for DjangoBen2008-11-18T11:07:07Z2008-11-18T11:38:02Z
<p>Hi,</p>
<p>I've just started using Django, and have never programmed in Python before. I really feel the need for a Django / Python reference guide, either online or in book form. Anyone know of a good one? I'm really looking for a reference guide, rather than a "how-to" guide, as the latter seem to be easy enough to find.</p>
<p>Thanks,</p>
<p>Ben</p>
http://stackoverflow.com/questions/298447/what-is-a-good-reference-guide-for-django/298455#2984558Answer by Alexander Kojevnikov for What is a good reference guide for DjangoAlexander Kojevnikov2008-11-18T11:10:40Z2008-11-18T11:10:40Z<p>You want <a href="http://www.djangobook.com/" rel="nofollow">The Django Book</a>. <a href="http://docs.djangoproject.com/en/dev/" rel="nofollow">The official documentation</a> is also quite good.</p>
http://stackoverflow.com/questions/298447/what-is-a-good-reference-guide-for-django/298465#2984655Answer by ayaz for What is a good reference guide for Djangoayaz2008-11-18T11:14:54Z2008-11-18T11:14:54Z<p>Alexander has got the two most important links for Django. I'll point out that I learned Python from <a href="http://diveintopython.org/" rel="nofollow">Dive Into Python</a>.</p>
http://stackoverflow.com/questions/298447/what-is-a-good-reference-guide-for-django/298474#2984742Answer by gimel for What is a good reference guide for Djangogimel2008-11-18T11:20:01Z2008-11-18T11:20:01Z<p>For learning Python, see <a href="http://stackoverflow.com/questions/111857/what-did-you-use-to-teach-yourself-python">what did you use to teach yourself python</a>.</p>
http://stackoverflow.com/questions/298447/what-is-a-good-reference-guide-for-django/298517#2985170Answer by charles.merriam for What is a good reference guide for Djangocharles.merriam2008-11-18T11:38:02Z2008-11-18T11:38:02Z<p>While not a reference work, you will learn Django much faster if you install the django-extensions, a.k.a., the Django Command Extensions. This will put many more handy commands into manage.py, including '<em>graph my data model so I can see it.</em>'. Also, errors improve from '<em>your code failed at filename:lineno</em>' to '<em>oh, and here's the formatted source code and a debugging shell where it failed.</em>'</p>
<p>Django-extensions project at <a href="http://code.google.com/p/django-command-extensions/" rel="nofollow">http://code.google.com/p/django-command-extensions/</a>.
The screencast, which obviates most documenation, is at <a href="http://ericholscher.com/blog/2008/sep/12/screencast-django-command-extensions/" rel="nofollow">http://ericholscher.com/blog/2008/sep/12/screencast-django-command-extensions/</a>.</p>