xsd - Tableau workbook XML schema -
does know can xml schema tableau workbooks, data extracts , data sources?
i know reverse engineer using existing report files not possible values different complex data types. aware tableau software not encourage edit files directly, it's experiment trying do.
you can use python parse xml...
i have coded retrieve information example code
you can iterate through required elements.... example loop through required element
import xml.etree.elementtree et tree = et.parse(filename) xml_datasources = tree.findall('datasources') xml_val = xml_datasources[0].iter('datasource') item in xml_val: name = item.get('name')
there multiple nested items luck parsing
Comments
Post a Comment