python3 爬虫内涵段子

Posted dahua7758521

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python3 爬虫内涵段子相关的知识,希望对你有一定的参考价值。

import re
from urllib import request
class Sprder:
def __init__(self):
self.page=1
self.switch=True
def loadPage(self):
""""
下载页面
"""
url="http://www.neihan8.com/article/list_5_"+str(self.page)+".html"
user_agent = ‘Mozilla/5.0 (compatible; MSIE 9.0; Windows NT6.1; Trident / 5.0‘
headers = {‘User-Agent‘: user_agent}
request1=request.Request(url,headers=headers)
response=request.urlopen(request1)
html=response.read().decode("gbk")
pattern=re.compile(r‘<div\sclass="f18 mb20">(.*?)</div>‘, re.S)
content_list=pattern.findall(html)

self.dealPage(content_list)

def dealPage(self,content_list):
"""
处理每页段子
"""
for item in content_list:
item=item.replace("<p>","").replace("</p>","").replace("<br>","").replace("<br />","").replace("&ldquo;","")
self.writePage(item)

def writePage(self,item):
"""
把段子逐个写入文件
"""
with open("段子.txt","a") as f:
f.write(item)
def startWork(self):
"""
控制爬虫运行

"""
while self.switch:
self.loadPage()
command=str(input("如果继续按回车(退出输入quit)"))
if command=="quit":
self.switch=False

self.page+=1
if __name__ == ‘__main__‘:
duanziSpider=Sprder()
# duanziSpider.loadPage()
duanziSpider.startWork()
















以上是关于python3 爬虫内涵段子的主要内容,如果未能解决你的问题,请参考以下文章

Python爬取内涵段子里的段子

内涵段子——脑筋急转弯——spider

Python爬虫_案例:使用正则表达式的爬虫

Python爬虫_案例:使用正则表达式的爬虫

python3制作捧腹网段子页爬虫

非结构化数据与结构化数据提取---- 案例:使用正则表达式的爬虫