Sam Costigan

Results 2 comments of Sam Costigan

@kyleobrien91 I came across this issue and had to subclass `XMLParser` and override `_xml_convert` to solve it. I ended up with something like the following: ```xml 121.0 dasd ``` Is...

I had this same problem. My solution was to subclass `XMLParser`, give it a list of tags to consider as "list elements", and then override `_xml_convert`: ```py class XMLParserAttributes(XMLParser): list_tags...