Add python implementation

This commit is contained in:
Stefan Ritter 2023-04-01 12:43:54 +02:00
parent 05d04912ed
commit a1f727d1a1
1 changed files with 9 additions and 0 deletions

9
test.py Normal file
View File

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