返回 DeepSeek-Reasonix
1 """Writes normalized rows. Sits above the normalizer."""
2
3 from pipeline import normalizer
4
5
6 def write_normalized(src, dst):
7 with open(dst, "w") as f:
8 for row in normalizer.normalized(src):
9 f.write(row + "\n")
10
10 lines PYTHON