Python爬蟲01 - Baidu image download (詳:百度高清圖自動下載器 )

#-*- coding:utf-8 -*-
 
import re
import requests
 
def downloadPic(html,keyword):
 
    pic_url = re.findall('"objURL":"(.*?)",',html,re.S)
    i = 0
    print ('找到關鍵詞:'+keyword+'的圖片,現在開始下載圖片...')
    for each in pic_url:
        print ('正在下載第'+str(i+1)+'張圖片,圖片地址:'+str(each))
        try:
            pic= requests.get(each, timeout=10)
        except requests.exceptions.ConnectionError:
            print ('【錯誤】當前圖片無法下載')
 
            continue
 
        string = 'pictures'+keyword+'_'+str(i) + '.jpg'
 
        #resolve the problem of encode, make sure that chinese name could be store
        fp = open(string,'wb')
        fp.write(pic.content)
        fp.close()
        i += 1
if __name__ == '__main__':
 
    word = input("Input key word: ")
 
    url = 'http://image.baidu.com/search/flip?tn=baiduimage&ie=utf-8&word='+word+'&ct=201326592&v=flip'
 
    result = requests.get(url)
 
    downloadPic(result.text,word)

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章