telanova / User-Auth-in-Google-App-Engine

User Authentication Using Webapp2 User Models, in Python Google App Engine Runtime enviorment

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Custom user authentication with webapp2

This is a skeleton implementation of user account management with webapp2.

You will have to take care of the following items:

  • Implement user registration
  • Write code to handle login
  • Setup email verification and password recovery (This has been done for you already)
  • Send email verification and password recovery messages via email
  • Configure login and password reset urls to use https (you will have to deploy your app to test this)

You can find most of the logic in main.py (even though you may want to put handlers in separate files, as your app grows in complexity), a custom user model in models.py, and some extremely simple views in views.

More information

You can find a detailed tutorial in this blog post: Custom user authentication with webapp2.

About

User Authentication Using Webapp2 User Models, in Python Google App Engine Runtime enviorment