Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 214 Bytes

File metadata and controls

10 lines (7 loc) · 214 Bytes

Create

with jsonlines.open(base / "results.jsonl", mode="a") as writer: writer.write(res)

Read import jsonlines

with jsonlines.open(str(fi), mode="r") as reader: grid = pd.DataFrame([d for d in reader])