Skip to content
This repository has been archived by the owner on Feb 16, 2023. It is now read-only.

Latest commit

 

History

History
24 lines (20 loc) · 1.9 KB

README.md

File metadata and controls

24 lines (20 loc) · 1.9 KB

study_flask

A Fundamental server monitoring system using flask.

brief description

Flask is a "micro" Framework written in Python and conceived to facilitate the development of Web Applications under the MVC pattern. In the Python world, the best known framework is Django, however there are other options with a much friendlier learning curve, and this is the case with Flask.

some features of Flask

  • Flask comes by default with a template rendering engine called Jinja2 that will help you create the dynamic pages of your web application.
  • It provides a project structure, that is, all the Apps that are built with Flask will have the same elements and the same files, which facilitates collaboration.
  • An infrastructure with a web server is not needed to test the applications, but in a simple way, a web server can be run to see the results that are obtained.
  • Flask does not have ORMs: But any of the following extensions can be used:

tutorials

license

MIT License Copyright (c) 2020 Josep Martorell