Python3簡單爬蟲抓取網頁圖片

如今網上有不少python2寫的爬蟲抓取網頁圖片的實例,但不適用新手(新手都使用python3環境,不兼容python2),
因此我用Python3的語法寫了一個簡單抓取網頁圖片的實例,但願可以幫助到你們,並但願你們批評指正。
import urllib.request
import re
import os
import urllib
#根據給定的網址來獲取網頁詳細信息,獲得的html就是網頁的源代碼  
def getHtml(url):
    page = urllib.request.urlopen(url)
    html = page.read()
    return html.decode('UTF-8')

def getImg(html):
    reg = r'src="(.+?\.jpg)" pic_ext'
    imgre = re.compile(reg)
    imglist = imgre.findall(html)#表示在整個網頁中過濾出全部圖片的地址,放在imglist中
    x = 0
    path = 'D:\\test'  
   # 將圖片保存到D:\\test文件夾中,若是沒有test文件夾則建立
    if not os.path.isdir(path):  
        os.makedirs(path)  
    paths = path+'\\'      #保存在test路徑下  

    for imgurl in imglist:  
        urllib.request.urlretrieve(imgurl,'{0}{1}.jpg'.format(paths,x))  #打開imglist中保存的圖片網址,並下載圖片保存在本地,format格式化字符串 
        x = x + 1  
    return imglist
html = getHtml("http://tieba.baidu.com/p/2460150866")#獲取該網址網頁詳細信息,獲得的html就是網頁的源代碼  
print (getImg(html)) #從網頁源代碼中分析並下載保存圖片

完美html

 

參考:http://www.cnblogs.com/smq772340208/p/6927063.htmlpython

相關文章
相關標籤/搜索