I’m looking for apps source code with user registration, login, session, oauth and SQLAlchemy for learning Flask. I have looked at the source for flask.pocoo.org website and also some repos at Github. I believe there are more out there. Appreciate any pointer. Thanks
I’m looking for apps source code with user registration, login, session, oauth and SQLAlchemy
Share
For login / registration / etc. see Flask user authentication
For Oauth see WSGI Middleware for OAuth authentication
See flask-sqlalchemy for info on that.
The author of Flask also uses this site, so check out his questions and answers, as well as his blog.