I have an xml doc that I am trying to parse using Etree.lxml
1&
Try using Xpath:
dom.xpath("//*[local-name() = 'Body']")
Taken (and simplified) from this page, under "The xpath() method" section