Metadata-Version: 2.4
Name: classfromtypeddict
Version: 0.0.5
Summary: ClassFromTypedDict converts a dict following a TypedDict schema into a class
Author: marsoupilami
License-Expression: GPL-3.0
Project-URL: Homepage, https://github.com/marsoupilami25/ClassFromTypedDict
Project-URL: Issues, https://github.com/marsoupilami25/ClassFromTypedDict/issues
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# ClassFromTypedDict

The Class ClassFromTypedDict allows converting a dict following a TypedDict schema into a class automatically.
    The dict will be used as a basis to set the parameters.
    If the TypedDict is nested, the associated ClassFromTypedDict is automatically created and nested to the root ClassFromTypedDict

## install

Install the module from Pypi
```
pip install classfromtypeddict
```

## limitations
list are not supported yet
