from fastapi import FastAPI app = FastAPI() @app.get("/") def read_root(): msg = "Hello Art Berries!~" return {"message": msg}