vote up 79 vote down star
156

Inspired by the question series 'Hidden features of ...', I am curious to hear about your favorite Django tips or lesser known but useful features you know of.

  • Please, include only one tip per answer.
  • Add Django version requirements if there are any.
flag
7  
Probably should have been a community wiki... – tghw Jun 19 at 16:09

30 Answers

vote up 57 vote down

I'm just going to start with a tip from myself :)

Use os.path.dirname() in settings.py to avoid hardcoded dirnames.

Don't hardcode path's in your settings.py if you want to run your project in different locations. Use the following code in settings.py if your templates and static files are located within the Django project directory:

# settings.py
import os.path
PROJECT_DIR = os.path.dirname(__file__)
...
STATIC_DOC_ROOT = os.path.join(PROJECT_DIR, "static")
...
TEMPLATE_DIRS = (
    os.path.join(PROJECT_DIR, "templates"),
)

Credits: I got this tip from the screencast 'Django From the Ground Up'.

link|flag
Hmm, I never thought of that... usually I downvote people who answer their own questions, but this one is actually useful. – R. Bemrose Feb 17 at 19:28
23  
You shouldn't downvote people that answer their own questions. It is encouraged, even if it is pre-determined. – Paolo Bergantino Feb 18 at 7:12
4  
This is such a good idea that I still have a hard time understanding why it's not default. How many folks test and deploy on the same machine? – TokenMacGuy Feb 19 at 18:37
1  
The leading slash in the 2nd argument to join() will cause those paths to be relative to the root. ie /static/ /home/user/static/ – Horn Mar 31 at 14:44
4  
If you are on Windows then replace the backslashes: os.path.join(PROJECT_DIR, "templates").replace('\\','/') – Peter Mortensen Jul 16 at 12:44
show 3 more comments
vote up 56 vote down

Use render_to decorator instead of render_to_response. It will make your code cleaner and less error prone.

@render_to('template.html')
def foo(request):
    bar = Bar.object.all()
    return {'bar': bar}

# equals to
def foo(request):
    bar = Bar.object.all()
    return render_to_response('template.html',
                              {'bar': bar},
                              context_instance=RequestContext(request))

You can find this decorator in application django-annoying, http://www.assembla.com/wiki/show/c3sH2o0eGr3B58ab7jnrAJ

link|flag
Interesting. Thanks. – ayaz Feb 18 at 7:08
How do U pass the request context? – becomingGuru Jun 18 at 7:27
2  
@becomingGuru - it happens automatically. – Dominic Rodger Jun 19 at 9:06
6  
This is fine, unless you are returning some HttpResponseRedirect()s and some render_to_response()s. Then the redirects fail. – Matthew Schinckel Jul 17 at 5:44
4  
Project has moved to: bitbucket.org/offline/django-annoying/… – hughdbrown Jul 24 at 13:29
show 2 more comments
vote up 12 vote down

I like to use the Python debugger pdb to debug Django projects.

This is a helpful link for learning how to use it: http://www.ferg.org/papers/debugging_in_python.html

link|flag
4  
This is a godsend. To give a little more info, just add this: "import pdb; pdb.set_trace()" on any line of your code. Refresh your page. It will hang. Now go to your terminal window where you are running the development server. It should now be a interactive shell where you can access all variables as they are at that point in your code where you pasted the debug code. – nbv4 Sep 1 at 6:00
vote up 17 vote down

Use Jinja2 alongside Django.

If you find the Django template language extremely restricting (like me!) then you don't have to be stuck with it. Django is flexible, and the template language is loosely coupled to the rest of the system, so just plug-in another template language and use it to render your http responses!

I use Jinja2, it's almost like a powered-up version of the django template language, it uses the same syntax, and allows you to use expressions in if statements! no more making a custom if-tags such as if_item_in_list! you can simply say %{ if item in list %}, or {% if object.field < 10 %}.

But that's not all; it has many more features to ease template creation, that I can't go though all of them in here.

