Files
fastapi/docs_src/custom_response/tutorial002_py310.py
2026-02-12 00:28:41 +01:00

19 lines
352 B
Python

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