Metadata-Version: 2.1
Name: update_dict
Version: 1.0.3
Summary: Is a method of updating nested dictionaries
Home-page: https://github.com/yutu-75/update_dict.git
Author: yutu-75
Author-email: xiao3952@foxmail.com
License: UNKNOWN
Description: 
        update_dict
        =====================
        
        
        
        A Python module who does recursive update work on 2 dicts.
        
        Is a method of updating nested dictionaries
        
        更新多层嵌套字典的键值.
        
        Usage
        =====
        
        Installation
        ------------
        
        
        
            pip install update_dict
        
        
        Examples
        --------
        
        
        
            # >>> from update_dict import update_dict
        
            # >>> update_dict({'a':{"b":{"c":{"d"}}},"e":{"e1":{"e5":'qwq'}},"e5": {},"ss":"1111"},
            {"e5":'www',"ss":"ssss",'c':{},'ss1':'ss'})
            {'a': {'b': {'c': {}}}, 'e': {'e1': {'e5': 'www'}}, 'e5': 'www', 'ss': 'ssss'
        
            # >>> update_dict({'a':{"b":{"c":{"d":'c'}}},"e":{"e1":{"e5":'qwq'}},"e5": {},"ss":"1111"},{"d":'www'})
            {'a': {'b': {'c': {'d': 'www'}}}, 'e': {'e1': {'e5': 'qwq'}}, 'e5': {}, 'ss': '1111'}
        
            # >>> update_dict({'a': {'c': 1, 'd': {}}, 'b': 4}, {'a': 2})
            {'a': 2, 'b': 4}
            '''
        
        Why?
        ====
        
        
        License
        =======
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
