#!/usr/bin/env python # -*- encoding: utf-8 -*- ''' @File : utils.py @Time : 2022/01/20 18:10:51 @Author : Lu Xin @Contact : luxin@csdn.net ''' # here put the import lib import json def read_json(file_name): with open(file_name, "r", encoding="utf-8") as f: data = json.load(f) return data def write_json(file_name, data): with open(file_name, "w", encoding="utf-8") as f: json.dump(data, f, ensure_ascii=False, indent=2)