试图在python中使用lxml获取xml文件的某些值

时间:2012-03-26 09:40:40

标签: python xpath lxml

我只是想获取一些XML文件的值,但我无法得到任何东西。

<?xml version="1.0" ?>
<clasif>
  <estacion>Estacion</estacion>
  <ncamaras>1</ncamaras>
  <fph>1</fph>
  <tratamiento>3</tratamiento>
  <finicio>17/07/2011</finicio>
  <ffin>17/07/2011</ffin>
  <hinicio>04</hinicio>
  <hfin>06</hfin>
</clasif>

这是我访问值的代码:

from lxml import etree
doc = etree.parse ( 'clasif.xml' )
root = doc.getroot()
elem= doc.xpath ('//estacion')

我做错了什么?

0 个答案:

没有答案