本文整理汇总了Python中Modules.Utilities.xml_tools.PutGetXML.get_date_time_from_xml方法的典型用法代码示例。如果您正苦于以下问题:Python PutGetXML.get_date_time_from_xml方法的具体用法?Python PutGetXML.get_date_time_from_xml怎么用?Python PutGetXML.get_date_time_from_xml使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Modules.Utilities.xml_tools.PutGetXML
的用法示例。
在下文中一共展示了PutGetXML.get_date_time_from_xml方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _read_derived
# 需要导入模块: from Modules.Utilities.xml_tools import PutGetXML [as 别名]
# 或者: from Modules.Utilities.xml_tools.PutGetXML import get_date_time_from_xml [as 别名]
def _read_derived(p_internet_sect_xml):
l_icd = InternetConnectionData()
try:
l_icd.ExternalIPv4 = PutGetXML.get_ip_from_xml(p_internet_sect_xml, 'ExternalIPv4')
l_icd.ExternalIPv6 = PutGetXML.get_ip_from_xml(p_internet_sect_xml, 'ExternalIPv6')
l_icd.LastChanged = PutGetXML.get_date_time_from_xml(p_internet_sect_xml, 'LastChanged')
except:
pass
return l_icd