Barak 0.3.2 documentation

barak.utilities.adict

«  barak.utilities.Bunch   ::   Contents   ::   barak.utilities.adict.copy  »

barak.utilities.adict

class barak.utilities.adict(*args, **kwargs)[source]

A dictionary with attribute-style access. It maps attribute access to the real dictionary.

__init__(*args, **kwargs)[source]

Methods

__init__(*args, **kwargs)
clear(() -> None.  Remove all items from D.)
copy()
fromkeys(...) v defaults to None.
get((k[,d]) -> D[k] if k in D, ...)
has_key((k) -> True if D has a key k, else False)
items(() -> list of D’s (key, value) pairs, ...)
iteritems(() -> an iterator over the (key, ...)
iterkeys(() -> an iterator over the keys of D)
itervalues(...)
keys(() -> list of D’s keys)
pop((k[,d]) -> v, ...) If key is not found, d is returned if given, otherwise KeyError is raised
popitem(() -> (k, v), ...) 2-tuple; but raise KeyError if D is empty.
setdefault((k[,d]) -> D.get(k,d), ...)
update(([E, ...) If E present and has a .keys() method, does: for k in E: D[k] = E[k]
values(() -> list of D’s values)
viewitems(...)
viewkeys(...)
viewvalues(...)

«  barak.utilities.Bunch   ::   Contents   ::   barak.utilities.adict.copy  »