File size: 146 Bytes
13b71d5
 
 
 
 
1
2
3
4
5
6
import json

def generate_report(results, path="output/report.json"):
    with open(path, "w") as f:
        json.dump(results, f, indent=4)