preheat_open.loadable_types.LoadableDataType
- class preheat_open.loadable_types.LoadableDataType
Bases:
ABCRepresents data that can be loaded for a specific date range.
- Variables:
loaded_date_range (DateRange) – The date range for the loaded data.
- __init__()
Methods
__init__()add_data(data)Adds data to the loaded data.
get_data(date_range)Retrieves data for the specified date range.
- abstract add_data(data)
Adds data to the loaded data.
- Parameters:
data (Any) – The data to add.
- Return type:
None