from fastapi import FastAPI app = FastAPI() @app.get("/home") def greet_json(): return {"Hello": "World!"}