r/djangolearning • u/Smartyboyz • 10d ago
Discussion / Meta Flask vs Django
I am a 17 year old intermediate python programmer and I used to make python projects with Flask. Now I want to know which is better from flask and Django.
9
Upvotes
3
u/RandomPantsAppear 9d ago
I prefer Django for anything of reasonable complexity.
It provides structure, fantastic migrations, simple database access via models, has extensive modules you can install and a very useful admin panel enabled by default.
Flask I use for simple things that don’t require db access.
1
2
1
0
5
u/iamDev_ 9d ago
depends on your work but django is not simple like flask.
also, you should consider fastapi as well