Add kernel cleaning func

This commit is contained in:
Marty Oehme 2025-09-29 18:31:43 +02:00
parent 9513e6544e
commit 4d5aa73de7
Signed by: Marty
GPG key ID: 4E535BC19C61886E
2 changed files with 83 additions and 0 deletions

View file

@ -36,6 +36,12 @@ def _():
clean.json_to_daily_pkg(
Path(DATA_RAW_DIR) / "daily", Path(DATA_CLEAN_DIR) / "daily", force=False
)
clean.json_to_unique_csv(
Path(DATA_RAW_DIR) / "daily", Path(DATA_CLEAN_DIR), force=False
)
clean.json_to_daily_kernel_csv(
Path(DATA_RAW_DIR) / "daily", Path(DATA_CLEAN_DIR) / "kernels", force=False
)
@app.cell