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.
59 lines
1.8 KiB
59 lines
1.8 KiB
from enum import Enum
|
|
from types import GeneratorType
|
|
from typing import Any, Set
|
|
|
|
from pydantic import BaseModel
|
|
from pydantic.json import ENCODERS_BY_TYPE
|
|
|
|
|
|
def jsonable_encoder(
|
|
obj: Any,
|
|
include: Set[str] = None,
|
|
exclude: Set[str] = set(),
|
|
by_alias: bool = False,
|
|
include_none: bool = True,
|
|
) -> Any:
|
|
if isinstance(obj, BaseModel):
|
|
return jsonable_encoder(
|
|
obj.dict(include=include, exclude=exclude, by_alias=by_alias),
|
|
include_none=include_none,
|
|
)
|
|
if isinstance(obj, Enum):
|
|
return obj.value
|
|
if isinstance(obj, (str, int, float, type(None))):
|
|
return obj
|
|
if isinstance(obj, dict):
|
|
return {
|
|
jsonable_encoder(
|
|
key, by_alias=by_alias, include_none=include_none
|
|
): jsonable_encoder(value, by_alias=by_alias, include_none=include_none)
|
|
for key, value in obj.items()
|
|
if value is not None or include_none
|
|
}
|
|
if isinstance(obj, (list, set, frozenset, GeneratorType, tuple)):
|
|
return [
|
|
jsonable_encoder(
|
|
item,
|
|
include=include,
|
|
exclude=exclude,
|
|
by_alias=by_alias,
|
|
include_none=include_none,
|
|
)
|
|
for item in obj
|
|
]
|
|
errors = []
|
|
try:
|
|
encoder = ENCODERS_BY_TYPE[type(obj)]
|
|
return encoder(obj)
|
|
except KeyError as e:
|
|
errors.append(e)
|
|
try:
|
|
data = dict(obj)
|
|
except Exception as e:
|
|
errors.append(e)
|
|
try:
|
|
data = vars(obj)
|
|
except Exception as e:
|
|
errors.append(e)
|
|
raise ValueError(errors)
|
|
return jsonable_encoder(data, by_alias=by_alias, include_none=include_none)
|
|
|