What are the apps that you consider part of your core toolset for Django projects (including those shipped with Django)? For example, I just discovered Migratory for database migration management: I just love it, and I wish something like that would be included in Django.

I took a look at DjangoPlugables.com and other such web sites, but it is difficult to filter out the popular and general purpose apps... so maybe here is the place!

One app per answer please, and +1 the ones you like.

link|improve this question
1  
@Brian: I'm glad it helps, thanks to everyone who answered! @Ben: you're right, I'm switching it to CW. Edit: how can I switch it to CW? I tried editing, but no checkbox appears. – MiniQuark Oct 14 '10 at 11:13
show 3 more comments
feedback

31 Answers

1 2
up vote 28 down vote accepted

django-command-extensions a collection of custom management extensions.

link|improve this answer
show 1 more comment
feedback

The django-debug-toolbar: a debugging toolbar for Django with various panels of information (version, time, http headers, request variables, SQL queries, cache stats, used templates)

link|improve this answer
show 1 more comment
feedback

South for intelligent schema migrations.

link|improve this answer
feedback

django-registration for handling user registration

link|improve this answer
feedback

django-tagging. Easy to use and great quality!

link|improve this answer
show 1 more comment
feedback

sorl.thumbnail: Very well thought out on-the-fly thumbnail creation.

link|improve this answer
feedback

We use fabric to deploy our application on our servers. This tool helps you to remotely run shell scripts or copy/rsync files. You write a fabfile.py that contains your commands, for example in our case : tag current svn trunk and rsync it on our staging server, launch tests, restart the webserver and fastcgi daemons, ...

link|improve this answer
show 1 more comment
feedback

django-filebrowser for file uploads and automatic image thumbnail creation. Integrates nicely with TinyMCE file/image selection dialogs.

link|improve this answer
feedback

django-reversion: Full history and undo integrated nicely into the admin.

link|improve this answer
feedback

Django Piston a mini-framework for creating APIs.

link|improve this answer
feedback

I think that Satchmo is going to be my new favourite as I'm slated to build an online storefront and e-commerce backend for a client.

link|improve this answer
show 1 more comment
feedback

For a start look at the 3rd party apps that have been included in Pinax. They have all been fairly well vetted and it's a good indication that they are well maintained and follow good practices for reusability.

link|improve this answer
feedback

django-simple-captcha for simple yet flexible CAPTCHA verification.

link|improve this answer
feedback

GeoDjango really useful for user getting information related to user location

link|improve this answer
feedback

Celery is an asynchronous task queue/job queue based on distributed message passing. Really nice to make all your django code async (slow db call, email, external services...)

link|improve this answer
feedback

django-sentry is an app for logging all exceptions to database. It has a very nice interface and works pretty well.

link|improve this answer
feedback

haystack. Its a ORM like abstraction layer for search backends.

link|improve this answer
feedback

Migratory for database migration.

link|improve this answer
show 1 more comment
feedback

django-messaging for sending messages between users

link|improve this answer
feedback

djangosearch for searching content.

link|improve this answer
feedback

django comments. I didn't know commenting system was this easy.

link|improve this answer
1  
Word of warning - if you want to customize it then there's a hidden border outside which it becomes a nightmare. – Tomasz Zielinski Sep 9 '10 at 8:52
show 1 more comment
feedback

django-profile is a great app for handling user profiles. It includes:

  • registration
  • avatars (works great, even allowing picasa search for avatars)
  • locations (Google Maps)
link|improve this answer
feedback

Recently I discovered django-activity-stream. It is a rather generic app aimed at logging all kinds of events into a database. Each event is described as a tuple:

Actor. The object that performed the action.

Verb. The verb phrase of the action performed.

Action Object. (Optional) The object linked to the action itself.

Target. (Optional) The object that the verb is enacted on.

Logging an event is easy: just call action.send(<tuple>) and it will be stored in the database. You can do this in signal receivers or anywhere in your code.

link|improve this answer
feedback

django-rules, which adds object-level (row-level) permissions to Django Models, rather than being limited to Auth's table-level permissions.

link|improve this answer
feedback

django-evolution for semi-automatic schema migrations.

link|improve this answer
feedback

pytils is a handy app adding intelligent support for russian language (including cases, specific date formats etc.) Cases, particularly, are not supported by django built-in pluralize filter.

link|improve this answer
feedback

django-compressor for compressing and minifying css and js on the fly

link|improve this answer
feedback

Django-Photologue has solved all my image presentation, managing and resizing needs.

link|improve this answer
feedback
1 2

Your Answer

 
or
required, but never shown

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