Metadata-Version: 1.1
Name: dict-converter
Version: 0.1.1
Summary: A chain-line dict converter in Python 3
Home-page: https://duyixian1234.visualstudio.com/dict-converter
Author: Yixian Du
Author-email: duyixian1234@qq.com
License: MIT
Description: 
        dict-converter
        ===============
        
        A chain-line dict converter in Python 3
        
        Example
        -------
        
        >>> from dict_converter import DictConverter
        >>> a = {'a': 'a', 'b': 'b', 0: 0}
        >>> DictConverter(a).add(0, lambda s: s + 1).add(['a', 'b'], str.upper).result()
        {'a':'A','b':'B', 0:1}
        
        Install
        -------
        
        .. code-block:: shell
        pip install condition_chain
        
        Author
        ------
        Yixian Du (duyixian1234@outlook.com)
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
