What is a good reference guide for Django - Stack Overflow most recent 30 from stackoverflow.com 2010-03-12T01:49:38Z http://stackoverflow.com/feeds/question/298447 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/298447/what-is-a-good-reference-guide-for-django 5 What is a good reference guide for Django Ben http://stackoverflow.com/users/11522 2008-11-18T11:07:07Z 2008-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#298455 8 Answer by Alexander Kojevnikov for What is a good reference guide for Django Alexander Kojevnikov http://stackoverflow.com/users/712 2008-11-18T11:10:40Z 2008-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#298465 5 Answer by ayaz for What is a good reference guide for Django ayaz http://stackoverflow.com/users/23191 2008-11-18T11:14:54Z 2008-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#298474 2 Answer by gimel for What is a good reference guide for Django gimel http://stackoverflow.com/users/6491 2008-11-18T11:20:01Z 2008-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#298517 0 Answer by charles.merriam for What is a good reference guide for Django charles.merriam http://stackoverflow.com/users/34427 2008-11-18T11:38:02Z 2008-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>