Django gotchas
By : Shabda Raaj
This is announcement about our new work, Django Gotchas, a teeny tiny ebook about commonly occurring gotchas with Django. Here is the readme copied from the project.
Django-gotchas is a collections of gotchas which happen commonly when you are working with Django. They are some errors which I have made commonly or seen others do, these are not the errors which happen because they are hard to reason about, these are those errors which hapen when you close your eyes for a moment when coding.
This is still very much a work in progress, released in the spirit of release early, release often. Click here to get it, or fork it on Bitbucket
In Other news
- We have slightly updated the Django design patterns, though not the public website.
- cyrildoussin has done a lot of changes to Socialauth and made it much better. You can get it here . Thank! We will be merging this soon.
Related Posts
- Two Scoops of Django: Review
- Serving static files in Django
- Logging in Django
- Common testing scenarios for Django app.
- Deploying django using docker
Can we help you build amazing apps? Contact us today.
Looks good!
There's a small typo on the urls page:
url(‘^edit/(?P[w-]+)/$’, edit_view, )
should be:
url(‘^edit/(?P[\w-]+)/$’, edit_view, )