好久没写代码了,快毕业了天天闲着玩游戏刷视频,最近刷七原罪这部动漫的时候,感觉动漫更新太慢,就去追漫画,于是为了方便观看避免广告的干扰,就写了个小爬虫,顺便练习练习python…
由于目前七原罪漫画资源好像风之动漫可以看到,所以就针对其中的漫画网页写了相应的正则(写的有点low),其中fzdm中的56是七原罪这漫画的代码,downpart为下载。
2018.9.4更新———支持多线程下载———-
代码:
import requests
import re
import os
import threading
import time
class fzdm:
addr="https://manhua.fzdm.com/"
def __init__(self,mhtype):
if isinstance(mhtype,str):
pass
else:
mhtype=str(mhtype)
self.m_thread=[]
self.type=mhtype
self.mhaddr=self.addr+mhtype
self.startpart="001"
r=requests.get(self.mhaddr)
pattern='href="(\d+)/"'
result=re.search(pattern,r.content.decode('utf-8'))
if result:
self.endpart=result.group(1)
def downloadPart(self,index):
if isinstance(index,str):
pass
else:
index=str(index)
start=0
url=self.mhaddr+"/"+index+"/"+"index_"+str(start)+".html"
while self.downloadImage(url) == False:
start+=1
url=self.mhaddr+"/"+index+"/"+"index_"+str(start)+".html"
def downloadPart_s_e(self,s="001",e=0):
if e == 0:
e=self.endpart
if isinstance(s,str) == False:
s=str(s)
if isinstance(e,str) == False:
e=str(e)
index=[]
while int(s)<=int(e):
tmp_thread=threading.Thread(target=fzdm.downloadPart,args=(self,s,))
#self.downloadPart(s)
tmp_thread.start()
self.m_thread.append(tmp_thread)
s=str(int(s)+1)
for i in self.m_thread:
i.join()
def downloadImage(self,url):
r=requests.get(url)
isendpattern='最后一页了'
result_isend=re.search(isendpattern,r.content.decode('utf-8'))
imgpattern='var mhurl="(\d+/\d+/\d+\.jpg)";'
result_img=re.search(imgpattern,r.content.decode('utf-8'))
indexpattern='(七原罪\d+话)'
result_mh=re.search(indexpattern,r.content.decode('utf-8'))
time.sleep(5)
if result_img:
mhname=result_mh.group(1)
img=result_img.group(1)
imgurl="http://p1.xiaoshidi.net/"+img
r=requests.get(imgurl)
time.sleep(5)
if os.path.exists("download/"+mhname):
pass
else:
os.mkdir("download/"+mhname)
filename=img.replace('/','.')
f=open("download/"+mhname+"/"+filename,"wb")
f.write(r.content)
f.close()
print('下载图片完成~')
if result_isend:
return True
else:
return False
a=fzdm("56")
a.downloadPart_s_e(277,278)
同时下载多个章节,但是这个线程开得有点随便,应该设置一个缓冲区,限制开的线程数量,开太多线程开销太大