Python3簡單爬蟲抓取網頁圖片

   如今網上有不少python2寫的爬蟲抓取網頁圖片的實例,但不適用新手(新手都使用python3環境,不兼容python2),
因此我用Python3的語法寫了一個簡單抓取網頁圖片的實例,但願可以幫助到你們,並但願你們批評指正。

1
import urllib.request 2 import re 3 import os 4 import urllib 5 #根據給定的網址來獲取網頁詳細信息,獲得的html就是網頁的源代碼 6 def getHtml(url): 7 page = urllib.request.urlopen(url) 8 html = page.read() 9 return html.decode('UTF-8') 10 11 def getImg(html): 12 reg = r'src="(.+?\.jpg)" pic_ext' 13 imgre = re.compile(reg) 14 imglist = imgre.findall(html)#表示在整個網頁中過濾出全部圖片的地址,放在imglist中 15 x = 0 16 path = 'D:\\test' 17 # 將圖片保存到D:\\test文件夾中,若是沒有test文件夾則建立 18 if not os.path.isdir(path): 19 os.makedirs(path) 20 paths = path+'\\' #保存在test路徑下 21 22 for imgurl in imglist: 23 urllib.request.urlretrieve(imgurl,'{}{}.jpg'.format(paths,x)) #打開imglist中保存的圖片網址,並下載圖片保存在本地,format格式化字符串 24 x = x + 1 25 return imglist 26 html = getHtml("http://tieba.baidu.com/p/2460150866")#獲取該網址網頁詳細信息,獲得的html就是網頁的源代碼 27 print (getImg(html)) #從網頁源代碼中分析並下載保存圖片
相關文章
相關標籤/搜索