Introduction to Flask
What is Flask?
Flask is a super lightweight microframework for creating web applications with Python. It's super easy to get started. However, Flask, unlike something like Django, does not have features like authentication built in. You need to import other modules to do that.
Flask is a backend web framework which means that Flask runs the code behind the scenes. Backend means that Flask handles all the user requests and the code on the server.
Prerequisites
- Experience with Python
- Web Browser