Created
March 7, 2021 16:53
-
-
Save novasush/0b7c50b7a4813f48543726d0f7032e6a to your computer and use it in GitHub Desktop.
A Hello World app of FastAPI
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from fastapi import FastAPI | |
app = FastAPI() | |
@app.get("/") | |
async def index(): | |
""" | |
A simple Hello World GET request | |
""" | |
return {"message": "Hello, World!"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment