I would like to roll my own login system for my python Google App Engine application (rather than using Google's users api).
I am using webapp2, and I noticed that there is a webapp2_extras.auth module and an incomplete auth tutorial.
Does anyone know how I can use this API to create:
- User Registration (take an email and password, and perhaps verify email)
- User Login with email and password
Once I have the email and password, where do I store it? In the AuthStore? And how do I authenticate against the AuthStore?