Metadata-Version: 2.1
Name: dict-converter
Version: 0.1.0
Summary: A chain-line dict converter in Python 3
Home-page: UNKNOWN
Author: Yixian Du
Author-email: duyixian1234@qq.com
License: MIT
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


# dict-converter
A chain-line dict converter in Python 3
#Install
```bash
pip install dict-converter
```
# Use
```python
from dict_converter import DictConverter
a = {'a': 'a', 'b': 'b', 0: 0}
_a = DictConverter(a).add(0, lambda s: s + 1).add(['a', 'b'], str.upper).result()
_a == {'a':'A', 'b':'B', 0: 1}
```

