|
|
@ -34,9 +34,17 @@ def jsonable_encoder( |
|
|
|
exclude_unset: bool = False, |
|
|
|
exclude_defaults: bool = False, |
|
|
|
exclude_none: bool = False, |
|
|
|
custom_encoder: Dict[Any, Callable[[Any], Any]] = {}, |
|
|
|
custom_encoder: Optional[Dict[Any, Callable[[Any], Any]]] = None, |
|
|
|
sqlalchemy_safe: bool = True, |
|
|
|
) -> Any: |
|
|
|
custom_encoder = custom_encoder or {} |
|
|
|
if custom_encoder: |
|
|
|
if type(obj) in custom_encoder: |
|
|
|
return custom_encoder[type(obj)](obj) |
|
|
|
else: |
|
|
|
for encoder_type, encoder_instance in custom_encoder.items(): |
|
|
|
if isinstance(obj, encoder_type): |
|
|
|
return encoder_instance(obj) |
|
|
|
if include is not None and not isinstance(include, (set, dict)): |
|
|
|
include = set(include) |
|
|
|
if exclude is not None and not isinstance(exclude, (set, dict)): |
|
|
@ -118,14 +126,6 @@ def jsonable_encoder( |
|
|
|
) |
|
|
|
return encoded_list |
|
|
|
|
|
|
|
if custom_encoder: |
|
|
|
if type(obj) in custom_encoder: |
|
|
|
return custom_encoder[type(obj)](obj) |
|
|
|
else: |
|
|
|
for encoder_type, encoder in custom_encoder.items(): |
|
|
|
if isinstance(obj, encoder_type): |
|
|
|
return encoder(obj) |
|
|
|
|
|
|
|
if type(obj) in ENCODERS_BY_TYPE: |
|
|
|
return ENCODERS_BY_TYPE[type(obj)](obj) |
|
|
|
for encoder, classes_tuple in encoders_by_class_tuples.items(): |
|
|
|