14 lines
449 B
Python
14 lines
449 B
Python
"""
|
|
This module enriches data, they take time to run, and are usually expensive (API calls...),
|
|
they should manage their own state, and only be run if the data's version is different than
|
|
their save.
|
|
"""
|
|
from .run import Run
|
|
import pandas as pd
|
|
|
|
def enrich_with_task_estimateability(run: Run) -> pd.DataFrame:
|
|
run.metadata.
|
|
raise NotImplementedError
|
|
|
|
def enrich_with_task_estimates(run: Run) -> pd.DataFrame:
|
|
raise NotImplementedError
|