py-vterm-interaction.el/scripts/utility.py

5 lines
112 B
Python

def dump_json(tempfile, value):
import json
with open(tempfile, "w") as f:
json.dump(value, f)