Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Flask framework for a small and medium size projects

Tags:

python

flask

I'm about to try Flask framework and look if it fits my needs. I worked with Django, it is cool, but I want to try Flask. I have one small and maybe one medium-sized project and wanted to ask if Flask is the right framework to use for those?

Do you guys have experience by running medium-sized (or even large-scale) projects with Flask? Would be nice to hear facts and not just things like "I like Django because it is cool" or "I like Flask just because it is small" :)

Anyway, I will try to play with it, just from curiosity.

like image 281
Ignas Butėnas Avatar asked Nov 15 '25 01:11

Ignas Butėnas


1 Answers

Flask works fine for larger applications, too.

Have a look at the "Larger Applications" page of the flask docs; it has some suggestions on how to keep your code properly structured.

If you need e.g. an ORM you can use Flask-SQLAlchemy which nicely integrates SA into your Flask environment.

like image 102
ThiefMaster Avatar answered Nov 17 '25 20:11

ThiefMaster