gpt4 book ai didi

python - 如何获取lxml中html的源码?

转载 作者:太空狗 更新时间:2023-10-30 02:48:06 25 4
gpt4 key购买 nike

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源代码,而不是文本内容?

最佳答案

使用

html = lxml.html.tostring(node)

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

关于python - 如何获取lxml中html的源码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14098304/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com