DEV Community

Discussion on: Flask vs Django in 2020

Collapse
 
greeder59 profile image
Gordon Reeder

Django is great for enterprise projects because it breaks everything up. Which is great for teams. Each discipline has their stuff separated from the other disciplines. But for an individual, it means that you are constantly jumping all over the place. Your templates are here, Views are there, URLs over there, and models elsewhere. In Flask, you could put the whole thing into one file. Not a good idea, but you could. But Django has a turn key admin interface. I generally recommend Flask for individuals, Django for teams.