count-dict

Count dictionary package in python.


Keywords
count, dictionary
License
AGPL-3.0
Install
pip install count-dict==1.1.1

Documentation

count_dict

PyPI PyPI - Status GitHub Release Date Build Status Code Intelligence Status Language grade: Python Codacy Badge Scrutinizer Code Quality PyPI - Downloads PyPI - Python Version PyPI - License

This is a Python package for count dictionaries.

Installation

Installation can be done through pip. You must have python version >= 3.7

pip install count-dict

Usage

The statement to import the package:

from count_dict_package import count_dict

Example:

>>> accumulated = count_dict()
>>> accumulated['x'] += 9
>>> accumulated.items()
dict_items([('x', 9)])


>>> accumulated = count_dict(10)
>>> accumulated['x'] += 9
>>> accumulated.items()
dict_items([('x', 19)])


>>> accumulated = defaultdict(count_dict)
>>> accumulated['x']['y'] += 9
>>> {'x': dict(accumulated['x'])}
{'x': {'y': 9}}


>>> accumulated = defaultdict(count_dict(10))
>>> accumulated['x']['y'] += 9
>>> {'x': dict(accumulated['x'])}
{'x': {'y': 19}}