Metadata-Version: 1.1
Name: pycountdict
Version: 1.0.1
Summary: python counter dictionary
Home-page: https://github.com/bjtj/python-counter-dictionary
Author: bjtj
Author-email: bjtj10@gmail.com
License: UNKNOWN
Description: # 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
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
