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

Python网络爬虫 - 下载图片

时间:2015-11-19 12:38:18      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:

下载博客园的logo

from urllib.request import urlretrieve
from urllib.request import urlopen
from bs4 import BeautifulSoup
html = urlopen("http://www.cnblogs.com")
bsObj = BeautifulSoup(html, "html.parser")
imageLocation = bsObj.find("div", {"id": "logo"}).find("img")["src"]
urlretrieve (imageLocation, "blog_logo.jpg")

运行结果:

下载博客园的logo另存为图片文件blog_logo.jpg

Python网络爬虫 - 下载图片

标签:

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

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