Introduction to FastAPI
Learn about FastAPI, an interesting and new framework to develop web apps in Python.
Introduction to FastAPI
?
The official website describes FastAPI in the following terms:
FastAPI
is a modern [and] fast (high-performance) web framework for building APIs with Python 3.6+ based on standard Python type hints.
As evident from the name, FastAPI is extremely fast and it owes this to the to out of the box support of the async
feature of Python 3.6+. This is why it is recommended to ...