lxml で XPath 使ってる時に namespace でハマったのでメモ。 ありがちなところでハマった。 恥さらしの為にもメモりますです。 どんなところでハマったかと言うと、 例えばこんな感じの test.xml なXMLがありまして、 <?xml version="1.0" encoding="UTF-8"?> <root xmlns="http://example.com/hoge/1.0"> <child> <type>1</type> <name>hoge</name> </child> <child> <type>1</type> <name>hige</name> </child> <child> <type>0</type> <name>hage</name> </child> </root> >>> from lxml import etree >>> xml = e