Tôi có XML sau đây mà tôi muốn phân tích cú pháp bằng Python ElementTree
:
<rdf:RDF xml:base="http://dbpedia.org/ontology/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns="http://dbpedia.org/ontology/">
<owl:Class rdf:about="http://dbpedia.org/ontology/BasketballLeague">
<rdfs:label xml:lang="en">basketball league</rdfs:label>
<rdfs:comment xml:lang="en">
a group of sports teams that compete against each other
in Basketball
</rdfs:comment>
</owl:Class>
</rdf:RDF>
Tôi muốn tìm tất cả owl:Class
các thẻ và sau đó trích xuất giá trị của tất cả các rdfs:label
trường hợp bên trong chúng. Tôi đang sử dụng mã sau đây:
tree = ET.parse("filename")
root = tree.getroot()
root.findall('owl:Class')
Do không gian tên, tôi nhận được lỗi sau.
SyntaxError: prefix 'owl' not found in prefix map
Tôi đã thử đọc tài liệu tại http://effbot.org/zone/element-namespaces.htmlm nhưng tôi vẫn không thể làm việc này vì XML ở trên có nhiều không gian tên lồng nhau.
Vui lòng cho tôi biết cách thay đổi mã để tìm tất cả các owl:Class
thẻ.