Python data classes were introduced in [https://peps.python.org/pep-0557/](PEP 557). They allow us to model data cleaner than commonly used dicts. Unlike classic python classes, data classes are easily transformable to a dictionary - you can use the ...