python 多線程爬取壁紙網(wǎng)站的示例
· Python 3.6
· Pycharm
需要導(dǎo)入的庫

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



1、先在列表頁面獲取每張壁紙的詳情頁地址
2、在壁紙?jiān)斍轫撁娅@取壁紙真實(shí)高清url地址
3、保存地址
代碼實(shí)現(xiàn)模擬瀏覽器請(qǐng)請(qǐng)求網(wǎng)頁,獲取網(wǎng)頁數(shù)據(jù)

這里只選擇爬取前10頁的數(shù)據(jù)
代碼如下
import threadingimport parselimport requestsdef get_html(html_url): ’’’ 獲取網(wǎng)頁源代碼 :param html_url: 網(wǎng)頁url :return: ’’’ response = requests.get(url=html_url, headers=headers) return responsedef 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 selectordef 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: 列表頁面 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)注好吧啦網(wǎng)其它相關(guān)文章!
相關(guān)文章:
1. 基于android studio的layout的xml文件的創(chuàng)建方式2. 解決Android studio xml界面無法預(yù)覽問題3. 詳解Android studio 動(dòng)態(tài)fragment的用法4. 圖文詳解vue中proto文件的函數(shù)調(diào)用5. 什么是python的自省6. Spring Boot和Thymeleaf整合結(jié)合JPA實(shí)現(xiàn)分頁效果(實(shí)例代碼)7. Android如何加載Base64編碼格式圖片8. 使用Android studio查看Kotlin的字節(jié)碼教程9. Vuex localStorage的具體使用10. Vue封裝一個(gè)TodoList的案例與瀏覽器本地緩存的應(yīng)用實(shí)現(xiàn)

網(wǎng)公網(wǎng)安備