Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What are some good web apps for learning Flask? [closed]

Tags:

python

flask

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

like image 481
jemeshsu Avatar asked Aug 19 '11 08:08

jemeshsu


2 Answers

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.

like image 126
agf Avatar answered Oct 12 '22 15:10

agf


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.

like image 40
mikewaters Avatar answered Oct 12 '22 15:10

mikewaters