Metadata-Version: 2.0
Name: pycountdict
Version: 1.0.2
Summary: python counter dictionary
Home-page: https://github.com/bjtj/python-counter-dictionary
Author: bjtj
Author-email: bjtj10@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent

# Python Counter Dictionary

e.g.)

```
>>> from pycountdict import CounterDictionary
>>> cd = CounterDictionary()
>>> cd['a'] = 1
>>> print(cd)
a: 1
>>> cd['b'] = 1
>>> print(cd)
a: 1, b: 1
>>> cd['A'] = 1
>>> print(cd)
a: 1, A: 1, b: 1
>>> cd['a'] = 1
>>> print(cd)
a: 2, A: 1, b: 1
```


