Metadata-Version: 2.4
Name: dict2dc
Version: 0.0.1
Summary: Helpers to parse dicts, e.g., from JSON parsing, to dataclasses.
Keywords: dataclass,dataclasses,dict,json,serialization,parsing,conversion
Author: Tim Walter
Author-email: Tim Walter <tim.walter@iteratec.com>
License-Expression: MIT
License-File: LICENSE
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: Topic :: File Formats :: JSON
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.12
Project-URL: Homepage, https://github.com/twwd/dict2dc
Project-URL: Issues, https://github.com/twwd/dict2dc/issues
Description-Content-Type: text/markdown

# dict2dc - dictionary to dataclass parsing

`dict2dc` is a small Python library that helps to parse Python dicts to dataclass structures.
E.g., these dicts could originate from JSON deserialization.

The library supports nested dataclasses, collections and union types.
It always tries to initiate the best matching class.
