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 |
required |
Raises:
Type | Description |
---|---|
TypeError
|
If any of the inputs parsed to the parameters of this function are not the correct type. Uses the |
KeyError
|
When there are duplicate |
Returns:
Name | Type | Description |
---|---|---|
output_dict |
dict_str_int
|
The updated |
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 |
|
Example 1: Reverse one-for-one | |
---|---|
1 |
|
{
"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 |
|
{
"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 |
|
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 |
|
{
"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 |
|