Versuch, eine xml zu parsen

This commit is contained in:
hubobel 2017-08-25 11:43:04 +02:00
parent c1fbc87365
commit 1bd80e59d0

5
Faxreport.py Normal file
View file

@ -0,0 +1,5 @@
import xml.etree.ElementTree as ET
tree = ET.parse("export_job_logResponse.xml")
root = tree.getroot()
links = root.findall("{http://www.kyoceramita.com/ws/km-wsdl/log/log_information}export_job_log")
print(links)