python 使用xpath解析含有命名空间(xmlns)的xml
Posted mswei
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 使用xpath解析含有命名空间(xmlns)的xml相关的知识,希望对你有一定的参考价值。
解决办法:
from lxml import etree
xml = etree.parse("./cee.xml")
root = xml.getroot()
print(root.xpath(".//i:Reviews", namespaces="i":"http://www.bazaarvoice.com/xs/PRR/StandardClientFeed/14.7"))
更多语言参考
https://stackoverflow.com/questions/40796231/how-does-xpath-deal-with-xml-namespaces
以上是关于python 使用xpath解析含有命名空间(xmlns)的xml的主要内容,如果未能解决你的问题,请参考以下文章
python对于操作xml 忽略命名空间 处理解析修改xml
python对于操作xml 忽略命名空间 处理解析修改xml
python对于操作xml 忽略命名空间 处理解析修改xml