gpt4 book ai didi

python - 迭代解析命名空间

转载 作者:太空宇宙 更新时间:2023-11-03 17:25:07 24 4
gpt4 key购买 nike

我有以下内容:

node = etree.fromstring(res.content)
items = node.xpath('v:Items/v:Item', namespaces={'v':'http://schemas.microsoft.com/eds/2012/05/01/eds'})

如何使用 iterparse 执行以下操作?例如:

contentBuffer=io.BytesIO(res.content)
items = ET.iterparse(contentBuffer,tag='v:Items/v:Item') # <== namespace??

最佳答案

使用 Clark notation 指定完全限定的标记名称:

items = ET.iterparse(contentBuffer, 
tag='{http://schemas.microsoft.com/eds/2012/05/01/eds}Item')

也可以使用命名空间通配符:

items = ET.iterparse(contentBuffer, tag='{*}Item')

(请注意,您不能使用 tag='{*}Items/{*}Item'tag 参数应该是标签名称,而不是表达式。 )

关于python - 迭代解析命名空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32671766/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com