Files
fastapi/docs/tutorial/src/custom-response/tutorial003.py
Sebastián Ramírez f6667ecfb0 📝 Add docs for custom response
2018-12-15 15:20:22 +04:00

20 lines
396 B
Python

from fastapi import FastAPI
from starlette.responses import HTMLResponse
app = FastAPI()
@app.get("/items/")
async def read_items():
html_content = """
<html>
<head>
<title>Some HTML in here</title>
</head>
<body>
<h1>Look ma! HTML!</h1>
</body>
</html>
"""
return HTMLResponse(content=html_content, status_code=200)