obspy.core.util.attribdict.AttribDict

class AttribDict(*args, **kwargs)[source]

Bases: collections.abc.MutableMapping

A class which behaves like a dictionary.

Parameters:data (dict, optional) – Dictionary with initial keywords.

Basic Usage

You may use the following syntax to change or access data in this class.

>>> stats = AttribDict()
>>> stats.network = 'BW'
>>> stats['station'] = 'ROTZ'
>>> print(stats.get('network'))
BW
>>> print(stats['network'])
BW
>>> print(stats.station)
ROTZ
>>> x = stats.keys()
>>> x = sorted(x)
>>> print(x[0], x[1])
network station

Attributes

__abstractmethods__
__dict__
__doc__
__hash__
__module__
__reversed__
__slots__
__weakref__ list of weak references to the object (if defined)
defaults
do_not_warn_on
readonly
warn_on_non_default_key

Public Methods

clear
copy
get
items
keys
pop If key is not found, d is returned if given, otherwise KeyError is raised.
popitem as a 2-tuple; but raise KeyError if D is empty.
setdefault
update If E present and has a .keys() method, does: for k in E: D[k] = E[k] If E present and lacks .keys() method, does: for (k, v) in E: D[k] = v In either case, this is followed by: for k, v in F.items(): D[k] = v
values

Private Methods

Warning

Private methods are mainly for internal/developer use and their API might change without notice.

_pretty_str Return better readable string representation of AttribDict object.

Special Methods

__contains__
__deepcopy__
__delattr__
__delitem__
__dir__ Default dir() implementation.
__eq__ Return self==value.
__format__ Default object formatter.
__getattr__ Py3k hasattr() expects an AttributeError no KeyError to be raised if the attribute is not found.
__getitem__
__getstate__
__init__ An AttribDict can be initialized in two ways.
__init_subclass__ This method is called when a class is subclassed.
__iter__
__len__
__new__ Create and return a new object.
__reduce__ Helper for pickle.
__reduce_ex__ Helper for pickle.
__repr__ Return repr(self).
__setattr__
__setitem__
__setstate__
__sizeof__ Size of object in memory, in bytes.
__subclasshook__ Abstract classes can override this to customize issubclass().