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.
19 lines
508 B
19 lines
508 B
from anyio import open_file
|
|
from fastapi import Depends, FastAPI
|
|
from typing_extensions import Annotated
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
async def get_username():
|
|
try:
|
|
async with await open_file("/path/to/sanchez.txt", "r") as f:
|
|
yield await f.read() # pragma: no cover
|
|
except OSError:
|
|
print("We don't swallow the OS error here, we raise again 😎")
|
|
raise
|
|
|
|
|
|
@app.get("/me")
|
|
def get_me(username: Annotated[str, Depends(get_username)]):
|
|
return username # pragma: no cover
|
|
|