本文首发于个人博客。
几年前写过一篇用 Python 下载每日必应背景图的方法,不过由于必应网站更新,之前的方法失效了。
这次抽空更新了一下。
适用的 Python 的版本为 Python3 及以上。
因为必应官方限制,只能下载最近 8 张图。
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# -*- author: uncoverman-*-
# Python3 抓取 bing 主页所有背景图片
import urllib.request,re,sys,os
def get_bing_backphoto():
if (os.path.exists('photos')== False):
os.mkdir('photos')
for i in range(0,8):
url = 'http://cn.bing.com/HPImageArchive.aspx?format=js&idx='+str(i)+'&n=1&nc=1361089515117&FORM=HYLH1'
html = urllib.request.urlopen(url).read()
if html == 'null':
print( 'open & read bing error!')
sys.exit(-1)
html = html.decode('utf-8')
reg = re.compile('"url":"(.*?)","urlbase"',re.S)
text = re.findall(reg,html)
for imgurl in text :
# http://cn.bing.com/th?id=OHR.CorsicaHeart_ZH-CN2795615037_1920x1080.jpg&rf=LaDigue_1920x1080.jpg&pid=hp
bingimgurl = 'http://cn.bing.com'+imgurl
right = imgurl.index('&')
name = imgurl.replace(imgurl[right:],'')
left = name.index('.')
imgname = name.replace(name[:left+1],'')
savepath = 'photos/'+ imgname
urllib.request.urlretrieve(bingimgurl, savepath)
print (imgname + ' save success!')
get_bing_backphoto()
使用方法:将以上代码复制到后缀为.py
的文件,然后运行.py
的文件即可。
网友评论