1
0
Fork 0
mirror of https://github.com/qurator-spk/modstool.git synced 2025-06-08 03:10:15 +02:00

ALTO: Extract namespace == ALTO version

This commit is contained in:
Gerber, Mike 2022-06-08 18:25:33 +02:00
parent 8285bdb423
commit 3d2e53f739

View file

@ -155,6 +155,7 @@ def process(alto_files: List[str], output_file: str, output_csv: str, output_xls
d = flatten(alto_to_dict(alto, raise_errors=True)) d = flatten(alto_to_dict(alto, raise_errors=True))
# "meta" # "meta"
d['alto_file'] = alto_file d['alto_file'] = alto_file
d['alto_xmlns'] = ET.QName(alto).namespace
alto_info.append(d) alto_info.append(d)