对于xml:id,Python属性解析返回None

问题描述 投票:1回答:1

我试图从tei文件中提取一些信息,使用以下代码:

tree = ET.parse(path)
root = tree.getroot()
body = root.find("{http://www.tei-c.org/ns/1.0}text/{http://www.tei-c.org/ns/1.0}body")  
for s in body.iter("{http://www.tei-c.org/ns/1.0}s"):
    for w in s.iter("{http://www.tei-c.org/ns/1.0}w"):
        wordpart = w.find("{http://www.tei-c.org/ns/1.0}seg")
        word = ''.join(wordpart.itertext())
        type = w.get('type')
        xml = w.get('xml:id') 
        print(type)             
        print(xml)

type的输出是正确的,它打印例如“名词”。但对于xml:id我只能得到None。这是我需要解析的xml文件的摘录:

<w type="noun" xml:id="w.4940"><seg type="orth">sloterheighe</seg>...
python python-3.x xml-parsing attributes elementtree
1个回答
1
投票

要获取xml:id属性的值,您需要像这样指定名称空间URI(有关详细信息,请参阅this SO post):

xml = w.attrib['{http://www.w3.org/XML/1998/namespace}id']

要么

xml = w.get('{http://www.w3.org/XML/1998/namespace}id')

另请注意,type是Python中的内置方法,因此请避免将其用作变量名。

© www.soinside.com 2019 - 2024. All rights reserved.