obspy.db.db.WaveformPath
Attributes
Special Methods
- WaveformPath.__delattr__(name, /)
Implement delattr(self, name).
- WaveformPath.__dir__()
Default dir() implementation.
- WaveformPath.__eq__(value, /)
Return self==value.
- WaveformPath.__format__(format_spec, /)
Default object formatter.
- WaveformPath.__ge__(value, /)
Return self>=value.
- WaveformPath.__getattribute__(name, /)
Return getattr(self, name).
- WaveformPath.__gt__(value, /)
Return self>value.
- WaveformPath.__hash__()
Return hash(self).
- WaveformPath.__init__(data={})
- WaveformPath.__init_subclass__()
This method is called when a class is subclassed.
The default implementation does nothing. It may be overridden to extend subclasses.
- WaveformPath.__le__(value, /)
Return self<=value.
- WaveformPath.__lt__(value, /)
Return self<value.
- WaveformPath.__ne__(value, /)
Return self!=value.
- WaveformPath.__new__(**kwargs)
- WaveformPath.__reduce__()
Helper for pickle.
- WaveformPath.__reduce_ex__(protocol, /)
Helper for pickle.
- WaveformPath.__setattr__(name, value, /)
Implement setattr(self, name, value).
- WaveformPath.__sizeof__()
Size of object in memory, in bytes.
- WaveformPath.__str__()
Return str(self).
- WaveformPath.__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).