Python Selenium+PhantomJs 爬煎蛋妹子圖
第一次爬蟲,程式碼很簡單,借鑑了很多前輩的程式碼。
import re import os import requests from bs4 import BeautifulSoup from selenium import webdriver #設定phantomjs路徑 driver = webdriver.PhantomJS(executable_path='D:/phantomjs-2.1.1-windows/bin/phantomjs') def jiandanSpider(Url,basePath): page = 1 #遍歷url並解析 for urlPools in Url: driver.get(urlPools) driver.implicitly_wait(10) html_text = driver.page_source #轉換格式,並找到連結 img_url = [] soup = BeautifulSoup(html_text,'html.parser') imges = soup.select("a.view_img_link") for i in imges: wx = i.get('href') if str('gif') in str(wx): pass else: http_url = 'http:' + wx img_url.append(http_url) #開始下載 n = 1 for url in img_url: print("第 %s 張" % (n)) with open(basePath + '妹子圖 %s-%s'%(page,n) + url[-4:],'wb' ) as f: f.write(requests.get(url).content) print('下載完成') n = n + 1 page = page + 1 if __name__ == '__main__': urlPool = ('http://jandan.net/ooxx/page-{}#comments'.format(i) for i in range(1, 5)) basePath = 'D:/jiandanImage/' jiandanSpider(urlPool,basePath)
相關文章
- 教你用Python爬取妹子圖APPPythonAPP
- python利用selenium+phantomJS爬淘寶PythonJS
- 爬蟲Selenium+PhantomJS爬取動態網站圖片資訊(Python)爬蟲JS網站Python
- Python爬蟲入門教程 18-100 煎蛋網XXOO圖片抓取Python爬蟲
- Python爬蟲入門教程 2-100 妹子圖網站爬取Python爬蟲網站
- 老司機帶你用python來爬取妹子圖Python
- Scrapy框架爬取海量妹子圖框架
- scrapy 也能爬取妹子圖?(5)
- Node.js爬取妹子圖-crawler爬蟲的使用Node.js爬蟲
- 爬蟲福利----妹子圖網MM批量下載爬蟲
- Python3--妹子圖實戰Python
- 爬蟲福利二 之 妹子圖網MM批量下載爬蟲
- python爬取網圖Python
- Python3.x:Selenium+PhantomJS爬取帶Ajax、Js的網頁及獲取JS返回值PythonJS網頁
- 【python--爬蟲】千圖網高清背景圖片爬蟲Python爬蟲
- Python爬蟲—爬取某網站圖片Python爬蟲網站
- Python爬蟲入門【5】:27270圖片爬取Python爬蟲
- 【python--爬蟲】彼岸圖網高清桌布爬蟲Python爬蟲
- python爬蟲---網頁爬蟲,圖片爬蟲,文章爬蟲,Python爬蟲爬取新聞網站新聞Python爬蟲網頁網站
- Python爬蟲實戰詳解:爬取圖片之家Python爬蟲
- Python爬蟲小專案:爬一個圖書網站Python爬蟲網站
- Python爬蟲入門【11】:半次元COS圖爬取Python爬蟲
- Python爬蟲新手教程: 知乎文章圖片爬取器Python爬蟲
- Python爬蟲遞迴呼叫爬取動漫美女圖片Python爬蟲遞迴
- 教你用Python爬取圖蟲網Python
- python如何爬取動漫截圖網Python
- Python《必應bing桌面圖片爬取》Python
- Python爬蟲學習線路圖丨Python爬蟲需要掌握哪些知識點Python爬蟲
- 新手爬蟲教程:Python爬取知乎文章中的圖片爬蟲Python
- Python 爬蟲零基礎教程(1):爬單個圖片Python爬蟲
- Python資料爬蟲學習筆記(11)爬取千圖網圖片資料Python爬蟲筆記
- Python爬蟲入門【7】: 蜂鳥網圖片爬取之二Python爬蟲
- Python爬蟲入門【8】: 蜂鳥網圖片爬取之三Python爬蟲
- Python爬蟲入門【9】:圖蟲網多執行緒爬取Python爬蟲執行緒
- Python爬蟲入門【6】:蜂鳥網圖片爬取之一Python爬蟲
- Python網路爬蟲2 - 爬取新浪微博使用者圖片Python爬蟲
- Python爬蟲入門【4】:美空網未登入圖片爬取Python爬蟲
- python 爬蟲之requests爬取頁面圖片的url,並將圖片下載到本地Python爬蟲