Skip to content

Instantly share code, notes, and snippets.

@codemation
Created June 11, 2021 22:16
Show Gist options
  • Save codemation/2a18dc5cbd37b6f33c15a339de130035 to your computer and use it in GitHub Desktop.
Save codemation/2a18dc5cbd37b6f33c15a339de130035 to your computer and use it in GitHub Desktop.
hello world fastapi app
from fastapi import FastAPI
app = FastAPI()
@app.get('/')
async def hello_world():
return "Hello World!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment