5 ms·
Not sure if there is an easy answer but there are quite a few threads on this topic on stackoverflow or even HN. Django and flask in my limited experience are b
by yashchandra 14y ago
Not sure if there is an easy answer but there are quite a few threads on this topic on stackoverflow or even HN. Django and flask in my limited experience are both great frameworks but the difference is that flask is micro while django is fully loaded. That does not necessarily mean more automation with django since your project could have specific custom requirements which django out of the box may not work and hence you could use something like flask and extend it to your specific needs.
I personally prefer Flask since it makes me learn a little more about stuff and in love with the Jinja2 templating supported by Flask.