Django and Restful APIs - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T13:23:35Z http://stackoverflow.com/feeds/question/656979 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/656979/django-and-restful-apis 6 Django and Restful APIs gsiegman 2009-03-18T04:35:14Z 2009-10-02T13:57:10Z <p>I have been struggling with choosing a methodology for creating a RESTful API with Django. None of the approaches I've tried seem to be the "silver" bullet. WAPI from <a href="http://fi.am" rel="nofollow">http://fi.am</a> is probably the closest to what I would like to accomplish, however I am not sure if it is acceptable in a true RESTful API to have parameters that are resource identifiers be in the querystring instead of in a "clean" URL format. Any suggestions for modifying WAPIs RestBinding.PATTERN to "clean" up the URLs? Another option I've explored is Django-Rest-Interface. However this framework seems to violate one of the most important pieces I need, and that is to include the full resource URL for references to other resources (see <a href="http://jacobian.org/writing/rest-worst-practices/" rel="nofollow">http://jacobian.org/writing/rest-worst-practices/</a> Improper Use of Links). The final option is to use django-multiresponse and basically do it the long way.</p> <p>Please offer me your best advice, especially people that have dealt with this decision. </p> http://stackoverflow.com/questions/656979/django-and-restful-apis/667476#667476 0 Answer by Soviut for Django and Restful APIs Soviut 2009-03-20T18:54:51Z 2009-03-20T18:54:51Z <p>Have a look at this <a href="http://code.google.com/p/django-rest-interface/wiki/RestifyDjango" rel="nofollow">RestifyDjango</a>.</p> <p>Somewhat related are Django <a href="http://code.djangoproject.com/wiki/XML-RPC" rel="nofollow">XML-RPC</a> and <a href="http://code.djangoproject.com/wiki/JSON-RPC" rel="nofollow">JSON-RPC</a>.</p> http://stackoverflow.com/questions/656979/django-and-restful-apis/697171#697171 3 Answer by jesper.mortensen for Django and Restful APIs jesper.mortensen 2009-03-30T13:23:25Z 2009-03-30T13:23:25Z <p>Hi gsiegman,</p> <p>I don't know if this project can be useful for you, but sending a link can hardly hurt. Take a look at django-apibuilder , available from <a href="http://opensource.washingtontimes.com/projects/django-apibuilder/" rel="nofollow">http://opensource.washingtontimes.com/projects/django-apibuilder/</a> . Perhaps it can be useful?</p> <p>/Jesper</p> http://stackoverflow.com/questions/656979/django-and-restful-apis/737509#737509 0 Answer by Swaroop C H for Django and Restful APIs Swaroop C H 2009-04-10T12:40:00Z 2009-04-10T12:40:00Z <p>Check out <a href="http://github.com/ingenieroariel/dapi/tree/master" rel="nofollow">django-api</a>.</p> http://stackoverflow.com/questions/656979/django-and-restful-apis/812367#812367 3 Answer by gsiegman for Django and Restful APIs gsiegman 2009-05-01T17:30:36Z 2009-05-01T17:30:36Z <p>I believe the recently released django-piston is now the best solution for creating a proper REST interface in Django. <a href="http://bitbucket.org/jespern/django-piston/wiki/Home" rel="nofollow">django-piston</a></p>