parse XML file into a GUI in Python



I'm working on a project - I want to view XML data in convenient way. I created XML file with data and I want to view the data by tables.


For example - for this XML file:



<events>
<event>
<date> 23/12/2014</date>
<time>20:18:01</time>
<text>blabla</text>
</event>
</events>


I would like to get simple GUI that present the data by tables - by reading the XML data:



|#|text |time |date |
|1|blabla|20:18:01| 23/12/2014|


Any ideas on how to do that?


Thanks a lot.


No comments:

Post a Comment