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

6 lines
112 B
Python
Raw Normal View History

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