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

link|improve this question

feedback

2 Answers

up vote 7 down vote accepted

For login / registration / etc. see Flask user authentication

For Oauth see WSGI Middleware for OAuth authentication

See for info on that.

The author of Flask also uses this site, so check out his questions and answers, as well as his blog.

link|improve this answer
feedback

Here is a decent-sized app based on Flask.

I'd also recommend searching github and bitbucket for the term 'Flask', or checking out nullege's flask page (a valuable resource for finding how other projects use certain libraries).

Additionally, the author 'eats his own dog food' which makes his github page a great resource.

Finally, kennethreitz (an incredibly productive python developer) uses flask for some of his projects, which you can find on his github page.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.