Skip to content

Latest commit

 

History

History
9 lines (6 loc) · 316 Bytes

README.md

File metadata and controls

9 lines (6 loc) · 316 Bytes

Python-API-Development-

Building API using FASTAPI framework in Python

The command: uvicorn main:app refers to:

main: the file main.py (the Python "module"). app: the object created inside of main.py with the line app = FastAPI(). --reload: make the server restart after code changes. Only use for development.