Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
dikon
afh-gnd
Commits
ee0a5f56
Commit
ee0a5f56
authored
Jun 19, 2020
by
donatus.herre
Browse files
del script
parent
0aaf9878
Changes
1
Hide whitespace changes
Inline
Side-by-side
fridericiana
deleted
100755 → 0
View file @
0aaf9878
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Creator: D. Herre
GitLab: dikon/cph-gnd
Created: 2020-04-30
Last Modified: 2020-04-30
"""
from
librair.parsers
import
Beacon
from
librair.schemas
import
json
BEACON
=
"https://dikon.gitlab.io/cph-beacon/data/gnd.txt"
HREF
=
"edits/index1694-href.txt"
NAMES
=
"edits/index1694-names.txt"
OUT
=
"data/index1694.json"
href
=
[]
with
open
(
HREF
,
'r'
,
encoding
=
"utf-8"
)
as
f
:
href
=
[
l
.
strip
()
for
l
in
f
.
readlines
()]
names
=
[]
with
open
(
NAMES
,
'r'
,
encoding
=
"utf-8"
)
as
f
:
names
=
[
l
.
strip
()
for
l
in
f
.
readlines
()]
cph
=
Beacon
(
url
=
BEACON
)
gnds
=
[]
for
i
,
target
in
enumerate
(
cph
.
targets
):
if
target
[
1
]
in
href
:
pos
=
href
.
index
(
target
[
1
])
gnds
.
append
(
cph
.
links
[
i
])
json
.
writer
(
gnds
,
OUT
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment