33

Pythonでlxmlとxpathを使用して子ノードのHTMLコンテンツを取得しようとしています。以下のコードに示すように、各製品ノードのhtmlコンテンツを検索します。product.htmlのようなメソッドはありますか?

productGrids = tree.xpath("//div[@class='name']/parent::*")
for product in productGrids:
    print #html content of product
4

6 に答える 6

48
from lxml import etree
print(etree.tostring(root, pretty_print=True))

あなたはここでより多くの例を見るかもしれません:http://lxml.de/tutorial.html

于 2013-02-15T14:05:25.630 に答える
17

メソッドを使用したいと思いますtostring()

from lxml import etree

tree = etree.fromstring('<html><head><title>foo</title></head><body><div class="name"><p>foo</p></div><div class="name"><ul><li>bar</li></ul></div></body></html>')
for elem in tree.xpath("//div[@class='name']"):
     # pretty_print ensures that it is nicely formatted.
     print etree.tostring(elem, pretty_print=True)
于 2013-02-15T14:08:41.987 に答える
-2

これを行う別の方法

x=doc.xpath("//div[@class='name']/parent::*")
print(map(etree.tostring,x))
于 2015-08-20T14:14:47.327 に答える