This commit is contained in:
2026-02-25 13:14:56 +09:30
parent 3eb0d1f1e4
commit 315bafd6dc
32 changed files with 350 additions and 0 deletions

19
main.py Normal file
View File

@@ -0,0 +1,19 @@
# 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 ===")