xml file read in python code example
Example 1: python read xml
from xml.dom import minidom
mydoc = minidom.parse('items.xml')
items = mydoc.getElementsByTagName('item')
print('Item #2 attribute:')
print(items[1].attributes['name'].value)
print('\nAll attributes:')
for elem in items:
print(elem.attributes['name'].value)
print('\nItem #2 data:')
print(items[1].firstChild.data)
print(items[1].childNodes[0].data)
print('\nAll item data:')
for elem in items:
print(elem.firstChild.data)
Example 2: how to read ome xml file in python
showinf -omexml-only /path/to/file/myFile.ome.tif >> path/to/output/myFile.ome.xml