FastAPI — Python API + Swagger

I was using Flask few months ago, but when I discover FASTAPI my life change
The official documentation :
https://fastapi.tiangolo.com/tutorial/
To create a very easy and quick API on Python.
Select your python version, interpreter, and packge isntall pip or pip3
- Create folder
- Create git init
- Create via pip3 virtual environment :
https://realpython.com/python-virtual-environments-a-primer/
# Python 3
$ python3 -m venv env
4. Install FastAPI lib and uviocorn
check that whole packe are installed on env/lib/bin
And run the code.
That’s all folks!