20 lines
598 B
Python
20 lines
598 B
Python
# main.py
|
|
from src.pipeline.unified_stream import load_and_merge
|
|
from src.pipeline.relative_date_trigger import apply_birthday_recursion
|
|
from src.pipeline.rf_scoring import calculate_rf_score
|
|
from src.pipeline.list_hygiene import apply_list_hygiene
|
|
from src.pipeline.ethics_flags import apply_ethics_checks
|
|
from src.pipeline.deliverability_check import run_deliverability_check
|
|
|
|
print("=== WEEK 2 PIPELINE START ===")
|
|
|
|
load_and_merge()
|
|
apply_birthday_recursion()
|
|
calculate_rf_score()
|
|
apply_list_hygiene()
|
|
|
|
apply_ethics_checks()
|
|
run_deliverability_check()
|
|
|
|
print("=== WEEK 2 PIPELINE COMPLETE ===")
|