
FastAPI
" If anyone is looking to build a production Python API, I would highly recommend FastAPI. It is beautifully designed, simple to use and highly scalable, it has become a key component in our …
Tutorial - User Guide - FastAPI
This tutorial shows you how to use FastAPI with most of its features, step by step. Each section gradually builds on the previous ones, but it's structured to separate topics, so that you can go …
First Steps - FastAPI
You could easily add any of those alternatives to your application built with FastAPI. You could also use it to generate code automatically, for clients that communicate with your API.
Learn - FastAPI
Here are the introductory sections and the tutorials to learn FastAPI. You could consider this a book, a course, the official and recommended way to learn FastAPI. 😎
Features - FastAPI
Just standard modern Python. If you need a 2 minute refresher of how to use Python types (even if you don't use FastAPI), check the short tutorial: Python Types.
Reference - FastAPI
Here's the reference or code API, the classes, functions, parameters, attributes, and all the FastAPI parts you can use in your applications. If you want to learn FastAPI you are much …
SQL (Relational) Databases - FastAPI
Using check_same_thread=False allows FastAPI to use the same SQLite database in different threads. This is necessary as one single request could use more than one thread (for example …
Path Parameters - FastAPI
Again, just with that same Python type declaration, FastAPI gives you automatic, interactive documentation (integrating Swagger UI). Notice that the path parameter is declared to be an …
Request Body - FastAPI
FastAPI framework, high performance, easy to learn, fast to code, ready for production
Query Parameters - FastAPI
FastAPI framework, high performance, easy to learn, fast to code, ready for production