Python《爬取手機和桌面桌布》
此次爬取桌布網站,此網站全是靜態的,沒有反爬蟲手段,感覺是適合新手練手。
http://www.win4000.com/mobile.html
http://www.win4000.com/wallpaper.html
分別是手機桌布和桌面桌布。
比如點開手機桌布,我們會發現有很多標籤。
點開其中的標籤,進入到該標籤頁。
發現有很多的圖片組,且包含有分頁。
再最後點選某個圖片組可以發現有多張高清桌布
一個組圖中,html頁面的url是有規律的。
http://www.win4000.com/mobile_detail_178569_1.html
http://www.win4000.com/mobile_detail_178569_2.html
http://www.win4000.com/mobile_detail_178569_3.html
http://www.win4000.com/mobile_detail_178569_4.html
………
好了,頁面分析完畢。直接整程式碼:
import time
from concurrent.futures import ThreadPoolExecutor
import time
import os
import re
import requests
from bs4 import BeautifulSoup
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
rootrurl = 'http://www.win4000.com/'
save_dir = 'D:/estimages/'
headers = {
"Referer": rootrurl,
'User-Agent': "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36",
'Accept-Language': 'en-US,en;q=0.8',
'Cache-Control': 'max-age=0',
'Connection': 'keep-alive'
} ###設定請求的頭部,偽裝成瀏覽器
def saveOneImg(dir, img_url):
new_headers = {
"Referer": img_url,
'User-Agent': "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36",
'Accept-Language': 'en-US,en;q=0.8',
'Cache-Control': 'max-age=0',
'Connection': 'keep-alive'
} ###設定請求的頭部,偽裝成瀏覽器,實時換成新的 header 是為了防止403 http code問題,防止反盜鏈,
try:
img = requests.get(img_url, headers=new_headers) # 請求圖片的實際URL
if (str(img).find('200') > 1):
with open(
'{}/{}.jpg'.format(dir, img_url.split('/')[-1].split('?')[0]), 'wb') as jpg: # 請求圖片並寫進去到本地檔案
jpg.write(img.content)
print(img_url)
jpg.close()
return True
else:
return False
except Exception as e:
print('exception occurs: ' + img_url)
print(e)
return False
def processOnePage(tag, url):
print('current group page is: %s' % url)
html = BeautifulSoup(requests.get(url).text, features="html.parser")
div = html.find('div', {'class': 'ptitle'})
title = div.find('h1').get_text()
num = int(div.find('em').get_text())
tmpDir = '{}{}'.format(tag, title)
if not os.path.exists(tmpDir):
os.makedirs(tmpDir)
for i in range(1, (num + 1)):
tmpurl = '{}_{}{}'.format(url[:-5], i, '.html')
html = BeautifulSoup(requests.get(tmpurl).text, features="html.parser")
saveOneImg(tmpDir, html.find('img', {'class': 'pic-large'}).get('src'))
pass
def processPages(tag, a_s):
for a in a_s:
processOnePage(tag, a.get('href'))
time.sleep(1)
pass
def tagSpiders(tag, url):
while 1:
html = BeautifulSoup(requests.get(url).text, features="html.parser")
a_s = html.find('div', {'class': 'tab_box'}).find_all('a')
processPages(tag, a_s)
next = html.find('a', {'class': 'next'})
if next is None:
break
url = next.get('href')
time.sleep(1)
pass
def getAllTags(taglist):
list = {}
for tag, url in taglist.items():
html = BeautifulSoup(requests.get(url).text, features="html.parser")
tags = html.find('div', {'class': 'cont1'}).find_all('a')[1:]
for a in tags:
list['{}{}/{}/'.format(save_dir, tag, a.get_text())] = a.get('href')
return list
if __name__ == '__main__':
# 獲得所有標籤
list = {'手機桌布': 'http://www.win4000.com/mobile.html',
'桌面桌布': 'http://www.win4000.com/wallpaper.html'}
taglist = getAllTags(list)
print(taglist)
#
# 給每個標籤配備一個執行緒
with ThreadPoolExecutor(max_workers=40) as t: # 建立一個最大容納數量為20的執行緒池
for tag, url in taglist.items():
t.submit(tagSpiders, tag, url)
# 單個連線測試下下
# tagSpiders('D:/estimages/手機桌布/美女/', 'http://www.win4000.com/mobile_2340_0_0_1.html')
# 等待所有執行緒都完成。
while 1:
print('-------------------')
time.sleep(1)
效果如下:
相關文章
- Python《爬取IPhone各式桌布》PythoniPhone
- 利用Python爬取必應桌布Python
- Python爬蟲,高清美圖我全都要(彼岸桌面桌布)Python爬蟲
- 手機版python爬取網頁書籍Python網頁
- Python 爬取 "王者榮耀.英雄桌布" 過程中的矛和盾Python
- Android獲取當前桌面桌布Android
- Python《必應bing桌面圖片爬取》Python
- python爬取FY-4作為桌面背景Python
- 【python--爬蟲】彼岸圖網高清桌布爬蟲Python爬蟲
- python爬蟲解決趕集網掃碼獲取手機號Python爬蟲
- 爬取彼岸網站的桌布(分類可選)網站
- Python自動化爬取小說,解放你的雙手Python
- 安卓手機桌布模糊怎麼解決安卓
- win10怎麼設定桌面桌布_window10桌面桌布怎麼換Win10
- python 爬蟲 爬取 learnku 精華文章Python爬蟲
- python爬蟲——爬取大學排名資訊Python爬蟲
- python爬蟲從ip池獲取隨機IPPython爬蟲隨機
- Fiddler抓包---手機APP--python爬蟲 基本設定和操作APPPython爬蟲
- python爬取網圖Python
- 分享必應桌布介面,可用來獲取高質量桌布和故事
- python 爬蟲 實現增量去重和定時爬取例項Python爬蟲
- [python爬蟲] BeautifulSoup和Selenium簡單爬取知網資訊測試Python爬蟲
- 「更新」Macos動態桌面桌布:iWallMac
- Dynamic Wallpaper for Mac 動態桌布桌面Mac
- python爬蟲--爬取鏈家租房資訊Python爬蟲
- Python爬蟲爬取美劇網站Python爬蟲網站
- python爬蟲爬取糗事百科Python爬蟲
- 使用Python進行Web爬取和資料提取PythonWeb
- python 爬蟲之獲取標題和連結Python爬蟲
- win10怎樣把桌面桌布縮小_win10桌面桌布怎麼變小Win10
- win10桌布快取在哪個資料夾_win10桌面桌布資料夾儲存路徑Win10快取
- python 爬取 mc 皮膚Python
- Python爬取電影天堂Python
- python爬取北京租房資訊Python
- Python 從零開始爬蟲(六)——動態爬取解決方案 之 手動分析Python爬蟲
- Python爬蟲入門教程 48-100 使用mitmdump抓取手機惠農APP-手機APP爬蟲部分Python爬蟲MITAPP
- python例項,python網路爬蟲爬取大學排名!Python爬蟲
- win10桌面自定義桌布的方法_win10怎麼設定桌面自定義桌布Win10