From a1f727d1a15f504e7de9c2eee02745738b4c0304 Mon Sep 17 00:00:00 2001 From: Stefan Ritter Date: Sat, 1 Apr 2023 12:43:54 +0200 Subject: [PATCH] Add python implementation --- test.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 test.py diff --git a/test.py b/test.py new file mode 100644 index 0000000..26c5155 --- /dev/null +++ b/test.py @@ -0,0 +1,9 @@ +import json + +file = open('data.json', 'r') +json_data = json.load(file) + +for section in json_data: + print(section) + for link in json_data[section]: + print(link, json_data[section][link])