Metadata-Version: 2.1
Name: nv-collections
Version: 0.1.0
Summary: Data collections to be used with Python 3.10+
Home-page: https://github.com/gstos/nv-utils-collections
License: MIT
Author: Gustavo Santos
Author-email: gustavo@next.ventures
Requires-Python: >=3.10,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Project-URL: Repository, https://github.com/gstos/nv-utils-collections
Description-Content-Type: text/markdown

# nv-collections
Enhanced data structures.

- ChainSequence: chained lists (i.e. group of individual lists that behave as a single flattened list)
- ObjectDict: dictionary that implements attribute search
- StandardKeyMapping: dictionary that standardize keys (e.g. lower case)
- OrderedSet: a set that preserves order (similar to OrderedDict)
- Singletons: Singleton metaclass and semantic singletons

