Skip to content

Dictionaries

toolbox_python.dictionaries 🔗

Summary

The dictionaries module is used how to manipulate and enhance Python dictionaries.

Details

Note that functions in this module will only take-in and manipulate existing dict objects, and also output dict objects. It will not sub-class the base dict object, or create new 'dict-like' objects. It will always maintain pure python types at it's core.

dict_reverse_keys_and_values 🔗

dict_reverse_keys_and_values(
    dictionary: dict_any,
) -> dict_str_any

Summary

Take the key and values of a dictionary, and reverse them.

Details

This process is simple enough if the values are atomic types, like str, int, or float types. But it is a little more tricky when the values are more complex types, like list or dict; here we need to use some recursion.

Parameters:

Name Type Description Default
dictionary dict_any

The input dict that you'd like to have the keys and values switched.

required

Raises:

Type Description
TypeError

If any of the inputs parsed to the parameters of this function are not the correct type. Uses the @typeguard.typechecked decorator.

KeyError

When there are duplicate values being coerced to keys in the new dictionary. Raised because a Python dict cannot have duplicate keys of the same value.

Returns:

Name Type Description
output_dict dict_str_int

The updated dict.

Examples
Set up
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
>>> # Imports
>>> from toolbox_python.dictionaries import dict_reverse_keys_and_values
>>>
>>> # Basic dictionary
>>> dict_basic = {
...     "a": 1,
...     "b": 2,
...     "c": 3,
... }
>>>
>>> # Dictionary with iterables
>>> dict_iterables = {
...     "a": ["1", "2", "3"],
...     "b": [4, 5, 6],
...     "c": ("7", "8", "9"),
...     "d": (10, 11, 12),
... }
>>>
>>> # Dictionary with iterables and duplicates
>>> dict_iterables_with_duplicates = {
...     "a": [1, 2, 3],
...     "b": [4, 2, 5],
... }
>>>
>>> # Dictionary with sub-dictionaries
>>> dict_with_dicts = {
...     "a": {
...         "aa": 11,
...         "bb": 22,
...         "cc": 33,
...     },
...     "b": {
...         "dd": [1, 2, 3],
...         "ee": ("4", "5", "6"),
...     },
... }

Example 1: Reverse one-for-one
1
>>> print(dict_reverse_keys_and_values(dict_basic))
Terminal
{
    "1": "a",
    "2": "b",
    "3": "c",
}

Conclusion: Successful conversion.

Notice here that the original values were type int, but here they have been converted to str. This is because dict keys should ideally only be str type.

Example 2: Reverse dictionary containing iterables in `values`
1
>>> print(dict_reverse_keys_and_values(dict_iterables))
Terminal
{
    "1": "a",
    "2": "a",
    "3": "a",
    "4": "b",
    "5": "b",
    "6": "b",
    "7": "c",
    "8": "c",
    "9": "c",
    "10": "d",
    "11": "d",
    "12": "d",
}

Conclusion: Successful conversion.

Notice here how it has 'flattened' the iterables in the values in to individual keys, and assigned the original key to multiple keys. They keys have again been coerced to str type.

Example 3: Dictionary with iterables, raise error when `key` already exists
1
>>> print(dict_reverse_keys_and_values(dict_iterables_with_duplicates))
Terminal
KeyError: Key already existing.
Cannot update `output_dict` with new elements: {2: 'b'}
Because the key is already existing for: {'2': 'a'}
Full `output_dict` so far:
{'1': 'a', '2': 'a', '3': 'a', '4': 'b'}

Conclusion: Failed conversion.

Here, in the second element of the dictionary ("b"), there is a duplicate value 2 which is already existing in the first element of the dictionary ("a"). So, we would expect to see an error.
Remember, a Python dict object cannot contain duplicate keys. They must always be unique.

Example 4: Dictionary with embedded dictionaries
1
>>> print(dict_reverse_keys_and_values(dict_with_dicts))
Terminal
{
    "1": "a",
    "2": "a",
    "3": "a",
    "4": "b",
    "5": "b",
    "6": "b",
    "7": "c",
    "8": "c",
    "9": "c",
    "10": "d",
    "11": "d",
    "12": "d",
}

