flask

Flask is a micro web framework written in Python. It is classified as a microframework because it does not require particular tools or libraries. It has no database abstraction layer, form validation, or any other components where pre-existing third-party libraries provide common functions. Flask supports extensions to add such functionality to your application. Key features include a built-in development server and debugger, support for secure cookies, and a simple and flexible structure that allows developers to build web applications quickly and easily. It’s WSGI toolkit and routing is based on Werkzeug, and templating uses Jinja2.