def parse_lines(text): lines = [] for m in LINE_RE.finditer(text): ln = {"TIMESTAMP": parse_date(m.group(1).strip("\n").strip()), "SPEAKER": m.group(2).strip(), "MESSAGE": m.group(3).strip()} lines.append(ln) return