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