Part 1:Learning the Flask 3.x Framework
In this part, you will learn and understand the basic and core components to implement Flask-accepted web and API applications, including using the Blueprints and application factory functions to build the proper Flask project structure. This part will also teach you how to integrate Flask into the PostgreSQL databases using the psycopg2 and asyncpg drivers and implement the repository layers of your application using the native database driver or the object-relational mapping (ORM) tool. Moreover, you will learn how to use external Flask modules to implement the features of your applications without spending much time and effort.
This part includes the following chapters:
- Chapter 1, A Deep Dive into the Flask Framework
- Chapter 2, Adding Advanced Core Features
- Chapter 3, Creating REST Web Services
- Chapter 4, Utilizing Flask Extensions