link|flag
I use and enjoy Jinja2 as well, but I've found that there are some couplings to the "contrib" applications. Particularly, the admin tool is pretty heavily tied to Django templates. Also, I had to recreate the login decorators in contrib.auth to be Jinja2 friendly, but not too hard. – Joe Holloway Feb 15 at 21:27
9  
Don't replace the template system with jinja2, just "add" it, don't remove the django templtes. Use Jinja2 for your own views, and let the admin interface continue to use the django template language. – hasen j Feb 17 at 19:26
2  
I agree hartily with this. Django's limited syntax is tolerable, most of the time, but when you get to the point of making custom tags and find out just how hard that actually is, Jinja2 is a breath of fresh air – TokenMacGuy Feb 18 at 5:34
Also, if you want to do any metaprogramming on template source, Jinja2 is much more pleasant, since you can directly access the AST of parsed templates. Walking the AST makes tasks like finding out which templates extend a base template, or listing the unbound variables in a template source block, almost trivially easy. – rcoder Oct 13 at 17:04
vote up 12 vote down

Add assert False in your view code to dump debug information.

link|flag
8  
Or just type some random shit and screw the syntax! ;) – becomingGuru Jun 18 at 11:06
1  
I think assert False is more intuitive =D – Jim Robert Jul 8 at 13:12
if you're running your project in the django dev server, use python's pdb module. It's a much more powerful way to debug: import pdb; pdb.stack_trace() – mazelife Nov 14 at 22:00
vote up 36 vote down

Install Django Command Extensions and pygraphviz and then issue the following command to get a really nice looking Django model visualization:

./manage.py graph_models -a -g -o my_project.png

Here's an example output from the Django Command Extensions page.

link|flag
2  
Cool tip. Thanks. – Harold Feb 17 at 2:05
Nice, couldn't get the pygraphviz to install correctly in windows, but can still covert from the dot file using graphviz. – monkut Feb 18 at 10:22
vote up 26 vote down

Don't hard-code your URLs!

Use url names instead, and the reverse function to get the URL itself.

When you define your URL mappings, give names to your URLs.

urlpatterns += ('project.application.views'
   url( r'^something/$', 'view_function', name="url-name" ),
   ....
)

Make sure the name is unique per URL.

I usually have a consistent format "project-appplication-view", e.g. "cbx-forum-thread" for a thread view.

