guitar-academy / gaserver

Server for Guitar Academy written in Python
0 stars 0 forks source link

Login system using OpenID #3

Open andhieka opened 9 years ago

andhieka commented 9 years ago

Resource: Miguel Grinberg's Tutorial Part V

9gix commented 9 years ago

Flask-Social seems to be a good plugin for flask.

I happened to look at another python package https://github.com/omab/python-social-auth that solve the same things. It is more robust, and more community. It was originally designed only for Django framework, but now it is framework independent. Setting up this package in Django is straight forward.

However integrating this into flask will require Flask Blueprint. Flask Blueprint is used for modularity of our projects, integrating this into our project may affect the way we organize our code.