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 |
---|---|
TypeCheckError
|
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
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 |
|
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 |
|
Example 1: Accessing values with dot notation | |
---|---|
1 |
|
1
Conclusion: Successfully accessed value using dot notation.
Example 2: Accessing nested values with dot notation | |
---|---|
1 |
|
2
Conclusion: Successfully accessed nested value using dot notation.
Example 3: Setting values with dot notation | |
---|---|
1 2 |
|
3
Conclusion: Successfully set value using dot notation.
Example 4: Updating nested values with dot notation | |
---|---|
1 2 |
|
4
Conclusion: Successfully updated nested value using dot notation.
Example 5: Converting back to regular dict | |
---|---|
1 2 |
|
{'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 |
|
__init__
🔗
__init__(*args, **kwargs) -> None
Source code in src/toolbox_python/dictionaries.py
308 309 310 311 312 |
|
__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 |
|
__setattr__
🔗
__setattr__(key, value) -> None
Allow setting dictionary keys via attributes.
Source code in src/toolbox_python/dictionaries.py
333 334 335 |
|
__setitem__
🔗
__setitem__(key, value) -> None
Intercept item setting to convert dictionaries.
Source code in src/toolbox_python/dictionaries.py
337 338 339 |
|
__delitem__
🔗
__delitem__(key) -> None
Intercept item deletion to remove keys.
Source code in src/toolbox_python/dictionaries.py
341 342 343 344 345 346 |
|
__delattr__
🔗
__delattr__(key) -> None
Allow deleting dictionary keys via attributes.
Source code in src/toolbox_python/dictionaries.py
348 349 350 351 352 353 |
|
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 |
|
{'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 |
|
to_dict
🔗
to_dict() -> Any
Summary
Convert back to regular dictionary.
Returns:
Type | Description |
---|---|
Any
|
The original dictionary structure, with all nested |
Examples
Convert DotDict to regular dict | |
---|---|
1 2 3 |
|
{'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 |
|