I am creating a simple RESTful interface on one of my apps and I have been looking at what's available out there:
I've looked at:
- django-piston but it seems abandoned and the feedback on it is not great.
- django-dynamicresponse which seems rather bare
- A lot of packages from here
However, looking at examples of how these packages it seems that they don't really provide much. It's really not that hard to create a list of URL mappings and use something like simplejson to return a response...
Is there an advantage to using one of these packages that I am missing?
This question may be similar to Django and Restful APIs but it has been a while since that one had any new answers, and I want to find out whether it is worth to use a package at all.
Thanks