Metadata-Version: 1.1
Name: dictns
Version: 1.2
Summary: simple class that merge dictionary and object API
Home-page: http://github.com/tardyp/dictns
Author: Pierre Tardy
Author-email: tardyp@gmail.com
License: BSD
Download-URL: http://github.com/tardyp/dictns
Description: simple class that merges dictionary and object API
        
        This Namespace objects work in a similar way as javascript objects.
        usage:
            from dictns import Namespace
            n = Namespace(dict(a=1, b=3, c=dict(d=4)))
            assert(n['a'] == n.a)
            assert(n['c']['c] == n.c.d)
        
Keywords: dict,object
Platform: Any
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Intended Audience :: Developers
