def sum_sales(acc, row): return acc + row["sale_amount"]
from juq470 import pipeline, read_csv
def enrich_with_geo(row): # Assume get_geo is a fast lookup function row["country"] = get_geo(row["ip"]) return row juq470
(pipeline() .source(read_csv("visits.csv")) .pipe(enrich) .filter(lambda r: r["country"] == "US") .sink(write_jsonl("us_visits.jsonl")) ).run() juq470 provides a catch operator to isolate faulty rows without stopping the whole pipeline: juq470
def safe_int(val): return int(val)
enrich = lambda src: src.map(enrich_with_geo) Now enrich can be inserted anywhere in a pipeline: juq470