Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

8 строки
259 B

  1. from fastapi.encoders import jsonable_encoder
  2. from pydantic import BaseModel
  3. from starlette.responses import JSONResponse
  4. def create_aliased_response(model: BaseModel) -> JSONResponse:
  5. return JSONResponse(content=jsonable_encoder(model, by_alias=True))