Dict utility functions.
Module Attributes
Key type. |
|
Value type. |
|
Hashable value type. |
|
Outer key type. |
|
Valid input types for making the |
Functions
|
Compute and store key using func if key is not in the dict. |
|
Flatten a nested dictionary. |
|
Swap keys and values. |
Classes
ActionLevel(value) |
Action level enumeration type for events. |
|
A nested dictionary that returns default-backed child dictionaries. |
TypeVar(name, *constraints[, bound, ...]) |
Type variable. |
Value type.
alias of TypeVar(‘VT’)
Compute and store key using func if key is not in the dict.
d – A dict.
key – The key to get.
func – A function to call for missing keys. Perform regular __getitem__ call if None.
The value of k in d.
Swap keys and values.
d – A dict to reverse.
duplicate_key_action – Action to take if the return dict has key collisions in the reversed dict, i.e. there are duplicate values in d. Set to ignore to allow.
A reversed copy of d.
Examples
Reversing a dict with two elements.
>>> from rics.utility.collections.dicts import reverse_dict
>>> reverse_dict({"A": 0, "B": 1})
{0: 'A', 1: 'B'}
ValueError – If there are duplicate values in d and duplicate_key_action='raise'.
Flatten a nested dictionary.
d – A dict to flatten. Keys must be strings.
join_string – Joiner for nested keys.
filter_predicate – A callable which takes a key and value, returning True if the entry should be kept.
A flattened version of d.
Examples
Flattening a shallow nested dict.
>>> from rics.utility.collections.dicts import flatten_dict
>>> flatten_dict({"foo": 0, "bar": {"foo": 1, "bar": 2}})
{'foo': 0, 'bar.foo': 1, 'bar.bar': 2}
Bases: Mapping[OKT, Dict[KT, VT]]
A nested dictionary that returns default-backed child dictionaries.
The length of an InheritedKeysDict is equal to the number of specific outer keys, and is considered True
when cast to bool if there are shared and/or specific keys present.
default – Shared (fallback) mappings for all contexts.
specific – Context-specific translations, backed by default mappings.
Examples
A short demonstration.
>>> from rics.utility.collections.dicts import InheritedKeysDict
>>> shared = {0: "shared0", 1: "shared1"}
>>> specific = {
... "ctx0": {0: "c0-v0"},
... "ctx1": {0: "c1-v0", 1: "c1-v1"},
... }
>>> d = InheritedKeysDict(default=shared, specific=specific)
>>> d
InheritedKeysDict(default={0: 'shared0', 1: 'shared1'},
specific={'ctx0': {0: 'c0-v0'}, 'ctx1': {0: 'c1-v0', 1: 'c1-v1'}})
>>> d["ctx0"] # Value of key 0 is inherited
{0: 'c0-v0', 1: 'shared1'}
>>> d["ctx1"] # Both keys are specified, so nothing is inherited
{0: 'c1-v0', 1: 'c1-v1'}
>>> "not-in-d" in d # With defaults, all keys are considered as part of d..
True
>>> d["not-in-d"] # ..but, 'not-in-d' unknowns inherit all keys
{0: 'shared0', 1: 'shared1'}
>>> len(d) # The length of d is equal to the number of specific contexts
2
Make a copy of this InheritedKeysDict.
Create instance from a mapping.
The given argument must be on the format:
{
"default": {key: value},
"specific": {
ctx0: {key: value},
ctx1: {key: value},
...
ctxN: {key: value},
}
}
No other top-level keys are accepted, but neither default nor context-specific are required.
arg – Input to make an instance from.
A new instance.
ValueError – If there are any keys other than ‘default’ and ‘context-specific’ present in mapping.