Metadata-Version: 2.1
Name: dict-wrapper
Version: 0.0.4
Summary: A userful package to use '.' to visit value of dict
Home-page: https://github.com/Yyonging/dict_wrapper
Author: duanyongqiang
Author-email: sysuduanyongqiang@163.com
License: UNKNOWN
Description: dict_wrapper
        -----
        user DictWrapper to visit the value like an object  
        
        Installing
        -----
        
        Install and update using `pip`:
        
        
        
            pip install -U dict_wrapper
        
        
        A Simple Example
        -----
        
        .. code-block:: python
        
        
            from dict_wrapper import DictWrapper
        
            data = {
                "who": 'your name',
                "area": ['specify', 'china'],
                "province": {
                    "city": ['shenzhen', 'guangzhou']
                },
                "citys":[{
                    "name":"shenzhen",
                    "othername":"鹏城"
                }]
            }
            config, config1 = DW(data), DictWrapper(data)
            assert config.who == 'your name'
            assert config.province.city == ['shenzhen', 'guangzhou']
            print(config.area)
            print(config1.citys[0].name)
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.4
Description-Content-Type: text/markdown
