To me, the most serious competitor seems to be TurboGears. TurboGears isn't as all-inclusive as Django. You can pick your own ORM (default is SQLObject) and your own templates (default is Kid). I'd try to use SQLAlchemy and Mako, myself.
The distinction is that Django doesn't didn't (in older versions) have a proper WSGI pipeline for processing. Django's view functions are not very WSGI-like. Django can, however, plug into a WSGI pipeline. TurboGears and Pylons are more aggressively trying to incorporate WSGI into their frameworks.
For some kinds of web services, a proper, simple WSGI pipeline might be better than the Django-REST interface. Indeed, the Django-REST interface might not really save any coding when you get to more complex authorization tests and complex POST processing applications.
I'm starting to rethink our use of Django-REST, since I've had to apply a fairly large number of patches and extensions for our fine-grained authorization model.