UPDATE (shamelessly stealing ayaz's addition):

This name can be used in templates with the url tag.

link|flag
I agree 100% on this one. I started out using hard coded urls, and it bit me on a project when I changed the url format around a bit to accommodate some changes. I took the time to go back and dig through everything and replace hard coded urls. My only big complaint is that url tag errors kill the whole page while hard coded only messes up the individual link. – ricree Sep 4 at 8:34
1  
This shouldn't be a hidden feature, this is best practice and the only way to fly. – skyl Nov 1 at 9:04
vote up 24 vote down

Don't write your own login pages. If you're using django.contrib.auth.

The real, dirty secret is that if you're also using django.contrib.admin, and django.template.loaders.app_directories.load_template_source is in your template loaders, you can get your templates free too!

# somewhere in urls.py
urlpatterns += patterns('django.contrib.auth',
    (r'^accounts/login/$','views.login', {'template_name': 'admin/login.html'}),
    (r'^accounts/logout/$','views.logout'),
)
link|flag
Cool! I didn't know that we can reuse the admins login page. Thanks! – jpartogi Jul 22 at 8:43
vote up 9 vote down

django.views.generic.list_detail.object_list -- It provides all the logic & template variables for pagination (one of those I've-written-that-a-thousand-times-now drudgeries). Wrapping it allows for any logic you need. This gem has saved me many hours of debugging off-by-one errors in my "Search Results" pages and makes the view code cleaner in the process.

link|flag
1  
You can find the new version of the book's chapter on Generic Views on djangobook.com/en/2.0/chapter11 . The one on the comment goes to the Django pre-1.0 version of the book (Django book 1.0) – voyager May 6 at 20:54
vote up 15 vote down

This adds to the reply above about Django URL names and reverse URL dispatching.

The URL names can also be effectively used within templates. For example, for a given URL pattern:

url(r'(?P<project_id>\d+)/team/$', 'project_team', name='project_team')

you can have the following in templates:

<a href="{% url project_team project.id %}">Team</a>
link|flag
vote up 20 vote down

When I was starting out, I didn't know that there was a Paginator, make sure you know of its existence!!

link|flag
:D same for me! I spent days on paginating! – vikingosegundo May 14 at 18:09
vote up 12 vote down

When trying to exchange data between Django and another application, request.raw_post_data is a good friend. Use it to receive and custom-process, say, XML data.

Documentation: http://docs.djangoproject.com/en/dev/ref/request-response/

link|flag
1  
THATS How you do it. Thankyou, +1 – TokenMacGuy Apr 10 at 12:12
vote up 7 vote down

django.db.models.get_model does allow you to retrieve a model without importing it.

James shows how handy it can be: "Django tips: Write better template tags — Iteration 4 ".

link|flag
vote up 3 vote down

Render form via django template instead of as_(ul|table|p)().

This article shows, how to use template to render CusstomForms instead of as_p(), as_table()...

To make it work change

  • from django import newforms as forms to from django import forms
  • from django.newforms.forms import BoundField to from django.forms.forms import BoundField
link|flag
vote up 1 vote down

Use isapi-wsgi and django-pyodbc to run Django on Windows using IIS and SQL Server!

link|flag
vote up 10 vote down

The webdesign app is very useful when starting to design your website. Once imported, you can add this to generate sample text:

{% load webdesign %}
{% lorem 5 p %}
link|flag
1  
FYI, for anyone using Jinja2 instead of Django templates, you can do: {{ lipsum(5) }} – Joe Holloway Aug 27 at 13:41
vote up 21 vote down

There's a set of custom tags I use all over my site's templates. Looking for a way to autoload it (DRY, remember?), I found the following:

from django import template
template.add_to_builtins('project.app.templatetags.custom_tag_module')

If you put this in a module that's loaded by default (your main urlconf for instance), you'll have the tags and filters from your custom tag module available in any template, without using {% load custom_tag_module %}.

The argument passed to template.add_to_builtins() can be any module path; your custom tag module doesn't have to live in a specific application. For example, it can also be a module in your project's root directory (eg. 'project.custom_tag_module').

link|flag
vote up 16 vote down

Virtualenv + Python = life saver if you are working on multiple Django projects and there is a possibility that they all don't depend on the same version of Django/an application.

link|flag
2  
This is ONLY way to roll! – steveth45 Jul 16 at 4:54
yep, the only way – skyl Nov 1 at 9:06
vote up 12 vote down

Use django debug toolbar. For example, it allows to view all SQL queries performed while rendering view and you can also view stacktrace for any of them.

link|flag
Which is now at github.com/robhudson/django-debug-toolbar – gsmd Nov 8 at 11:39
vote up 8 vote down

I don't have enough reputation to reply to the comment in question, but it's important to note that if you're going to use Jinja, it does NOT support the '-' character in template block names, while Django does. This caused me a lot of problems and wasted time trying to track down the very obscure error message it generated.

link|flag
vote up 2 vote down

Just found this link: http://lincolnloop.com/django-best-practices/#table-of-contents - "Django Best Practices".

link|flag
Interesting site, but all that jumping of the page up and down makes me cringe. – rslite Jul 22 at 8:06
vote up 9 vote down

From the django-admin documentation:

If you use the Bash shell, consider installing the Django bash completion script, which lives in extras/django_bash_completion in the Django distribution. It enables tab-completion of django-admin.py and manage.py commands, so you can, for instance...

  • Type django-admin.py.
  • Press [TAB] to see all available options.
  • Type sql, then [TAB], to see all available options whose names start with sql.
link|flag
vote up 6 vote down

Context processors are awesome.

Say you have a different user model and you want to include that in every response. Instead of doing this:

def myview(request, arg, arg2=None, template='my/template.html'):
    ''' My view... '''
    response = dict()
    myuser = MyUser.objects.get(user=request.user)
    response['my_user'] = myuser
    ...
    return render_to_response(template,
                              response,
                              context_instance=RequestContext(request))

Context processes give you the ability to pass any variable to your templates. I typically put mine in 'my_project/apps/core/context.py:

def my_context(request):
    try:
        return dict(my_user=MyUser.objects.get(user=request.user))
    except ObjectNotFound:
        return dict(my_user='')

In your settings.py add the following line to your TEMPLATE_CONTEXT_PROCESSORS

TEMPLATE_CONTEXT_PROCESSORS = (
    'my_project.apps.core.context.my_context',
    ...
)

Now every time a request is made it includes the my_user key automatically.

Also signals win.

I wrote a blog post about this a few months ago so I'm just going to cut and paste:

Out of the box Django gives you several signals that are incredibly useful. You have the ability to do things pre and post save, init, delete, or even when a request is being processed. So lets get away from the concepts and demonstrate how these are used. Say we’ve got a blog

class Post(models.Model):
    title = models.CharField(_('title'), max_length=255)
    body = models.TextField(_('body'))
    created = models.DateTimeField(auto_now_add=True)

So somehow you want to notify one of the many blog-pinging services we’ve made a new post, rebuild the most recent posts cache, and tweet about it. Well with signals you have the ability to do all of this without having to add any methods to the Post class.

import twitter

from django.core.cache import cache
from django.db.models.signals import post_save
from django.conf import settings

def posted_blog(sender, created=None, instance=None, **kwargs):
    ''' Listens for a blog post to save and alerts some services. '''
    if (created and instance is not None):
        tweet = 'New blog post! %s' instance.title
        t = twitter.PostUpdate(settings.TWITTER_USER,
                               settings.TWITTER_PASSWD,
                               tweet)
        cache.set(instance.cache_key, instance, 60*5)
       # send pingbacks
       # ...
       # whatever else
    else:
        cache.delete(instance.cache_key)
post_save.connect(posted_blog, sender=Post)

There we go, by defining that function and using the post_init signal to connect the function to the Post model and execute it after it has been saved.

link|flag
Django's Signals are a must-have feature for me these days, when comparing web frameworks. Writing a loosely coupled forum, say, that can listen for, say, updates from a "signature" module, but not actually require that module to work, and that can also work with compatible modules implementing the same feature, is great. I don't know why signals aren't more well known and popular. – Lee B Nov 14 at 22:34
vote up 4 vote down

I learned this one from the documentation for the sorl-thumbnails app. You can use the "as" keyword in template tags to use the results of the call elsewhere in your template.

For example:

{% url image-processor uid as img_src %}
<img src="{% thumbnail img_src 100x100 %}"/>

This is mentioned in passing in the Django templatetag documentation, but in reference to loops only. They don't call out that you can use this elsewhere (anywhere?) as well.

link|flag
2  
If a keyword as "as" can be used with a template-tag depends of this particular tag. It is not defined by django itself but by single tags, depending on their meaning. Have a look in the mentioned url-tag to see how "as" is used: code.djangoproject.com/browser/django/… – vikingosegundo Sep 7 at 1:51
vote up 8 vote down

Since Django "views" only need to be callables that return an HttpResponse, you can easily create class-based views like those in Ruby on Rails and other frameworks.

There are several ways to create class-based views, here's my favorite:

from django import http

class RestView(object):
    methods = ('GET', 'HEAD')

    @classmethod
    def dispatch(cls, request, *args, **kwargs):
        resource = cls()
        if request.method.lower() not in (method.lower() for method in resource.methods):
            return http.HttpResponseNotAllowed(resource.methods)
        try:
            method = getattr(resource, request.method.lower())
        except AttributeError:
            raise Exception("View method `%s` does not exist." % request.method.lower())
        if not callable(method):
            raise Exception("View method `%s` is not callable." % request.method.lower())
        return method(request, *args, **kwargs)

    def get(self, request, *args, **kwargs):
        return http.HttpResponse()

    def head(self, request, *args, **kwargs):
        response = self.get(request, *args, **kwargs)
        response.content = ''
        return response

You can add all sorts of other stuff like conditional request handling and authorization in your base view.

Once you've got your views setup your urls.py will look something like this:

from django.conf.urls.defaults import *
from views import MyRestView

urlpatterns = patterns('',
    (r'^restview/', MyRestView.dispatch),
)
link|flag
FWIW, the django authors actually use class-based views in a few places, e.g. contrib.formtools: code.djangoproject.com/browser/django/… – mazelife Nov 14 at 22:21
vote up 2 vote down

Use signals to add accessor-methods on-the-fly.

I saw this technique in django-photologue: For any Size object added, the post_init signal will add the corresponding methods to the Image model. If you add a site giant, the methods to retrieve the picture in giant resolution will be image.get_giant_url().

The methods are generated by calling add_accessor_methods from the post_init signal:

def add_accessor_methods(self, *args, **kwargs):
    for size in PhotoSizeCache().sizes.keys():
        setattr(self, 'get_%s_size' % size,
                curry(self._get_SIZE_size, size=size))
        setattr(self, 'get_%s_photosize' % size,
                curry(self._get_SIZE_photosize, size=size))
        setattr(self, 'get_%s_url' % size,
                curry(self._get_SIZE_url, size=size))
        setattr(self, 'get_%s_filename' % size,
                curry(self._get_SIZE_filename, size=size))

See the source code of photologue.models for real-world usage.

link|flag
vote up 0 vote down

You can put print statements into your code to debug when using the dev server.

link|flag
vote up 0 vote down

Use djangorecipe to manage your project

  • If you're writing a new app, this recipe makes testing it outside of a project really easy
  • It allows you to manage dependencies for a project (e.g. what version of some app it should depend on)

All you have to do to get started is this:

  1. Create a folder for your new website (or library)
  2. Create a buildout.cfg with following content in it:

    
    [buildout]
    parts=django
    
    
    [django]
    recipe=djangorecipe
    version=1.1.1
    project=my_new_site
    settings=development
    
  3. Grab a bootstrap.py to get a local installation of buildout and place it within your directory. You can either go with the official one (sorry, Markdown didn't like part of the full link :-/ ) or with one that uses distribute instead of setuptools as described by Reinout van Rees.
  4. python bootstrap.py (or python bootstrap_dev.py if you want to use distribute).
  5. ./bin/buildout

That's it. You should now have a new folder "my_new_site", which is your new django 1.1.1 project, and in ./bin you will find the django-script which replaces the manage.py on a normal installation.

What's the benefit? Let's say you want to use something like django-comment-spamfighter in your project. All you'd have to do is change your buildout.cfg to something like this:


[buildout]
parts=django

[django]
recipe=djangorecipe
version=1.1.1
project=my_new_site
settings=development
eggs=
    django-comments-spamfighter==0.4

Not that all I did was to add the last 2 lines which say, that the django-part should also have the django-comments-spamfighter package in version 0.4. The next time you run ./bin/buildout, buildout will download that package and modify ./bin/django to add it to its PYTHONPATH.

djangorecipe is also suited for deploying your project with mod_wsgi. Just add the wsgi=true setting to the django-part of your buildout.cfg and a "django.wsgi" will appear in your ./bin folder :-)

And if you set the test option to a list of applications, the djangorecipe will create a nice wrapper for you that runs all the tests for the listed application in your project.

If you want to develop a single app in a standalone environment for debugging etc., Jakob Kaplan-Moss has a quite complete tutorial on his blog

link|flag
vote up 4 vote down

Instead of using render_to_response to bind your context to a template and render it (which is what the Django docs usually show) use the generic view direct_to_template. It does the same thing that render_to_response does but it also automatically adds RequestContext to the template context, implicitly allowing context processors to be used. You can do this manually using render_to_response, but why bother? It's just another step to remember and another LOC. Besides making use of context processors, having RequestContext in your template allows you to do things like:

<a href="{{MEDIA_URL}}images/frog.jpg">A frog</a>

which is very useful. In fact, +1 on generic views in general. The Django docs mostly show them as shortcuts for not even having a views.py file for simple apps, but you can also use them inside your own view functions:

from django.views.generic import simple

def article_detail(request, slug=None):
    article = get_object_or_404(Article, slug=slug)
    return simple.direct_to_template(request, 
        template="articles/article_detail.html",
        extra_context={'article': article}
    )
link|flag
vote up 0 vote down

Instead of running the Django dev server on localhost, run it on a proper network interface. For example:

python manage.py runserver 192.168.1.110:8000

Then you can not only easily use Fiddler (http://www.fiddler2.com/fiddler2/) or another tool like HTTP Debugger (http://www.httpdebugger.com/) to inspect your HTTP headers, but you can also access your dev site from other machines on your LAN to test.

Make sure you are protected by a firewall though, although the dev server is minimal and relatively safe.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.