from fastapi import FastAPI app = FastAPI() @app.get("/") def read_root(): return {"Hello": "You are not the Small World!"}