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
 62
 63
 64
 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
@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