obspy.db.db.WaveformGaps
Attributes
Special Methods
- WaveformGaps.__delattr__(name, /)
Implement delattr(self, name).
- WaveformGaps.__dir__()
Default dir() implementation.
- WaveformGaps.__eq__(value, /)
Return self==value.
- WaveformGaps.__format__(format_spec, /)
Default object formatter.
- WaveformGaps.__ge__(value, /)
Return self>=value.
- WaveformGaps.__getattribute__(name, /)
Return getattr(self, name).
- WaveformGaps.__gt__(value, /)
Return self>value.
- WaveformGaps.__hash__()
Return hash(self).
- WaveformGaps.__init__(data={})
- WaveformGaps.__init_subclass__()
This method is called when a class is subclassed.
The default implementation does nothing. It may be overridden to extend subclasses.
- WaveformGaps.__le__(value, /)
Return self<=value.
- WaveformGaps.__lt__(value, /)
Return self<value.
- WaveformGaps.__ne__(value, /)
Return self!=value.
- WaveformGaps.__new__(**kwargs)
- WaveformGaps.__reduce__()
Helper for pickle.
- WaveformGaps.__reduce_ex__(protocol, /)
Helper for pickle.
- WaveformGaps.__setattr__(name, value, /)
Implement setattr(self, name, value).
- WaveformGaps.__sizeof__()
Size of object in memory, in bytes.
- WaveformGaps.__str__()
Return str(self).
- WaveformGaps.__subclasshook__()
Abstract classes can override this to customize issubclass().
This is invoked early on by abc.ABCMeta.__subclasscheck__(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).