Source code for cattrs.preconf.pyyaml
"""Preconfigured converters for pyyaml."""
from datetime import datetime
from typing import Any, Type, TypeVar
from yaml import safe_dump, safe_load
from cattrs._compat import FrozenSetSubscriptable
from ..converters import BaseConverter, Converter
from . import validate_datetime
T = TypeVar("T")
[docs]class PyyamlConverter(Converter):
[docs] def dumps(self, obj: Any, unstructure_as: Any = None, **kwargs: Any) -> str:
return safe_dump(self.unstructure(obj, unstructure_as=unstructure_as), **kwargs)
[docs]def configure_converter(converter: BaseConverter):
"""
Configure the converter for use with the pyyaml library.
* frozensets are serialized as lists
* string enums are converted into strings explicitly
"""
converter.register_unstructure_hook(
str, lambda v: v if v.__class__ is str else v.value
)
converter.register_structure_hook(datetime, validate_datetime)
[docs]def make_converter(*args: Any, **kwargs: Any) -> PyyamlConverter:
kwargs["unstruct_collection_overrides"] = {
FrozenSetSubscriptable: list,
**kwargs.get("unstruct_collection_overrides", {}),
}
res = PyyamlConverter(*args, **kwargs)
configure_converter(res)
return res