Skip to content
Archive of posts tagged django

Some Django stuff

A few Django 1.1 functions someone may find useful.

Project management
django.utils.version.get_svn_revision
def get_svn_revision(path=None):
“”"
Returns the SVN revision in the form SVN-XXXX,
where XXXX is the revision number.

[...]

RabbitMQ, Celery and Django

So why would you need a task queue? Let’s say you are building a Web application that is going to convert a fair amount of files (converting videos to Adobe Flash for instance). The other requirement is that a user must be notified when the video was converted and management tasks need to happen automatically: [...]