2025-01-26 18:52:05 +00:00
|
|
|
import json
|
|
|
|
|
|
|
|
input_file_path = "qanon.json" # path
|
|
|
|
with open(input_file_path, 'r', encoding='utf-8') as file:
|
|
|
|
data = json.load(file)
|
|
|
|
|
|
|
|
id_content = {}
|
|
|
|
parent_map = {}
|
|
|
|
for item in data:
|
|
|
|
if isinstance(item, dict):
|
|
|
|
item_id = item.get("id")
|
|
|
|
id_content[item_id] = item.get("content")
|
|
|
|
parent_map[item_id] = item.get("parent_id")
|
|
|
|
|
|
|
|
for item in data:
|
|
|
|
if isinstance(item, dict):
|
|
|
|
name = item.get("qanon_title")
|
|
|
|
current_id = item.get("parent_id")
|
|
|
|
parents_content = []
|
|
|
|
|
2025-01-26 19:51:53 +00:00
|
|
|
item.update({
|
|
|
|
"context": {
|
|
|
|
"qanon_name": name,
|
|
|
|
"parents_content": parents_content,
|
|
|
|
"meaning_change": [{
|
|
|
|
"term": "str1",
|
|
|
|
"meaning": "def",
|
|
|
|
"Confidence_level": "0"
|
|
|
|
}],
|
|
|
|
"referential term": [{
|
|
|
|
"term": "this",
|
|
|
|
"referent": "that"
|
|
|
|
}]
|
|
|
|
}
|
|
|
|
})
|
2025-01-26 18:52:05 +00:00
|
|
|
|
2025-01-26 19:51:53 +00:00
|
|
|
if isinstance(item, dict) and "parents_content" in item.get("context" , []):
|
|
|
|
while current_id != "0":
|
|
|
|
parent_content = id_content.get(current_id)
|
|
|
|
parents_content.append(parent_content)
|
|
|
|
current_id = parent_map.get(current_id, "0")
|
2025-01-26 18:52:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
print("done")
|
|
|
|
|
|
|
|
output_file_path = 'output_data.json'
|
|
|
|
with open(output_file_path, 'w', encoding='utf-8') as file:
|
|
|
|
json.dump(data, file, indent=4, ensure_ascii=False)
|
2025-01-26 18:31:05 +00:00
|
|
|
print(f"Modified data has been saved to {output_file_path}")
|