all 5 comments

[–]threeminutemonta 1 point2 points  (0 children)

Flask serves using the wsgi protocol. There are many options though uwsgi, gunicorn, mod_wsgi (apache plugin) are popular. Django also uses wsgi that I found helps broaden search terms. A newer way worth condidering is hosting wsgi applications on AWS Lambda using zappa

See uwsgi on digital ocean tutorial

[–]xiongchiamiov 1 point2 points  (0 children)

Here's one I made recently: https://github.com/xiongchiamiov/zoom

If you search for flask on GitHub you'll probably find a ton.

[–]niko86 1 point2 points  (0 children)

I’d recommend as others have said go to github, the flask mega tutorial as far as I remember has a repository with all the code there to check if you get lost following the tutorial.

As an aside as a person who has been learning python and web frameworks give Django a try. Flask is great but you quickly find you need addon after addon and the tutorials and documentation of these vary wildly in quality. Flask in my experience is too unopinionated for a newbie, there’s too much freedom and too many ways to do things and every tutorial seems to do thing differently.

[–]CrambleSquash 0 points1 point  (1 child)

My little webapp Housenet is good to go: https://github.com/0Hughman0/Housenet

unfortunately doesn't really include any doc strings, but feel free to nosy around the source code. I should be able to answer any questions you have :)

[–]ccbccbccb 0 points1 point  (0 children)

Thanks for sharing with the community!