Conclusion: Successful conversion.

Here, the process would be to run a recursive process when it recognises that any value is a dict object. So long as there are no duplicate values in any of the contained dict's, the resulting output will be a big, flat dictionary.

Source code in src/toolbox_python/dictionaries.py
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
@typechecked
def dict_reverse_keys_and_values(
    dictionary: dict_any,
) -> dict_str_any:
    """
    !!! note "Summary"
        Take the `key` and `values` of a dictionary, and reverse them.

    ???+ info "Details"
        This process is simple enough if the `values` are atomic types, like `#!py str`, `#!py int`, or `#!py float` types. But it is a little more tricky when the `values` are more complex types, like `#!py list` or `#!py dict`; here we need to use some recursion.

    Params:
        dictionary (dict_any):
            The input `#!py dict` that you'd like to have the `keys` and `values` switched.

    Raises:
        TypeError: If any of the inputs parsed to the parameters of this function are not the correct type. Uses the [`@typeguard.typechecked`](https://typeguard.readthedocs.io/en/stable/api.html#typeguard.typechecked) decorator.
        KeyError: When there are duplicate `values` being coerced to `keys` in the new dictionary. Raised because a Python `#!py dict` cannot have duplicate keys of the same value.

    Returns:
        output_dict (dict_str_int):
            The updated `#!py dict`.

    ???+ example "Examples"

        ```{.py .python linenums="1" title="Set up"}
        >>> # Imports
        >>> from toolbox_python.dictionaries import dict_reverse_keys_and_values
        >>>
        >>> # Basic dictionary
        >>> dict_basic = {
        ...     "a": 1,
        ...     "b": 2,
        ...     "c": 3,
        ... }
        >>>
        >>> # Dictionary with iterables
        >>> dict_iterables = {
        ...     "a": ["1", "2", "3"],
        ...     "b": [4, 5, 6],
        ...     "c": ("7", "8", "9"),
        ...     "d": (10, 11, 12),
        ... }
        >>>
        >>> # Dictionary with iterables and duplicates
        >>> dict_iterables_with_duplicates = {
        ...     "a": [1, 2, 3],
        ...     "b": [4, 2, 5],
        ... }
        >>>
        >>> # Dictionary with sub-dictionaries
        >>> dict_with_dicts = {
        ...     "a": {
        ...         "aa": 11,
        ...         "bb": 22,
        ...         "cc": 33,
        ...     },
        ...     "b": {
        ...         "dd": [1, 2, 3],
        ...         "ee": ("4", "5", "6"),
        ...     },
        ... }
        ```

        ```{.py .python linenums="1" title="Example 1: Reverse one-for-one"}
        >>> print(dict_reverse_keys_and_values(dict_basic))
        ```
        <div class="result" markdown>
        ```{.sh .shell title="Terminal"}
        {
            "1": "a",
            "2": "b",
            "3": "c",
        }
        ```
        !!! success "Conclusion: Successful conversion."
        !!! observation "Notice here that the original values were type `#!py int`, but here they have been converted to `#!py str`. This is because `#!py dict` keys should ideally only be `#!py str` type."
        </div>

        ```{.py .python linenums="1" title="Example 2: Reverse dictionary containing iterables in `values`"}
        >>> print(dict_reverse_keys_and_values(dict_iterables))
        ```
        <div class="result" markdown>
        ```{.sh .shell title="Terminal"}
        {
            "1": "a",
            "2": "a",
            "3": "a",
            "4": "b",
            "5": "b",
            "6": "b",
            "7": "c",
            "8": "c",
            "9": "c",
            "10": "d",
            "11": "d",
            "12": "d",
        }
        ```
        !!! success "Conclusion: Successful conversion."
        !!! observation "Notice here how it has 'flattened' the iterables in the `values` in to individual keys, and assigned the original `key` to multiple keys. They keys have again been coerced to `#!py str` type."
        </div>

        ```{.py .python linenums="1" title="Example 3: Dictionary with iterables, raise error when `key` already exists"}
        >>> print(dict_reverse_keys_and_values(dict_iterables_with_duplicates))
        ```
        <div class="result" markdown>
        ```{.sh .shell title="Terminal"}
        KeyError: Key already existing.
        Cannot update `output_dict` with new elements: {2: 'b'}
        Because the key is already existing for: {'2': 'a'}
        Full `output_dict` so far:
        {'1': 'a', '2': 'a', '3': 'a', '4': 'b'}
        ```
        !!! failure "Conclusion: Failed conversion."
        !!! observation "Here, in the second element of the dictionary (`#!py "b"`), there is a duplicate value `#!py 2` which is already existing in the first element of the dictionary (`#!py "a"`). So, we would expect to see an error.<br>Remember, a Python `#!py dict` object _cannot_ contain duplicate keys. They must always be unique."
        </div>

        ```{.py .python linenums="1" title="Example 4: Dictionary with embedded dictionaries"}
        >>> print(dict_reverse_keys_and_values(dict_with_dicts))
        ```
        <div class="result" markdown>
        ```{.sh .shell title="Terminal"}
        {
            "1": "a",
            "2": "a",
            "3": "a",
            "4": "b",
            "5": "b",
            "6": "b",
            "7": "c",
            "8": "c",
            "9": "c",
            "10": "d",
            "11": "d",
            "12": "d",
        }
        ```
        !!! success "Conclusion: Successful conversion."
        !!! observation "Here, the process would be to run a recursive process when it recognises that any `value` is a `#!py dict` object. So long as there are no duplicate values in any of the contained `#!py dict`'s, the resulting output will be a big, flat dictionary."
        </div>
    """
    output_dict: dict_str_any = dict()
    for key, value in dictionary.items():
        if isinstance(value, (str, int, float)):
            output_dict[str(value)] = key
        elif isinstance(value, (tuple, list)):
            for elem in value:
                if str(elem) in output_dict.keys():
                    raise KeyError(
                        f"Key already existing.\n"
                        f"Cannot update `output_dict` with new elements: { {elem: key} }\n"
                        f"Because the key is already existing for: { {new_key: new_value for (new_key, new_value) in output_dict.items() if new_key==str(elem)} }\n"
                        f"Full `output_dict` so far:\n{output_dict}"
                    )
                output_dict[str(elem)] = key
        elif isinstance(value, dict):
            interim_dict: dict_str_any = dict_reverse_keys_and_values(value)
            output_dict = {
                **output_dict,
                **interim_dict,
            }
    return output_dict

