Skip to content

v1.0.0

Compare
Choose a tag to compare
@Vivswan Vivswan released this 27 May 21:01
· 31 commits to release since this release
82e932b

!!! Ready to be used !!!

A dictionary that de-duplicates values.

A dictionary-like class that deduplicates values by storing them in a separate dictionary and replacing
them with their corresponding hash values. This class is particularly useful for large dictionaries with
repetitive entries, as it can save memory by storing values only once and substituting recurring values
with their hash representations.

This class supports nested structures by automatically converting nested dictionaries into
DeDuplicationDict instances. It also provides various conversion methods to convert between regular
dictionaries and DeDuplicationDict instances.

Installation

pip install deduplicationdict

Full Changelog: v1.0.0rc2...v1.0.0