Can i use django Piston in google appengine?

I was unable to do this due to all the missing dependencies (basically, I think the problem is with the authentication code, which relies on django stuff, which is not available in AppEngine)

I was wondering if someone scratched a torn piston to get him to work on AppEngine?

+5
source share
3 answers

It turns out that the problem with Piston and AppEngine is mainly related to the authentication code. So, I managed to unload Piston in AppEngine by doing the following:

  • app-engine-patch, django Google AppEngine
  • OAuth ( authentication.py). , , auth, , ...
+2

I developed django-oauth to make it compatible with app-engine-patch. Therefore, it could be used with django-piston-app-engine .

http://bitbucket.org/mtourne/django-oauth-appengine/

+1
source

All Articles