[Python] Xpath 2.0 e Python
Matteo Scarpa
matteoscarpa92 a gmail.com
Gio 4 Giu 2015 22:06:45 CEST
Qualcosa cosí?
from lxml import etree
root = etree.parse('x.xml')
result=""
for element in root.xpath('//a/tr'):
for single in element:
result=result+str(single.text)
result=result+"/n"
print(result)
MS
Il 04/06/2015 20:54, Dario Vinella ha scritto:
> Potresti provare lxml-xpath2-functions
>
> In [9]: tree.xpath('string-join(//a/tr[1]/td, "")')
> Out[9]: '1985'
> _______________________________________________
> Python mailing list
> Python a lists.python.it
> http://lists.python.it/mailman/listinfo/python
Maggiori informazioni sulla lista
Python