I have the following xml:
<assets>
<asset type="full">
<file_name>WME__HD_2CH_EN_16X9_178_2398_FINAL.mov</file_name>
</asset>
...
</assets>
I have multiple asset blocks, so I need to reference the attribute type = "full". This is what I currently have to reference them all --
node.xpath("//t:assets/t:asset/t:file_name/text()",
namespaces={'t':'http://apple.com/itunes/importer'})
How would I reference only the asset with type = "full" ?