如何获取lxml中的html源代码?

时间:2012-12-31 06:31:00

标签: python lxml

import urllib
import lxml.html
down='http://blog.sina.com.cn/s/blog_71f3890901017hof.html'
file=urllib.urlopen(down).read()
root=lxml.html.document_fromstring(file)
body=root.xpath('//div[@class="articalContent  "]')[0]
print body.text_content()

当我运行代码时,我得到的是文本内容,我如何获取它的html源代码,而不是文本内容?

1 个答案:

答案 0 :(得分:5)

使用

html = lxml.html.tostring(node)

并请:先阅读您正在使用的工具的基本文档。