Skip to content
Snippets Groups Projects
Commit 3ba2107e authored by Donatus Herre's avatar Donatus Herre
Browse files

fridericiana updated

parent 51aa7990
Branches
No related tags found
No related merge requests found
......@@ -12,9 +12,9 @@ from librair.parsers import Beacon
from librair.schemas import json
BEACON = "https://dikon.gitlab.io/cph-beacon/data/gnd.txt"
HREF = "data/index1694-href.txt"
NAMES = "data/index1694-names.txt"
MAPPING = "data/index1694-map.json"
HREF = "edits/index1694-href.txt"
NAMES = "edits/index1694-names.txt"
OUT = "data/index1694.json"
href = []
with open(HREF, 'r', encoding="utf-8") as f:
......@@ -26,13 +26,11 @@ with open(NAMES, 'r', encoding="utf-8") as f:
cph = Beacon(url=BEACON)
mapping = {}
gnds = []
for i, target in enumerate(cph.targets):
if target[1] in href:
pos = href.index(target[1])
mapping[cph.links[i]] = {"name": names[pos],
"target": target[1],
"wikidata": target[0]}
gnds.append(cph.links[i])
json.writer(mapping, MAPPING)
json.writer(gnds, OUT)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment