3c80574 01c9470 3c80574
1
2
3
4
5
6
7
from fastapi import FastAPI app = FastAPI() @app.get("/say_hello/") async def say_hello(name): return {"message": f"Hello {name}!"}