CoolFace
Apppublic

GodsDevProject/FOIA_Doc_Search

sourceHugging Facemitupdated 9mo agoView on Hugging Face
1likes
export_utils.py7 linesDownload Raw Back to root
1import json2 3def export_json(data):4    path = "/tmp/results.json"5    with open(path, "w") as f:6        json.dump(data, f, indent=2)7    return path