File size: 406 Bytes
959dfe5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
"""Utilities."""
import json
import os
from typing import List, Dict, Any


def ensure_dir(path: str):
    os.makedirs(path, exist_ok=True)


def save_jsonl(path: str, records: List[Dict[str, Any]]):
    with open(path, "w") as f:
        for r in records:
            f.write(json.dumps(r) + "\n")


def save_json(path: str, data: Any):
    with open(path, "w") as f:
        json.dump(data, f, indent=2)