I've understood that question was only on authentication after I've written this so most of things here are offtopic, but I just wanted to demotivate on using full-stack solutions like django or web2py in appengine.
I can tell you something about django because I've used it for over a year and I do like it for certain types of websites. It was first framework which I've tried to use on appengine and I've dropped it after two weeks.
These are things in django which doesn't work or make no sense in appengine:
- django models and orm: designed for sql; appengine sdk has its own models.
- django admin site: is designed for sql databases, doesn't work on appengine
- auto-forms from models: designed for django models
- django management commands: none of commands which come with django is useful when working with appengine SDK.
- django development server: appengine sdk has its own development server, django's one does not work.
- django "plugable apps" architecture: at least in my practice it was useless on appengine.
- static files collector: great tool to collect static files from various reusable applications into one folder, only if you have many reusable applications.
There exists django-nonrel project which says it can run django with admin site on appengine. It can, with half of things working and a lot of bugs. You spend more time trying to fix what does not work than building things.
What might be useful from django framework:
- django forms: can be exchanged for a better library WTForms
- django url routing: can use Werkzeug instead
- django request/response objects and HTTP exceptions: can use Werkzeug instead
- django pretty-printing exceptions: Werkzeug does it better, it adds a web debugger.
- django i18n and localization: can be changed with babel
- django templates: jinja2 is similar and a lot faster, which is important because appengine is an expensive platform.
ctypes module is required to debug errors in jinja templates, however ctypes is forbidden on appengine, but on development server it does work, for debugging you don't need more.
Actually Jinja2, Werkzeug, WTForms and babel are so cool, that there exists projects for each of them which integrates them with django.
I know two frameworks which use these libraries:
- kay-framework: made for appengine, a bit outdated, but a great example how you can use Jinja2, babel and Werkzeug on appengine.
- flask from Armin Ronacher, the man behind Werkzeug and Jinja2.
I've not used web2py, however since it is also a full-stack framework like django is, I think it will be as bad as django is. Full-stack solutions simply do not fit in this different environment. Simple libraries fit in any environment.