美文网首页
python 解析html

python 解析html

作者: misspass | 来源:发表于2020-02-20 20:01 被阅读0次
import urllib2
from bs4 import BeautifulSoup #这里需要导入BeautifulSoup 
url="http://www.baidu.com"
content=urllib2.urlopen(url)
soup=BeautifulSoup(content) #将网页内容转化为BeautifulSoup 格式的数据
print soup

相关文章

网友评论

      本文标题:python 解析html

      本文链接:https://www.haomeiwen.com/subject/ljrfqhtx.html