![]() |
VOOZH | about |
Flask is a lightweight web framework used to build web applications and APIs. It follows a minimal design and provides core features like routing, request handling and template rendering while allowing developers to add extensions as needed. It is widely used for building small to medium web applications due to its simplicity and flexibility.
This section introduces Flask, compares it with Django and shows how to install it on Windows to start building web applications.
Covers creating and running a basic Flask app, understanding routes, HTTP methods, variables, redirects and basic configurations.
Explains creating dynamic web pages using templates and managing static files like CSS, JavaScript and images.
This section covers capturing user input, form validation, file uploads and security features like CSRF protection.
It explains how to manage application settings such as debug mode, secret keys and environment-based configurations.
Flask supports multiple databases for storing and managing data, including SQLite, PostgreSQL, MySQL, MongoDB and also allows using SQLAlchemy or executing raw SQL queries.
This section covers how middleware processes requests and responses for tasks like logging, authentication and modifications.
Authentication is used to verify user identity and manage secure access to applications. It includes login systems, password hashing, session management and permission control.
Flask makes building REST APIs easy by handling requests like GET, POST, PUT and DELETE. With Flask-RESTful, one can send and receive JSON data, manage authentication and secure the API.
Introduces advanced concepts like asynchronous programming, WebSockets and modular app structure using blueprints.
After development, Flask apps must be deployed and properly handle errors. This section covers deployment methods and techniques for managing application errors.
This section includes practical Flask projects that demonstrate real-world applications such as portfolio websites, APIs, data visualization and sentiment analysis tools.
This section provides helpful articles and references to deepen understanding of Flask and related topics.