feat(SIMPL-24642): consolidate all code locations into template-code-location
- Rename src/template-code-location to src/template_code_location - Copy data-processing jobs/ops/config_models - Copy dataframe-level-anonymisation jobs/ops/utils/config_models - Copy field-level-pseudo-anonymisation jobs/ops/techniques/config_models - Update all imports to template_code_location namespace - Merge all jobs into unified repository.py with sensors/resources/loggers - Update pyproject.toml with all dependencies - Update Dockerfile for consolidated image
This commit is contained in:
0
src/template_code_location/jobs/__init__.py
Normal file
0
src/template_code_location/jobs/__init__.py
Normal file
9
src/template_code_location/jobs/jobs.py
Normal file
9
src/template_code_location/jobs/jobs.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from dagster import job
|
||||
from ..ops.ops import fetch_data, process_data
|
||||
|
||||
|
||||
@job
|
||||
def data_processing_job():
|
||||
"""A simple job that fetches and processes data."""
|
||||
raw = fetch_data()
|
||||
process_data(raw)
|
||||
Reference in New Issue
Block a user