pythonasyncioapiasyncfastapiframeworkjsonjson-schemaopenapiopenapi3pydanticpython-typespython3redocreststarletteswaggerswagger-uiuvicornweb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
369 B
15 lines
369 B
from fastapi import FastAPI
|
|
from starlette.exceptions import HTTPException
|
|
from starlette.responses import PlainTextResponse
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
@app.exception_handler(HTTPException)
|
|
async def http_exception(request, exc):
|
|
return PlainTextResponse(str(exc.detail), status_code=exc.status_code)
|
|
|
|
|
|
@app.get("/")
|
|
async def root():
|
|
return {"message": "Hello World"}
|
|
|