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
TypeCheckError

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:
        TypeCheckError:
            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"

        ```pycon {.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"),
        ...     },
        ... }
        ```

        ```pycon {.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>

        ```pycon {.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>

        ```pycon {.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>

        ```pycon {.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

Summary

Dictionary subclass that allows dot notation access to keys.

Details

Nested dictionaries are automatically converted to DotDict instances.

Examples
Set up
1
2
3
4
5
>>> # Imports
>>> from toolbox_python.dictionaries import DotDict
>>>
>>> # Create a DotDict
>>> dot_dict = DotDict({"a": 1, "b": {"c": 2}})

Example 1: Accessing values with dot notation
1
>>> print(dot_dict.a)
Output
1

Conclusion: Successfully accessed value using dot notation.

Example 2: Accessing nested values with dot notation
1
>>> print(dot_dict.b.c)
Output
2

Conclusion: Successfully accessed nested value using dot notation.

Example 3: Setting values with dot notation
1
2
>>> dot_dict.d = 3
>>> print(dot_dict.d)
Output
3

Conclusion: Successfully set value using dot notation.

Example 4: Updating nested values with dot notation
1
2
>>> dot_dict.b.e = 4
>>> print(dot_dict.b.e)
Output
4

Conclusion: Successfully updated nested value using dot notation.

Example 5: Converting back to regular dict
1
2
>>> regular_dict = dot_dict.to_dict()
>>> print(regular_dict)
Output
{'a': 1, 'b': {'c': 2, 'e': 4}, 'd': 3}

Conclusion: Successfully converted DotDict back to regular dict.

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
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
class DotDict(dict):
    """
    !!! note "Summary"
        Dictionary subclass that allows dot notation access to keys.

    !!! abstract "Details"
        Nested dictionaries are automatically converted to DotDict instances.

    ???+ example "Examples"
        ```pycon {.py .python linenums="1" title="Set up"}
        >>> # Imports
        >>> from toolbox_python.dictionaries import DotDict
        >>>
        >>> # Create a DotDict
        >>> dot_dict = DotDict({"a": 1, "b": {"c": 2}})
        ```

        ```pycon {.py .python linenums="1" title="Example 1: Accessing values with dot notation"}
        >>> print(dot_dict.a)
        ```
        <div class="result" markdown>
        ```{.sh .shell title="Output"}
        1
        ```
        !!! success "Conclusion: Successfully accessed value using dot notation."
        </div>

        ```pycon {.py .python linenums="1" title="Example 2: Accessing nested values with dot notation"}
        >>> print(dot_dict.b.c)
        ```
        <div class="result" markdown>
        ```{.sh .shell title="Output"}
        2
        ```
        !!! success "Conclusion: Successfully accessed nested value using dot notation."
        </div>

        ```pycon {.py .python linenums="1" title="Example 3: Setting values with dot notation"}
        >>> dot_dict.d = 3
        >>> print(dot_dict.d)
        ```
        <div class="result" markdown>
        ```{.sh .shell title="Output"}
        3
        ```
        !!! success "Conclusion: Successfully set value using dot notation."
        </div>

        ```pycon {.py .python linenums="1" title="Example 4: Updating nested values with dot notation"}
        >>> dot_dict.b.e = 4
        >>> print(dot_dict.b.e)
        ```
        <div class="result" markdown>
        ```{.sh .shell title="Output"}
        4
        ```
        !!! success "Conclusion: Successfully updated nested value using dot notation."
        </div>

        ```pycon {.py .python linenums="1" title="Example 5: Converting back to regular dict"}
        >>> regular_dict = dot_dict.to_dict()
        >>> print(regular_dict)
        ```
        <div class="result" markdown>
        ```{.sh .shell title="Output"}
        {'a': 1, 'b': {'c': 2, 'e': 4}, 'd': 3}
        ```
        !!! success "Conclusion: Successfully converted DotDict back to regular dict."
        </div>
    """

    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:
        """
        !!! note "Summary"
            Override update to convert new values.

        Parameters:
            *args:
                Variable length argument list.
            **kwargs:
                Arbitrary keyword arguments.

        Returns:
            (None):
                This function does not return a value. It updates the dictionary with new key-value pairs.

        ???+ example "Examples"
            ```pycon {.py .python linenums="1" title="Update DotDict"}
            >>> dot_dict = DotDict({"a": 1, "b": 2})
            >>> dot_dict.update({"c": 3, "d": {"e": 4}})
            >>> print(dot_dict)
            ```
            <div class="result" markdown>
            ```{.sh .shell title="Output"}
            {'a': 1, 'b': 2, 'c': 3, 'd': {'e': 4}}
            ```
            !!! success "Conclusion: Successfully updated DotDict with new values."
            </div>
        """
        for k, v in dict(*args, **kwargs).items():
            self[k] = v

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

        Returns:
            (Any):
                The original dictionary structure, with all nested `#!py DotDict` instances converted back to regular dictionaries.

        ???+ example "Examples"
            ```pycon {.py .python linenums="1" title="Convert DotDict to regular dict"}
            >>> dot_dict = DotDict({"a": 1, "b": {"c": 2}})
            >>> regular_dict = dot_dict.to_dict()
            >>> print(regular_dict)
            ```
            <div class="result" markdown>
            ```{.sh .shell title="Output"}
            {'a': 1, 'b': {'c': 2}}
            ```
            !!! success "Conclusion: Successfully converted DotDict back to regular dict."
            </div>
        """

        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
308
309
310
311
312
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
326
327
328
329
330
331
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
333
334
335
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
337
338
339
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
341
342
343
344
345
346
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
348
349
350
351
352
353
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

Summary

Override update to convert new values.

Parameters:

Name Type Description Default
*args

Variable length argument list.

()
**kwargs

Arbitrary keyword arguments.

{}

Returns:

Type Description
None

This function does not return a value. It updates the dictionary with new key-value pairs.

Examples

Update DotDict
1
2
3
>>> dot_dict = DotDict({"a": 1, "b": 2})
>>> dot_dict.update({"c": 3, "d": {"e": 4}})
>>> print(dot_dict)
Output
{'a': 1, 'b': 2, 'c': 3, 'd': {'e': 4}}

Conclusion: Successfully updated DotDict with new values.

Source code in src/toolbox_python/dictionaries.py
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
def update(self, *args, **kwargs) -> None:
    """
    !!! note "Summary"
        Override update to convert new values.

    Parameters:
        *args:
            Variable length argument list.
        **kwargs:
            Arbitrary keyword arguments.

    Returns:
        (None):
            This function does not return a value. It updates the dictionary with new key-value pairs.

    ???+ example "Examples"
        ```pycon {.py .python linenums="1" title="Update DotDict"}
        >>> dot_dict = DotDict({"a": 1, "b": 2})
        >>> dot_dict.update({"c": 3, "d": {"e": 4}})
        >>> print(dot_dict)
        ```
        <div class="result" markdown>
        ```{.sh .shell title="Output"}
        {'a': 1, 'b': 2, 'c': 3, 'd': {'e': 4}}
        ```
        !!! success "Conclusion: Successfully updated DotDict with new values."
        </div>
    """
    for k, v in dict(*args, **kwargs).items():
        self[k] = v
to_dict 🔗
to_dict() -> Any

Summary

Convert back to regular dictionary.

Returns:

Type Description
Any

The original dictionary structure, with all nested DotDict instances converted back to regular dictionaries.

Examples

Convert DotDict to regular dict
1
2
3
>>> dot_dict = DotDict({"a": 1, "b": {"c": 2}})
>>> regular_dict = dot_dict.to_dict()
>>> print(regular_dict)
Output
{'a': 1, 'b': {'c': 2}}

Conclusion: Successfully converted DotDict back to regular dict.

Source code in src/toolbox_python/dictionaries.py
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
def to_dict(self) -> Any:
    """
    !!! note "Summary"
        Convert back to regular dictionary.

    Returns:
        (Any):
            The original dictionary structure, with all nested `#!py DotDict` instances converted back to regular dictionaries.

    ???+ example "Examples"
        ```pycon {.py .python linenums="1" title="Convert DotDict to regular dict"}
        >>> dot_dict = DotDict({"a": 1, "b": {"c": 2}})
        >>> regular_dict = dot_dict.to_dict()
        >>> print(regular_dict)
        ```
        <div class="result" markdown>
        ```{.sh .shell title="Output"}
        {'a': 1, 'b': {'c': 2}}
        ```
        !!! success "Conclusion: Successfully converted DotDict back to regular dict."
        </div>
    """

    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)