the word/_rels/document.xml.rels in a .docx file has a empty preifx namespace element: <Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"> which causes a problem that I can't use findall mehtod to get the children nodes.
simplified examples:
>>> from lxml import etree
>>> etree.fromstring(b'<x><y id="1"/><y id="2"/></x>').findall('y')
[<Element y at 0x382d788>, <Element y at 0x382db48>]
>>> etree.fromstring(b'<x xmlns="wow"><y id="1"/><y id="2"/></x>').findall('y')
[]
# How to find these children nodes like previous one?
 
     
    