from fastapi import FastAPI app = FastAPI() @app.get("/hello") def hello(): return {"hello": "you successfully deployed your FastAPI app"}