Python爬蟲之網頁圖片
# -*- coding:utf-8 -*-
# Author:sunw
import os
import re
import urllib.request
targetpath = "F:\\test"
def savepath(path):
if not os.path.isdir(targetpath):
os.mkdir(targetpath)
pos = path.rindex('/')
t = os.path.join(targetpath, path[pos + 1:])
return t
url = ""
headers = {'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) '
'Chrome/51.0.2704.63 Safari/537.36'}
req = urllib.request.Request(url=url, headers=headers)
res = urllib.request.urlopen(req)
data = res.read()
for link, t in set(re.findall(r'(http[^\s]*?(jpg|png|gif))', str(data))):
print(link)
try:
urllib.request.urlretrieve(link, savepath(link))
except:
print("mission falied")
# import urllib.request
#
#
# def savefile(data):
# path = "F:\\test\\1.txt"
# f = open(path, 'wb')
# f.write(data)
# f.close()
#
#
# url = ""
# headers = {'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) '
# 'Chrome/51.0.2704.63 Safari/537.36'}
#
# req = urllib.request.Request(url, headers=headers)
# res = urllib.request.urlopen(req)
#
# data = res.read()
# savefile(data)
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29812844/viewspace-2124509/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- python爬蟲---網頁爬蟲,圖片爬蟲,文章爬蟲,Python爬蟲爬取新聞網站新聞Python爬蟲網頁網站
- node:爬蟲爬取網頁圖片爬蟲網頁
- Python爬蟲之煎蛋網圖片下載Python爬蟲
- 【python--爬蟲】千圖網高清背景圖片爬蟲Python爬蟲
- Python爬蟲—爬取某網站圖片Python爬蟲網站
- python 爬蟲之requests爬取頁面圖片的url,並將圖片下載到本地Python爬蟲
- python爬蟲之圖片下載APP1.0Python爬蟲APP
- 網路爬蟲---從千圖網爬取圖片到本地爬蟲
- python 爬蟲網頁登陸Python爬蟲網頁
- 小小圖片爬蟲爬蟲
- Python爬蟲入門【4】:美空網未登入圖片爬取Python爬蟲
- Python爬蟲入門【6】:蜂鳥網圖片爬取之一Python爬蟲
- Python爬蟲入門【7】: 蜂鳥網圖片爬取之二Python爬蟲
- Python爬蟲入門【8】: 蜂鳥網圖片爬取之三Python爬蟲
- Python網路爬蟲2 - 爬取新浪微博使用者圖片Python爬蟲
- Python爬蟲入門【5】:27270圖片爬取Python爬蟲
- Python爬蟲學習(6): 爬取MM圖片Python爬蟲
- 【python--爬蟲】彼岸圖網高清桌布爬蟲Python爬蟲
- Python應用開發——爬取網頁圖片Python網頁
- 《網頁爬蟲》網頁爬蟲
- Python3 大型網路爬蟲實戰 003 — scrapy 大型靜態圖片網站爬蟲專案實戰 — 實戰:爬取 169美女圖片網 高清圖片Python爬蟲網站
- Python爬蟲新手教程: 知乎文章圖片爬取器Python爬蟲
- Python爬蟲實戰詳解:爬取圖片之家Python爬蟲
- Python爬蟲入門-爬取pexels高清圖片Python爬蟲
- Java爬蟲批量爬取圖片Java爬蟲
- 爬蟲 Scrapy框架 爬取圖蟲圖片並下載爬蟲框架
- Python資料爬蟲學習筆記(11)爬取千圖網圖片資料Python爬蟲筆記
- python網路爬蟲之圖片鏈家在技術.seleninum和PhantonJSPython爬蟲JS
- 自學python網路爬蟲,從小白快速成長,分別實現靜態網頁爬取,下載meiztu中圖片;動態網頁爬取,下載burberry官網所有當季新品圖片。Python爬蟲網頁
- Python爬蟲 搜尋並下載圖片Python爬蟲
- Python網路爬蟲之爬取淘寶網頁頁面 MOOC可以執行的程式碼Python爬蟲網頁
- 新手爬蟲教程:Python爬取知乎文章中的圖片爬蟲Python
- Python爬蟲遞迴呼叫爬取動漫美女圖片Python爬蟲遞迴
- Python 爬蟲入門 (二) 使用Requests來爬取圖片Python爬蟲
- Python爬蟲使用代理proxy抓取網頁Python爬蟲網頁
- 爬蟲---xpath解析(爬取美女圖片)爬蟲
- Python爬蟲: 抓取One網頁上的每日一話和圖Python爬蟲網頁
- Node JS爬蟲:爬取瀑布流網頁高清圖JS爬蟲網頁