from lxml import etree def parseXML(xmlFile): """ Parse the xml """ with open(xmlFile) as fobj: xml = fobj.read() root = etree.fromstring(xml) for appt in ...
確定! 回上一頁