MCPcopy Create free account
hub / github.com/OpenRaiser/PaperFlow / write_jsonl

Function write_jsonl

experiments/baselines/knowledge_entity/runner.py:153–157  ·  view source on GitHub ↗
(path: Path, rows: Iterable[Dict[str, Any]])

Source from the content-addressed store, hash-verified

151
152
153def write_jsonl(path: Path, rows: Iterable[Dict[str, Any]]) -> None:
154 path.parent.mkdir(parents=True, exist_ok=True)
155 with path.open("w", encoding="utf-8") as handle:
156 for row in rows:
157 handle.write(json.dumps(row, ensure_ascii=False) + "\n")
158
159
160def load_json(path: Path) -> Dict[str, Any]:

Callers 1

run_baselineFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected