flask2
Flask is called a “micro-framework” because the idea to keep the
Install
- All systems
-
curl cmd.cat/flask2.sh
- Arch Linux
-
pacman -S python2-flask
- Fedora
-
dnf install python2-flask
- Dockerfile
- dockerfile.run/flask2
python2-flask
Flask is called a “micro-framework” because the idea to keep the
core simple but extensible. There is no database abstraction layer, no form validation or anything else where different libraries already exist that can handle that. However Flask knows the concept of extensions that can add this functionality into your application as if it was implemented in Flask itself. There are currently extensions for object relational mappers, form validation, upload handling, various open authentication technologies and more. Python 2 version.