主頁(yè) > 知識(shí)庫(kù) > python 多線程爬取壁紙網(wǎng)站的示例

python 多線程爬取壁紙網(wǎng)站的示例

熱門(mén)標(biāo)簽:騰訊地圖標(biāo)注有什么版本 深圳網(wǎng)絡(luò)外呼系統(tǒng)代理商 高德地圖標(biāo)注字母 400電話辦理費(fèi)用收費(fèi) 鎮(zhèn)江人工外呼系統(tǒng)供應(yīng)商 申請(qǐng)辦個(gè)400電話號(hào)碼 柳州正規(guī)電銷(xiāo)機(jī)器人收費(fèi) 千呼ai電話機(jī)器人免費(fèi) 外呼系統(tǒng)前面有錄音播放嗎

基本開(kāi)發(fā)環(huán)境

· Python 3.6

· Pycharm

需要導(dǎo)入的庫(kù)

目標(biāo)網(wǎng)頁(yè)分析

網(wǎng)站是靜態(tài)網(wǎng)站,沒(méi)有加密,可以直接爬取

整體思路:

1、先在列表頁(yè)面獲取每張壁紙的詳情頁(yè)地址

2、在壁紙?jiān)斍轫?yè)面獲取壁紙真實(shí)高清url地址

3、保存地址

代碼實(shí)現(xiàn)

模擬瀏覽器請(qǐng)請(qǐng)求網(wǎng)頁(yè),獲取網(wǎng)頁(yè)數(shù)據(jù)

 

這里只選擇爬取前10頁(yè)的數(shù)據(jù)

代碼如下

import threading
import parsel
import requests

def get_html(html_url):
 '''
 獲取網(wǎng)頁(yè)源代碼
 :param html_url: 網(wǎng)頁(yè)url
 :return:
 '''
 response = requests.get(url=html_url, headers=headers)
 return response


def get_par(html_data):
 '''
 把 response.text 轉(zhuǎn)換成 selector 對(duì)象 解析提取數(shù)據(jù)
 :param html_data: response.text
 :return: selector 對(duì)象
 '''
 selector = parsel.Selector(html_data)
 return selector

def download(img_url, title):
 '''
 保存數(shù)據(jù)
 :param img_url: 圖片地址
 :param title: 圖片標(biāo)題
 :return:
 '''
 content = get_html(img_url).content
 path = '壁紙\\' + title + '.jpg'
 with open(path, mode='wb') as f:
  f.write(content)
  print('正在保存', title)

def main(url):
 '''
 主函數(shù)
 :param url: 列表頁(yè)面 url
 :return:
 '''
 html_data = get_html(url).text
 selector = get_par(html_data)
 lis = selector.css('.wb_listbox div dl dd a::attr(href)').getall()
 for li in lis:
  img_data = get_html(li).text
  img_selector = get_par(img_data)
  img_url = img_selector.css('.wb_showpic_main img::attr(src)').get()
  title = img_selector.css('.wb_pictitle::text').get().strip()
  download(img_url, title)
 end_time = time.time() - s_time
 print(end_time)

if __name__ == '__main__':
 for page in range(1, 11):
  url = 'http://www.deskbizhi.com/min/list-{}.html'.format(page)
  main_thread = threading.Thread(target=main, args=(url,))
  main_thread.start()

以上就是python 多線程爬取壁紙網(wǎng)站的示例的詳細(xì)內(nèi)容,更多關(guān)于python 爬取壁紙網(wǎng)站的資料請(qǐng)關(guān)注腳本之家其它相關(guān)文章!

您可能感興趣的文章:
  • python爬取新聞門(mén)戶網(wǎng)站的示例
  • python 爬取壁紙網(wǎng)站的示例
  • Python爬取網(wǎng)站圖片并保存的實(shí)現(xiàn)示例
  • Python爬蟲(chóng)設(shè)置Cookie解決網(wǎng)站攔截并爬取螞蟻短租的問(wèn)題
  • python爬蟲(chóng)爬取某網(wǎng)站視頻的示例代碼
  • python爬蟲(chóng)實(shí)現(xiàn)爬取同一個(gè)網(wǎng)站的多頁(yè)數(shù)據(jù)的實(shí)例講解
  • Python實(shí)現(xiàn)JS解密并爬取某音漫客網(wǎng)站
  • python 爬取免費(fèi)簡(jiǎn)歷模板網(wǎng)站的示例
  • Python3 實(shí)現(xiàn)爬取網(wǎng)站下所有URL方式
  • 使用python爬取taptap網(wǎng)站游戲截圖的步驟

標(biāo)簽:大慶 烏蘭察布 合肥 烏蘭察布 平頂山 郴州 海南 哈爾濱

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《python 多線程爬取壁紙網(wǎng)站的示例》,本文關(guān)鍵詞  python,多,線程,爬取,壁紙,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《python 多線程爬取壁紙網(wǎng)站的示例》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于python 多線程爬取壁紙網(wǎng)站的示例的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章