DotDict 🔗

Bases: dict

Dictionary subclass that allows dot notation access to keys. Nested dictionaries are automatically converted to DotDict instances.

Source code in src/toolbox_python/dictionaries.py
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
class DotDict(dict):
    """
    Dictionary subclass that allows dot notation access to keys.
    Nested dictionaries are automatically converted to DotDict instances.
    """

    def __init__(self, *args, **kwargs) -> None:
        dict.__init__(self)
        d = dict(*args, **kwargs)
        for key, value in d.items():
            self[key] = self._convert_value(value)

    def _convert_value(self, value):
        """Convert dictionary values recursively."""
        if isinstance(value, dict):
            return DotDict(value)
        elif isinstance(value, list):
            return list(self._convert_value(item) for item in value)
        elif isinstance(value, tuple):
            return tuple(self._convert_value(item) for item in value)
        elif isinstance(value, set):
            return set(self._convert_value(item) for item in value)
        return value

    def __getattr__(self, key) -> Any:
        """Allow dictionary keys to be accessed as attributes."""
        try:
            return self[key]
        except KeyError as e:
            raise AttributeError(f"Key not found: '{key}'") from e

    def __setattr__(self, key, value) -> None:
        """Allow setting dictionary keys via attributes."""
        self[key] = value

    def __setitem__(self, key, value) -> None:
        """Intercept item setting to convert dictionaries."""
        dict.__setitem__(self, key, self._convert_value(value))

    def __delitem__(self, key) -> None:
        """Intercept item deletion to remove keys."""
        try:
            dict.__delitem__(self, key)
        except KeyError as e:
            raise KeyError(f"Key not found: '{key}'.") from e

    def __delattr__(self, key) -> None:
        """Allow deleting dictionary keys via attributes."""
        try:
            del self[key]
        except KeyError as e:
            raise AttributeError(f"Key not found: '{key}'") from e

    def update(self, *args, **kwargs) -> None:
        """Override update to convert new values."""
        for k, v in dict(*args, **kwargs).items():
            self[k] = v

    def to_dict(self) -> Any:
        """Convert back to regular dictionary."""

        def _convert_back(obj) -> Any:
            if isinstance(obj, DotDict):
                return {k: _convert_back(v) for k, v in obj.items()}
            elif isinstance(obj, list):
                return list(_convert_back(item) for item in obj)
            elif isinstance(obj, tuple):
                return tuple(_convert_back(item) for item in obj)
            elif isinstance(obj, set):
                return set(_convert_back(item) for item in obj)
            return obj

        return _convert_back(self)
