obspy.clients.fdsn.mass_downloader.download_helpers.TimeInterval¶
- class TimeInterval(start, end, filename=None, status=None)[source]¶
Bases: builtins.object
Simple object representing a time interval of a channel.
It knows the temporal bounds of the interval, the (desired) filename, and the current status of the interval.
Parameters: - start (UTCDateTime) The start of the interval.
- end (UTCDateTime) The end of the interval.
- filename (str) The filename of the interval.
- status The status of the time interval.
- status STATUS
Attributes
__doc__ str(object=’‘) -> str __module__ str(object=’‘) -> str __slots__ list() -> new empty list end filename start status Special Methods
__dir__ default dir() implementation __format__ default object formatter __init__ __new__ Create and return a new object. __reduce__ helper for pickle __reduce_ex__ helper for pickle __repr__ __sizeof__ size of object in memory, in bytes __subclasshook__ Abstract classes can override this to customize issubclass().