obspy.clients.base.StationClient
- class StationClient(debug=False)[source]
Bases:
BaseClient
Base class for Clients supporting Inventory objects.
Public Methods
Returns an Inventory. |
Special Methods
- StationClient.__delattr__(name, /)
Implement delattr(self, name).
- StationClient.__dir__()
Default dir() implementation.
- StationClient.__eq__(value, /)
Return self==value.
- StationClient.__format__(format_spec, /)
Default object formatter.
- StationClient.__ge__(value, /)
Return self>=value.
- StationClient.__getattribute__(name, /)
Return getattr(self, name).
- StationClient.__gt__(value, /)
Return self>value.
- StationClient.__hash__()
Return hash(self).
- StationClient.__init__(debug=False)
- StationClient.__init_subclass__()
This method is called when a class is subclassed.
The default implementation does nothing. It may be overridden to extend subclasses.
- StationClient.__le__(value, /)
Return self<=value.
- StationClient.__lt__(value, /)
Return self<value.
- StationClient.__ne__(value, /)
Return self!=value.
- StationClient.__new__(**kwargs)
- StationClient.__reduce__()
Helper for pickle.
- StationClient.__reduce_ex__(protocol, /)
Helper for pickle.
- StationClient.__repr__()
Return repr(self).
- StationClient.__setattr__(name, value, /)
Implement setattr(self, name, value).
- StationClient.__sizeof__()
Size of object in memory, in bytes.
- StationClient.__str__()
Return str(self).
- StationClient.__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).