Metadata-Version: 2.1
Name: howard
Version: 1.5.0
Summary: Convert dictionaries to dataclasses and back
Home-page: https://github.com/nhumrich/howard
Author: nhumrich
Author-email: 
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.from_dict(my_dict, Person)
        assert person.name == 'Bob'
        assert person.age == 24
        ```
        
        
        to install:
        
        ```bash
        pip install howard
        ```
        
Platform: UNKNOWN
Description-Content-Type: text/markdown
