views:

383

answers:

3

I'm trying to build a REST API on top of django running on Google AppEngine. Is there a FW with similar offering to piston (or a piston fork?) that can run on AppEngine models rather than on django's models?

A: 

I use http://code.google.com/p/django-rest-interface/

Paul Tarjan
I'm looking for something that supports Google AppEngine models as opposed to django models
Eran Kampf
A: 

I'm currently trying wapi, and it seems customizable enough to run on app-engine.

For instance the Serialization looks really easy to specialize to non-django models. This example is part of the tutorial available here.

mtourne
+1  A: 

There is a project called appengine-rest-server that claims to do what you ask.

jbochi