資源簡(jiǎn)介
在課余閑暇之時(shí),我們可以使用腳本爬取王者榮耀的數(shù)據(jù),包括每個(gè)英雄的技能介紹,方便對(duì)每個(gè)版本英雄的比較和判別英雄強(qiáng)度,這都是必不可少的一個(gè)好方法
代碼片段和文件信息
import?requests
import?re
import?os
import?time
r?=?requests.get(‘https://pvp.qq.com/web201605/herolist.shtml‘)
r.encoding=“gbk“
html?=?r.text
http?=?“https://pvp.qq.com/web201605/“
dirs?=?os.path.abspath(‘.‘)
if?os.path.isdir(dirs+‘/‘+‘王者榮耀‘)?:
????print(“存在王者榮耀目錄,請(qǐng)手動(dòng)刪除該目錄“)
????exit(0)
else?:os.makedirs(dirs+‘/‘+‘王者榮耀‘)
dir_name?=?re.findall(r‘
for?i?in?dir_name:
????time.sleep(1)
????r?=?requests.get(http+i)
????r.encoding=‘gbk‘
????html1=r.text
????hero?=?re.findall(r‘(.*?)
‘html1)
????print(hero)
????skin?=?re.findall(r‘‘html1)
????skill_name?=?re.findall(r‘
評(píng)論
共有 條評(píng)論