nadict¶
A nested dict with both attribute and item access.
NA stands for Nested and Attribute.
NADict
¶
A nested dict with both attribute and item access.
It is intended to be used with keys that are valid Python identifiers. However, except for string keys containing a dot, there are actually no hard limitations. If a key equals an existing attribute name, attribute access is of cause not possible.
Nested items can be accessed via a dot notation, as shown in the example below.
Examples¶
n = NADict(a=1, b=NADict(c=3, d=4)) n['a'] 1 n.a 1 n['b.c'] 3 n.b.c 3 n['b.e'] = 5 n.b.e 5
Attributes¶
dict
Dictionary holding the actial items.
Source code in ontopy/nadict.py
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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 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 |
|
clear()
¶
Clear all keys.
Source code in ontopy/nadict.py
135 136 137 |
|
copy()
¶
Returns a deep copy of self.
Source code in ontopy/nadict.py
139 140 141 |
|
fromkeys(iterable, value=None)
staticmethod
¶
Returns a new NADict with keys from iterable
and values
set to value
.
Source code in ontopy/nadict.py
143 144 145 146 147 148 149 150 |
|
get(key, default=None)
¶
Returns the value for key
if key
is in self, else return
default
.
Source code in ontopy/nadict.py
152 153 154 155 156 157 158 |
|
items(prefix='')
¶
Returns an iterator over all items as (key, value) pairs.
Source code in ontopy/nadict.py
160 161 162 163 164 165 166 167 |
|
keys(prefix='')
¶
Returns an iterator over all keys.
Source code in ontopy/nadict.py
169 170 171 172 173 174 175 176 |
|
pop(key, default=None)
¶
Removed key
and returns corresponding value. If key
is not
found, default
is returned if given, otherwise KeyError is
raised.
Source code in ontopy/nadict.py
178 179 180 181 182 183 184 185 |
|
popitem(prefix='')
¶
Removes and returns some (key, value). Raises KeyError if empty.
Source code in ontopy/nadict.py
187 188 189 190 191 192 193 194 195 196 197 |
|
setdefault(key, value=None)
¶
Inserts key
and value
pair if key is not found.
Returns the new value for key
.
Source code in ontopy/nadict.py
199 200 201 202 203 204 205 206 |
|
update(*args, **kwargs)
¶
Updates self with dict/iterable from args
and keyword arguments
from kw
.
Source code in ontopy/nadict.py
208 209 210 211 212 213 214 215 216 217 218 219 |
|
values()
¶
Returns a set-like providing a view of all style values.
Source code in ontopy/nadict.py
221 222 223 |
|