Reputation: 2060
I understand that Google App Engine has it's own user authentication facilities but it offers only three possible way to authenticate:
But what I want is to have the same power that Django's django.contrib.auth gives, with permissions and groups with internal user database. Is there a way to have this Django module ported and used in Google app engine?
Upvotes: 0
Views: 231
Reputation: 5571
You can use non-rel to run Django on App Engine.
http://code.google.com/appengine/articles/django-nonrel.html
Upvotes: 1