【发布时间】:2019-08-01 23:59:17
【问题描述】:
我正在尝试解析 plist 以获取“此提交中修复了哪些更改错误?”字段的响应字符串 如下,但不知何故它总是空的?有人可以就错误的原因提供指导吗?
plist sn-p:
<dict>
<key>description</key>
<string>What Change bugs are fixed in this submission? </string>
<key>id</key>
<string>7</string>
<key>multiline</key>
<string>1</string>
<key>releases</key>
<array>
<string>Yukon</string>
</array>
<key>response</key>
<string><change://problem/45317899> hostapd to include IOKit framework
<change://problem/35143400> Yukon: hostapd-33 contains references to deprecated TARGET_OS_EMBEDDED macro</string>
</dict>
代码:-
from lxml import etree as et
plistfile = '/Users/username/autosubmissionlogs/Yukon/02192019_200740/hostapd-34/hostapd-34.plist'
with open(plistfile) as raw:
# Parse the XML input file into a tree.
tree = et.parse(raw)
stringUsedAsKey = tree.xpath("/plist/dict/dict/string"
+ "[./text()=\"What Change bugs are fixed in this submission?\"]")[0]
interestingDict1 = stringUsedAsKey.getparent()
string = interestingDict1.xpath("key[text()=\"response\"]/following-sibling::string")[0]
print('Changes \n:'%string)
预期输出:-
<change://problem/45317899> hostapd to include IOKit framework
<change://problem/35143400> Yukon: hostapd-33 contains references to deprecated TARGET_OS_EMBEDDED macro
【问题讨论】:
-
你想要的输出到底是什么?
-
@JackFleeting - 我用
EXPECTED OUTPUT更新了我的问题?
标签: python xml lxml plist elementtree