Update edge keywords extraction in graph visualization

构建neo4j时候 关键字的取值默认为d7
应该为修改后的d9
This commit is contained in:
Sleeep
2025-11-13 15:52:14 +08:00
committed by yangdx
parent e5addf4d94
commit 8abc2ac1cb

View File

@@ -53,8 +53,8 @@ def xml_to_json(xml_file):
"description": edge.find("./data[@key='d6']", namespace).text
if edge.find("./data[@key='d6']", namespace) is not None
else "",
"keywords": edge.find("./data[@key='d7']", namespace).text
if edge.find("./data[@key='d7']", namespace) is not None
"keywords": edge.find("./data[@key='d9']", namespace).text
if edge.find("./data[@key='d9']", namespace) is not None
else "",
"source_id": edge.find("./data[@key='d8']", namespace).text
if edge.find("./data[@key='d8']", namespace) is not None