vote up 23 vote down star
34

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.

flag

71% accept rate
This is a spectacularly useful thread. Thanks! – Brian M. Hunt Feb 3 at 17:03

20 Answers

vote up 15 vote down check

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

link|flag
Hey THANKS !!! This one is fantastic. I tried graph_models on my project... it rocks! – MiniQuark Jan 15 '09 at 16:00
vote up 4 vote down

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|flag
vote up 0 vote down

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

link|flag
vote up 2 vote down

GeoDjango really useful for user getting information related to user location

link|flag
vote up 1 vote down

django-messaging for sending messages between users

link|flag
vote up 4 vote down

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

link|flag
vote up 2 vote down

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

link|flag
vote up 1 vote down

django-evolution for semi-automatic schema migrations.

link|flag
vote up 11 vote down

South for intelligent schema migrations.

link|flag
vote up 4 vote down

django-pagination

link|flag
vote up 1 vote down

Babeldjango for internationalization and localization.

link|flag
vote up 8 vote down

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

link|flag
vote up 4 vote down

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

link|flag
vote up 4 vote down

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|flag
vote up 16 vote down

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|flag
Very nice... didn't know about that one. – MiniQuark Jan 11 '09 at 20:20
vote up 4 vote down

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|flag
hell yea satchmo is great. – bchhun Jan 11 '09 at 4:21
vote up 9 vote down

django-registration for handling user registration

link|flag
vote up 10 vote down

django-tagging. Easy to use and great quality!

link|flag
vote up 2 vote down

djangosearch for searching content.

link|flag
vote up 3 vote down

Migratory for database migration.

link|flag
I didn't know about this. Thanks! So far I've tried South and django-evolution with no luck – jpartogi Jul 22 at 14:35

Your Answer

Get an OpenID
or

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