sprint-econtai/pipeline/enrichments.py
Félix Dorn 2da206d368 init
2025-07-03 16:26:30 +02:00

13 lines
431 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:
raise NotImplementedError
def enrich_with_task_estimates(run: Run) -> pd.DataFrame:
raise NotImplementedError