Technical requirements
To follow the recipes in this chapter, it is important to have a good understanding of FastAPI. Additionally, since this chapter demonstrates how to integrate FastAPI with external libraries, having a basic knowledge of each library can be beneficial.
However, we will provide external links for you to review any of the concepts that are used in the recipes. You can also refer back to this chapter whenever you need to integrate a technology with FastAPI.
The code used in the chapter is hosted on GitHub at https://github.com/PacktPublishing/FastAPI-Cookbook/tree/main/Chapter10.
It is recommended to set up a virtual environment for the project in the project root folder to efficiently manage dependencies and maintain project isolation.
For each recipe, you can install all the dependencies at once within your virtual environment by using the requirements.txt
file provided in the GitHub repository in the following project folder:
$ pip install –...