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])