(file_path)
| 5 | from bs4 import BeautifulSoup |
| 6 | |
| 7 | def load_json(file_path): |
| 8 | with open(file_path, mode='r', encoding='utf8') as fp: |
| 9 | json_dict = json5.load(fp) |
| 10 | return json_dict |
| 11 | |
| 12 | def save_json(json_dict, file_path, indent=4): |
| 13 | with open(file_path, mode='w', encoding='utf8') as fp: |