Popular recipes by Thomas Guettler http://code.activestate.com/recipes/users/1077859/2003-04-01T03:33:22-08:00ActiveState Code RecipesParsing Excel XML (Python) 2003-04-01T03:33:22-08:00Thomas Guettlerhttp://code.activestate.com/recipes/users/1077859/http://code.activestate.com/recipes/192914-parsing-excel-xml/ <p style="color: grey"> Python recipe 192914 by <a href="/recipes/users/1077859/">Thomas Guettler</a> (<a href="/recipes/tags/xml/">xml</a>). </p> <p>This script parses an MS-Excel spreadsheet saved as XML.</p> <p>The spreadsheet: a1, b1 a2, b2</p> <p>will be stored like this:</p> <p>[[u'a1', u'b1'], [u'a2', u'b2']]</p>