在 Python 中解析 plist 文件
Posted
技术标签:
【中文标题】在 Python 中解析 plist 文件【英文标题】:Parse plist file in Python 【发布时间】:2016-06-21 21:41:39 【问题描述】:我的 Python 代码有问题。我有一个 plist 文件。
Info.plist
<plist>
<dict>
<key>Apple Car Version</key>
<string>1.0</string>
<key>Last Backup Date</key>
<date/>
<key>Product Type</key>
<string>iPad2,5</string>
<key>Product Version</key>
<string>9.3.1</string>
</dict>
</plist>
我的 Python 代码:
import os
import plistlib
def main():
fileName=os.path.expanduser('Info.plist')
if os.path.exists(fileName):
pl=plistlib.readPlist(fileName)
if 'Product Version' in pl:
print( 'The aString value is %s\n' % pl['Apple Car Version'])
else:
print( 'There is no Apple Car Version in the plist\n')
else:
print( '%s does not exist, so can\'t be read' % fileName)
if __name__ == '__main__':
main()
好的,所以我写了一些代码,但我现在面临更大的问题,我发现这不是我的代码,而是我的 plist plist 中的最后备份日期导致错误。有没有办法让我只能解析字符串,没有别的像<date/>
顺便说一下,如果您想知道这个 plist 是由 iTunes 制作的
【问题讨论】:
【参考方案1】:那个 plist 文件根本不是格式良好的 xml,所以我怀疑它会起作用。我认为你需要(至少)一个根 plist 元素和一个 dict 包装器:
<plist>
<dict>
<key>Apple Car Version</key>
<string>1.0</string>
</dict>
</plist>
那么pl
的键将是您在文件中实际定义的键,因此在这种情况下为“Apple Car Version”:
print(pl['Apple Car Version'])
【讨论】:
有关 plist 文件格式的更多详细信息,另请参阅 plist(5) developer.apple.com/legacy/library/documentation/Darwin/… 好的,我更新了答案,出现语法错误:NameError: name 'load' is not defined ,我需要导入其他模块吗? 好的,所以我写了一些代码,但我现在面临更大的问题,我发现这不是我的代码,而是我的 plist plist 中的最后备份日期导致错误。有没有办法让我只能解析字符串,而不是像以上是关于在 Python 中解析 plist 文件的主要内容,如果未能解决你的问题,请参考以下文章