__init__ 🔗
__init__(*args, **kwargs) -> None
Source code in src/toolbox_python/dictionaries.py
243
244
245
246
247
def __init__(self, *args, **kwargs) -> None:
    dict.__init__(self)
    d = dict(*args, **kwargs)
    for key, value in d.items():
        self[key] = self._convert_value(value)
__getattr__ 🔗
__getattr__(key) -> Any

Allow dictionary keys to be accessed as attributes.

Source code in src/toolbox_python/dictionaries.py
261
262
263
264
265
266
def __getattr__(self, key) -> Any:
    """Allow dictionary keys to be accessed as attributes."""
    try:
        return self[key]
    except KeyError as e:
        raise AttributeError(f"Key not found: '{key}'") from e
__setattr__ 🔗
__setattr__(key, value) -> None

Allow setting dictionary keys via attributes.

Source code in src/toolbox_python/dictionaries.py
268
269
270
def __setattr__(self, key, value) -> None:
    """Allow setting dictionary keys via attributes."""
    self[key] = value
__setitem__ 🔗
__setitem__(key, value) -> None

Intercept item setting to convert dictionaries.

Source code in src/toolbox_python/dictionaries.py
272
273
274
def __setitem__(self, key, value) -> None:
    """Intercept item setting to convert dictionaries."""
    dict.__setitem__(self, key, self._convert_value(value))
__delitem__ 🔗
__delitem__(key) -> None

Intercept item deletion to remove keys.

Source code in src/toolbox_python/dictionaries.py
276
277
278
279
280
281
def __delitem__(self, key) -> None:
    """Intercept item deletion to remove keys."""
    try:
        dict.__delitem__(self, key)
    except KeyError as e:
        raise KeyError(f"Key not found: '{key}'.") from e
__delattr__ 🔗
__delattr__(key) -> None

Allow deleting dictionary keys via attributes.

Source code in src/toolbox_python/dictionaries.py
283
284
285
286
287
288
def __delattr__(self, key) -> None:
    """Allow deleting dictionary keys via attributes."""
    try:
        del self[key]
    except KeyError as e:
        raise AttributeError(f"Key not found: '{key}'") from e
update 🔗
update(*args, **kwargs) -> None

Override update to convert new values.

Source code in src/toolbox_python/dictionaries.py
290
291
292
293
def update(self, *args, **kwargs) -> None:
    """Override update to convert new values."""
    for k, v in dict(*args, **kwargs).items():
        self[k] = v
to_dict 🔗
to_dict() -> Any

Convert back to regular dictionary.

Source code in src/toolbox_python/dictionaries.py
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
def to_dict(self) -> Any:
    """Convert back to regular dictionary."""

    def _convert_back(obj) -> Any:
        if isinstance(obj, DotDict):
            return {k: _convert_back(v) for k, v in obj.items()}
        elif isinstance(obj, list):
            return list(_convert_back(item) for item in obj)
        elif isinstance(obj, tuple):
            return tuple(_convert_back(item) for item in obj)
        elif isinstance(obj, set):
            return set(_convert_back(item) for item in obj)
        return obj

    return _convert_back(self)