File size: 150 Bytes
644edd0
 
 
 
 
 
 
1
2
3
4
5
6
7
import json

def export_json(data):
    path = "/tmp/results.json"
    with open(path, "w") as f:
        json.dump(data, f, indent=2)
    return path