obspy.clients.nrl.client.NRLDict¶
-
class
NRLDict
(nrl)[source]¶ Bases:
dict
Attributes
__dict__
__doc__
__hash__
__module__
__weakref__
list of weak references to the object (if defined)
Public Methods
Create a new dictionary with keys from iterable and values set to value.
Return the value for key if key is in the dictionary, else default.
If key is not found, d is returned if given, otherwise KeyError is raised
2-tuple; but raise KeyError if D is empty.
Insert key with a value of default if key is not in the dictionary.
If E is present and has a .keys() method, then does: for k in E: D[k] = E[k] If E is present and lacks a .keys() method, then does: for k, v in E: D[k] = v In either case, this is followed by: for k in F: D[k] = F[k]
Private Methods
Warning
Private methods are mainly for internal/developer use and their API might change without notice.
Special Methods
True if the dictionary has the specified key, else False.
Default dir() implementation.
Default object formatter.
x.__getitem__(y) <==> x[y]
Initialize self.
This method is called when a class is subclassed.
Create and return a new object.
Helper for pickle.
Helper for pickle.
Return str(self).
Abstract classes can override this to customize issubclass().