Python网络爬虫 - 下载图片

下载博客园的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

posted @ 2015-11-19 11:02  Master HaKu  阅读(238)  评论(0编辑  收藏  举报