本文整理汇总了Python中elementtree.ElementTree.Element.attrib["updateurl"]方法的典型用法代码示例。如果您正苦于以下问题:Python Element.attrib["updateurl"]方法的具体用法?Python Element.attrib["updateurl"]怎么用?Python Element.attrib["updateurl"]使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类elementtree.ElementTree.Element
的用法示例。
在下文中一共展示了Element.attrib["updateurl"]方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: saveScriptConfig
# 需要导入模块: from elementtree.ElementTree import Element [as 别名]
# 或者: from elementtree.ElementTree.Element import attrib["updateurl"] [as 别名]
def saveScriptConfig(config):
"""
save it into the the config
"""
elemConfig = Element("config")
lognode = Element("logvalue")
elemConfig.append(lognode)
lognode.text = str(config.logvalue)
mediaNode = Element("media")
mediaNode.attrib["updateurl"] = config.mediaUpdateURL
elemConfig.append(mediaNode)
podcastNode = Element("podcast")
if config.podcastDownload:
podcastNode.attrib["download"] = 'true'
else:
podcastNode.attrib["download"] = 'false'
podcastNode.attrib["localpath"] = config.podcastDownloadPath
elemConfig.append(podcastNode)
# create the userdata dir when not exist
if not os.path.exists(CONFIG_DIR_ROOT):
createDirectory(CONFIG_DIR_ROOT, recursive=True)
#if os.path.exists(CONFIG_DIR):
createXmlFile(CONFIG_FULL_PATH, elemConfig) #, encoding='ascii')