Metadata-Version: 1.1
Name: nested_namespace
Version: 0.0.1.post1
Summary: Simple nested Namespaces
Home-page: https://github.com/ntnn/python-nested_namespace
Author: Nelo-T. Wallus
Author-email: nelo@wallus.de
License: GPLv3
Description: Nested Namespace
        ================
        
        Simple nested namespaces.
        
        .. code:: python
        
            In [1]: from nested_namespace import NestedNamespace
        
            In [2]: x = NestedNamespace()
        
            In [3]: x.some_attr = {'a': 'dict', 'will': 'be transformed'}
        
            In [4]: x
            Out[4]: NestedNamespace(some_attr=NestedNamespace(a='dict', will='be transformed'))
        
Keywords: nested recursive namespace namespaces
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
