init
This commit is contained in:
commit
2da206d368
17 changed files with 955 additions and 0 deletions
13
pipeline/enrichments.py
Normal file
13
pipeline/enrichments.py
Normal file
|
@ -0,0 +1,13 @@
|
|||
"""
|
||||
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
|
Loading…
Add table
Add a link
Reference in a new issue