利用Python下載必應(yīng)每日壁紙,其實很簡單默刚,每日壁紙甥郑,這個網(wǎng)址指向了今天的必應(yīng)壁紙,我們只需要把圖片保存下來就好荤西。
這里我們獲取了今天的日期澜搅,作為圖片的名字,以避免被覆蓋皂冰。
import requests
import time
weburl = r"http://area.sinaapp.com/bingImg/"
page = requests.get(weburl)
img_name = time.strftime("%Y%m%d") + '.jpg'
with open(img_name,'wb') as f:
f.write(page.content)
print 'download successful'