Flask is only used by beginners? [closed]

1

Is Flask only recommended for those who do not have experience in web frameworks, ie for small projects (academic projects) or are recommended to develop large projects (industry projects)?

    
asked by anonymous 19.10.2015 / 23:43

1 answer

5

Not at all. Flask is a leaner framework with fewer opinions, which makes it easier to extend (and understand!). It's a good way to get into the web development world with Python but it's not just a toy.

You often do not need to develop a huge system on the server because most functionality runs in the browser, like single-page applications (SPA) using Angular, React, Backbone, etc. In many of these cases all you need is a framework that allows you to create a few simple pages and a REST API to feed calls that come from JavaScript. In these cases I really like to use Flask with Flask-RESTful.

    
20.10.2015 / 00:13