obspy.clients.nrl.client.NRLDict

class NRLDict(nrl)[source]

Bases: future.types.newdict.newdict

Attributes

__dict__
__doc__
__hash__
__module__ str(object=’‘) -> string
__weakref__ list of weak references to the object (if defined)

Public Methods

clear
copy
fromkeys v defaults to None.
get
has_key
items On Python 2.7+:
iteritems
iterkeys
itervalues
keys On Python 2.7+:
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 present and has a .keys() method, does: for k in E: D[k] = E[k]
values On Python 2.7+:
viewitems
viewkeys
viewvalues

Private Methods

Warning

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

_repr_pretty_

Special Methods

__contains__
__format__ default object formatter
__getitem__
__init__
__native__ Hook for the future.utils.native() function
__new__ dict() -> new empty dictionary
__reduce__ helper for pickle
__reduce_ex__ helper for pickle
__sizeof__
__str__
__subclasshook__ Abstract classes can override this to customize issubclass().