first pass at base layer

This commit is contained in:
Jake Pullen
2024-07-29 15:12:26 +01:00
parent 23458af133
commit 6bc992e011
4 changed files with 77 additions and 75 deletions
+2
View File
@@ -2,6 +2,7 @@ import os
import dotenv
import logging
from ingest import Ingest
from raw_to_base import RawToBase
dotenv.load_dotenv()
@@ -20,3 +21,4 @@ ingest_info['BUDGET_ID'] = BUDGET_ID
Ingest(ingest_info)
RawToBase(entities, 'data/raw', 'data/base')