MCPcopy Create free account
hub / github.com/FastMAS/KVCOMM / to_jsonl

Function to_jsonl

KVCOMM/tools/coding/executor_utils.py:9–12  ·  view source on GitHub ↗
(dict_data, file_path)

Source from the content-addressed store, hash-verified

7
8
9def to_jsonl(dict_data, file_path):
10 with open(file_path, 'a') as file:
11 json_line = json.dumps(dict_data)
12 file.write(json_line + os.linesep)
13
14
15class PropagatingThread(Thread):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected