-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmerge_json_with_same_structure.py
36 lines (30 loc) · 1.51 KB
/
merge_json_with_same_structure.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import json
import os
def merge_json_files(file_list, output_file):
merged_data = []
total_elements = 0
initial_total_elements = 0
for file_name in file_list:
try:
with open(file_name, 'r', encoding='utf-8') as file:
data = json.load(file)
num_elements = len(data)
initial_total_elements += num_elements
total_elements += num_elements
merged_data.extend(data)
print(f"Файл {file_name} содержит {num_elements} элементов.")
except json.JSONDecodeError as e:
print(f"Ошибка декодирования JSON в файле {file_name}: {e}")
except Exception as e:
print(f"Произошла ошибка при обработке файла {file_name}: {e}")
with open(output_file, 'w', encoding='utf-8') as output:
json.dump(merged_data, output, ensure_ascii=False, indent=4)
print(f"Исходные файлы содержат всего {initial_total_elements} элементов.")
print(f"Объединённый файл содержит {len(merged_data)} элементов.")
if __name__ == "__main__":
# Список JSON файлов для объединения
json_files = ["file1.json", "file2.json"]
# Имя выходного файла
output_json = "merged2.json"
merge_json_files(json_files, output_json)
print(f"Файлы успешно объединены в {output_json}")