码迷,mamicode.com
首页 > 编程语言 > 详细

Python网络爬虫 - 2. Beautiful Soup小试牛刀

时间:2015-09-16 12:48:22      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:

目标:

我们解析百度首页的logo

bs_baidu_logo.py

from urllib.request import urlopen
from bs4 import BeautifulSoup
html = urlopen("http://www.baidu.com")
bsObj = BeautifulSoup(html.read(), "html.parser")
print(bsObj.img)

 

运行结果:

<img height="129" hidefocus="true" src="//www.baidu.com/img/bd_logo1.png" width="270"/>

 

Python网络爬虫 - 2. Beautiful Soup小试牛刀

标签:

原文地址:http://www.cnblogs.com/davidgu/p/4812765.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!