DotWiz is a blazing fast dict subclass that enables accessing nested dictionary keys using dot notation. It wraps dictionaries and provides attribute-style access. Current version 0.4.0, maintained but not rapidly updated.
pip install dotwizNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Basic usage: create a DotWiz instance and access nested keys with dot notation.
Manually wrap nested dicts: d.key = DotWiz({'subkey': 'value'})If you need deep copy preserving DotWiz, use copy.deepcopy or wrap explicitly.
Monitor the repository for any changes.
Use d.key = DotWiz({'subkey': value}) instead of d.key = {'subkey': value}Import the class: from dotwiz import DotWiz
Check key exists with 'key' in d or use .get() method.
No dependency data recorded yet.