obspy.clients.nrl.client.NRLDict¶
- class NRLDict(nrl)[source]¶
Bases: builtins.dict
Attributes
__dict__ __doc__ __hash__ __module__ str(object=’‘) -> str __weakref__ list of weak references to the object (if defined) Public Methods
clear copy fromkeys Returns a new dict with keys from iterable and values equal to value. get items keys pop If key is not found, d is returned if given, otherwise KeyError is raised popitem 2-tuple; but raise KeyError if D is empty. setdefault update If E is present and has a .keys() method, then does: for k in E: D[k] = E[k] values Private Methods
Warning
Private methods are mainly for internal/developer use and their API might change without notice.
_repr_pretty_ Special Methods
__contains__ True if D has a key k, else False. __dir__ default dir() implementation __format__ default object formatter __getitem__ __init__ __new__ Create and return a new object. __reduce__ helper for pickle __reduce_ex__ helper for pickle __sizeof__ __str__ __subclasshook__ Abstract classes can override this to customize issubclass().