ts_shape.loader.timeseries.timescale_loader
¤
Classes:
TimescaleDBDataAccess
¤
TimescaleDBDataAccess(start_timestamp: str, end_timestamp: str, uuids: List[str], db_config: Dict[str, str])
Methods:
-
fetch_data_as_dataframe
–Retrieves timeseries data from TimescaleDB and returns it as a single DataFrame.
Source code in src/ts_shape/loader/timeseries/timescale_loader.py
7 8 9 10 11 12 13 14 |
|
fetch_data_as_dataframe
¤
fetch_data_as_dataframe() -> DataFrame
Retrieves timeseries data from TimescaleDB and returns it as a single DataFrame. :return: A combined DataFrame with data for all specified UUIDs within the time range.
Source code in src/ts_shape/loader/timeseries/timescale_loader.py
49 50 51 52 53 54 55 |
|