Metadata-Version: 2.1
Name: mapping_to_namedtuple
Version: 0.1
Summary: Converts Python Mapping to namedtuple recursively
Home-page: https://github.com/datalyticsbe/mapping_to_namedtuple/
Author: Datalytics BVBA
Author-email: datalyticsbe@gmail.com
License: MIT
Description: Convertor of Python Mappings to namedtuples
        ===
        
        This project contains a function that converts a Python Mapping or dict to a namedtuple. 
        The conversion works recursively and the input can contain other mappings or lists.
        
        
        Usage
        ===
        
        ```python
        from mapping_to_namedtuple import mapping_to_named_tuple
        
        mapping = {"a": "b", "c": "d", "e": [1, 2]}
        
        namedtuple = mapping_to_named_tuple(mapping, "test_tuple")
        ```
        
        
Keywords: mapping,dict,namedtuple,convert
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=3.6
Description-Content-Type: text/markdown
