From 4ee83a0e7488779de5afb9209dd41ca5727fee45 Mon Sep 17 00:00:00 2001 From: Malte Schokolowski <baw8441@uni-hamburg.de> Date: Tue, 18 Jan 2022 21:22:08 +0100 Subject: [PATCH] verarbeitung: added abstracts to json file --- verarbeitung/construct_new_graph/export_to_json.py | 1 + 1 file changed, 1 insertion(+) diff --git a/verarbeitung/construct_new_graph/export_to_json.py b/verarbeitung/construct_new_graph/export_to_json.py index fd21dc1..0aaf996 100644 --- a/verarbeitung/construct_new_graph/export_to_json.py +++ b/verarbeitung/construct_new_graph/export_to_json.py @@ -31,6 +31,7 @@ def format_nodes(nodes): new_dict["author"] = node.contributors new_dict["year"] = node.publication_date new_dict["journal"] = node.journal + new_dict["abstract"] = node.abstract if (node.group == 0): new_dict["group"] = "Input" elif (node.group > 0): -- GitLab