Metadata-Version: 1.0
Name: howard
Version: 1.0.1
Summary: Convert dictionaries to dataclasses and back
Home-page: https://github.com/nhumrich/howard
Author: nhumrich
Author-email: UNKNOWN
License: MIT
Description: # howard
        Python datatype marshalling
        
        
        This libary marshalls dictionaries (think json) into instances of defined dataclasses and back.
        
        
        i.e.
        
        ```python
        from dataclasses import dataclass
        
        import howard
        
        @dataclass
        class Person:
            name: str
            age: int
        
        
        my_dict = {'name': 'Bob', 'age': 24}
        person = howard.fromdict(my_dict, Person)
        assert person.name == 'Bob'
        assert person.age == 24
        ```
        
        
        to install:
        
        ```bash
        pip install howard
        ```
Platform: UNKNOWN
