FastAPI is a modern, fast (high-performance), web framework for building APIs with Python based on standard Python type hints
This is just to demonstrate how to leverage the fast-api framework to build an API quickly. https://fastapi.tiangolo.com/
- python -m venv .venv
- ..venv\Scripts\activate
- pip install fastapi uvicorn
- pip freeze > requirements.txt
- uvicorn index:app --reload