python入門與進階篇(七)之原生爬蟲
爬取熊貓tv lol遊戲主播人氣排名:
# 爬蟲前奏:
# 1.明確目的
# 2.找到資料對應的網頁
# 3.分析網頁的結構找到資料所在的標籤位置
# 模擬HTTP請求,向伺服器傳送這個請求,獲取到伺服器返回給我們的HTML
# 用正規表示式提取我們要的資料(名字,人氣)
#Vscode斷點除錯:
# 1.F5開啟斷點除錯
# 2.F11單步除錯
#BeautifulSoup 工具庫 Scrapy 爬蟲框架
#爬蟲 反爬蟲 反反爬蟲 ip封閉 代理ip
#python內建的爬蟲獲取庫 request
from urllib import request
# 引入正規表示式re模組
import re
class Spider():
url='https://www.panda.tv/cate/lol'
# ?非貪婪模式 只要匹配到就好 ()只要中間的
root_pattern='<div class="video-info">([\S\s]*?)</div>'
name_pattern='</i>([\s\S]*?)</span>'
number_pattern='<span class="video-number">([\s\S]*?)</span>'
#私有方法 獲取網頁html
def __fetch_content(self):
r=request.urlopen(Spider.url)
#bytes
htmls=r.read()
#bytes 轉字串
htmls=str(htmls,encoding='utf-8')
return htmls
# 解析html 獲取需要的資料
def __analysis(self,htmls):
root_html=re.findall(Spider.root_pattern,htmls)
anchors=[]
for html in root_html:
name=re.findall(Spider.name_pattern,html)
number=re.findall(Spider.number_pattern,html)
anchor={'name':name,'number':number}
anchors.append(anchor)
print(anchors[0])
return anchors
#資料精煉
def __refine(self,anchors):
#strip() 去除字串首尾空格、換行
l=lambda anchor:{
"name":anchor['name'][0].strip(),
"number":anchor['number'][0]
}
return map(l,anchors)
# 排序
def __sort(self,anchors):
#sorted() 排序方法
anchors=sorted(anchors,key=self.__sort_seed,reverse=True)
return anchors
# 排序的key
def __sort_seed(self,anchor):
r=re.findall('\d*\.?\d*',anchor['number'])
number=float(r[0])
if '萬' in anchor['number']:
number=number*10000
return number
# 展示排名
def __show(self,anchors):
for i in range(0,len(anchors)):
print("rank:"+str(i+1)+"----name:"+anchors[i]['name']+"---number:"+anchors[i]['number'])
#入口方法 公開
def go(self):
htmls=self.__fetch_content()
anchors=self.__analysis(htmls)
anchors=list(self.__refine(anchors))
anchors=self.__sort(anchors)
self.__show(anchors)
spider=Spider()
spider.go()
相關文章
- Python 爬蟲從入門到進階之路(七)Python爬蟲
- Python爬蟲進階之JS逆向入門Python爬蟲JS
- Python 爬蟲從入門到進階之路(十六)Python爬蟲
- Python 爬蟲從入門到進階之路(十七)Python爬蟲
- Python 爬蟲從入門到進階之路(十八)Python爬蟲
- Python 爬蟲從入門到進階之路(二)Python爬蟲
- Python 爬蟲從入門到進階之路(三)Python爬蟲
- Python 爬蟲從入門到進階之路(十二)Python爬蟲
- Python 爬蟲從入門到進階之路(十五)Python爬蟲
- Python 爬蟲從入門到進階之路(八)Python爬蟲
- Python 爬蟲從入門到進階之路(九)Python爬蟲
- Python 爬蟲從入門到進階之路(十)Python爬蟲
- Python 爬蟲從入門到進階之路(十一)Python爬蟲
- Python 爬蟲從入門到進階之路(六)Python爬蟲
- node爬蟲進階之——登入爬蟲
- Python爬蟲入門教程 55-100 python爬蟲高階技術之驗證碼篇Python爬蟲
- Python爬蟲學習之(二)| urllib進階篇Python爬蟲
- python入門與進階篇(八)之Pythonic與Python雜記Python
- Python爬蟲進階之APP逆向(三)Python爬蟲APP
- python爬蟲進階必備之代理Python爬蟲
- 為什麼學習python及爬蟲,Python爬蟲[入門篇]?Python爬蟲
- python爬蟲 之 BeautifulSoup庫入門Python爬蟲
- Python爬蟲進階之會話和CookiesPython爬蟲會話Cookie
- Python爬蟲入門Python爬蟲
- Python爬蟲怎麼入門-初級篇Python爬蟲
- python入門之爬蟲工具有哪些?Python爬蟲
- Python 從入門到進階之路(七)Python
- 爬蟲不得不學之 JavaScript 入門篇爬蟲JavaScript
- 爬蟲(1) - 爬蟲基礎入門理論篇爬蟲
- python入門與進階篇(六)之高階語法及用法Python
- 爬蟲進階:反反爬蟲技巧爬蟲
- 如何入門 Python 爬蟲?Python爬蟲
- python-爬蟲入門Python爬蟲
- 學渣講爬蟲之Python爬蟲從入門到出門(第三講)爬蟲Python
- 【爬蟲】python爬蟲從入門到放棄爬蟲Python
- Python爬蟲進階之JS逆向土地市場網!Python爬蟲JS
- Python爬蟲進階之代理的基本原理Python爬蟲
- Python爬蟲進階之urllib庫使用方法Python爬蟲