侯体宗的博客
  • 首页
  • Hyperf版
  • beego仿版
  • 人生(杂谈)
  • 技术
  • 关于我
  • 更多分类
    • 文件下载
    • 文字修仙
    • 中国象棋ai
    • 群聊
    • 九宫格抽奖
    • 拼图
    • 消消乐
    • 相册

Python使用scrapy爬取阳光热线问政平台过程解析

Python  /  管理员 发布于 7年前   209

目的:爬取阳光热线问政平台问题反映每个帖子里面的标题、内容、编号和帖子url

CrawlSpider版流程如下:

创建爬虫项目dongguang

scrapy startproject dongguang

设置items.py文件

# -*- coding: utf-8 -*-import scrapyclass NewdongguanItem(scrapy.Item):  # define the fields for your item here like:  # name = scrapy.Field()  # pass  # 每页的帖子链接  url = scrapy.Field()  # 帖子标题  title = scrapy.Field()  # 帖子编号  number = scrapy.Field()  # 帖子内容  content = scrapy.Field()

在spiders目录里面,创建并编写爬虫文件sun.py

# -*- coding: utf-8 -*-import scrapyfrom scrapy.linkextractors import LinkExtractorfrom scrapy.spiders import CrawlSpider, Rulefrom dongguan.items import DongguanItemclass SunSpider(CrawlSpider):  name = 'dg'  allowed_domains = ['wz.sun0769.com']  start_urls = ['http://wz.sun0769.com/html/top/report.shtml']  # rules是Rule的集合,每个rule规则同时执行。另外,如果发现web服务器有反爬虫机制如返回一个假的url,则可以使用Rule里面的参数process_links调用一个自编函数来处理url后返回一个真的url  rules = (    # 每个url都有一个独一无二的指纹,每个爬虫项目都有一个去重队列    # Rule里面没有回调函数,则默认对匹配的链接要跟进,就是对匹配的链接在进行请求获取响应后对响应里面匹配的链接继续跟进,只不过没有回调函数对响应数据进行处理    # Rule(LinkExtractor(allow="page="))如果设置为follow=False,则不会跟进,只显示当前页面匹配的链接。如设置为follow=True,则会对每个匹配的链接发送请求获取响应进而从每个响应里面再次匹配跟进,直至没有。python递归深度默认为不超过1000,否则会报异常    Rule(LinkExtractor(allow="page=")),    Rule(LinkExtractor(allow='http://wz.sun0769.com/html/question/\d+/\d+.shtml'),callback='parse_item')  )  def parse_item(self, response):    print(response.url)    item = DongguanItem()    item['url'] = response.url    item['title'] = response.xpath('//div[@class="pagecenter p3"]//strong/text()').extract()[0]    item['number'] = response.xpath('//div[@class="pagecenter p3"]//strong/text()').extract()[0].split(' ')[-1].split(':')[-1]     # 对帖子里面有图片的处理,发现没有图片时则没有class="contentext"的div标签,以此作为标准获取帖子内容    if len(response.xpath('//div[@class="contentext"]')) == 0:      item['content'] = ''.join(response.xpath('//div[@class="c1 text14_2"]/text()').extract())    else:      item['content'] = ''.join(response.xpath('//div[@class="contentext"]/text()').extract())    yield item

编写管道pipelines.py文件

# -*- coding: utf-8 -*-import jsonclass DongguanPipeline(object):  def __init__(self):    self.file = open('dongguan.json','w')  def process_item(self, item, spider):    content = json.dumps(dict(item),ensure_ascii=False).encode('utf-8') + '\n'    self.file.write(content)    return item  def closespider(self):    self.file.close()

编写settings.py文件

# -*- coding: utf-8 -*-BOT_NAME = 'dongguan'SPIDER_MODULES = ['dongguan.spiders']NEWSPIDER_MODULE = 'dongguan.spiders'# log日志文件默认保存在当前目录,下面为日志级别,当大于或等于INFO时将被保存LOG_FILE = 'dongguan.log'LOG_LEVEL = 'INFO'# 爬取深度设置# DEPTH_LIMIT = 1# Crawl responsibly by identifying yourself (and your website) on the user-agent#USER_AGENT = 'dongguan (+http://www.yourdomain.com)'# Obey robots.txt rules# ROBOTSTXT_OBEY = True# Configure maximum concurrent requests performed by Scrapy (default: 16)#CONCURRENT_REQUESTS = 32# Configure item pipelines# See https://doc.scrapy.org/en/latest/topics/item-pipeline.htmlITEM_PIPELINES = {  'dongguan.pipelines.DongguanPipeline': 300,}

测试运行爬虫,终端执行命令(只要在项目目录内即可)

scrapy crawl dg

Spider版流程如下:

创建爬虫项目newdongguang

scrapy startproject newdongguan

设置items.py文件

# -*- coding: utf-8 -*-  import scrapy  class NewdongguanItem(scrapy.Item):    # 每页的帖子链接    url = scrapy.Field()    # 帖子标题    title = scrapy.Field()    # 帖子编号    number = scrapy.Field()    # 帖子内容    content = scrapy.Field()

在spiders目录里面,创建并编写爬虫文件newsun.py

# -*- coding: utf-8 -*-import scrapyfrom newdongguan.items import NewdongguanItemclass NewsunSpider(scrapy.Spider):  name = 'ndg'  # 设置爬取的域名范围,可写可不写,不写则表示爬取时候不限域名,结果有可能会导致爬虫失控。  allowed_domains = ['wz.sun0769.com']  offset = 0  url = 'http://wz.sun0769.com/index.php/question/report?page=' + str(offset)  start_urls = [url]  def parse(self, response):    link_list = response.xpath("//a[@class='news14']/@href").extract()    for each in link_list:      # 对每页的帖子发送请求,获取帖子内容里面指定数据返回给管道文件      yield scrapy.Request(each,callback=self.deal_link)    self.offset += 30    if self.offset <= 124260:      url = 'http://wz.sun0769.com/index.php/question/report?page=' + str(self.offset)      # 对指定分页发送请求,响应交给parse函数处理      yield scrapy.Request(url,callback=self.parse)  # 从每个分页帖子内容获取数据,返回给管道  def deal_link(self,response):    item = NewdongguanItem()    item['url'] = response.url    item['title'] = response.xpath("//div[@class='pagecenter p3']//strong[@class='tgray14']/text()").extract()[0]    item['number'] = response.xpath("//div[@class='pagecenter p3']//strong[@class='tgray14']/text()").extract()[0].split(' ')[-1].split(':')[-1]    if len(response.xpath("//div[@class='contentext']")) == 0:      item['content'] = ''.join(response.xpath("//div[@class='c1 text14_2']/text()").extract())    else:      item['content'] = ''.join(response.xpath("//div[@class='contentext']/text()").extract())    yield item

编写管道pipelines.py文件

# -*- coding: utf-8 -*-import codecsimport jsonclass NewdongguanPipeline(object):  def __init__(self):    # 使用codecs写文件,直接设置文件内容编码格式,省去每次都要对内容进行编码    self.file = codecs.open('newdongguan.json','w',encoding = 'utf-8')    # 以前文件写法    # self.file = open('newdongguan.json','w')  def process_item(self, item, spider):    print(item['title'])    content = json.dumps(dict(item),ensure_ascii=False) + '\n'    # 以前文件写法    # self.file.write(content.encode('utf-8'))    self.file.write(content)    return item  def close_spider(self):    self.file.close()

编写settings.py文件

# -*- coding: utf-8 -*-BOT_NAME = 'newdongguan'SPIDER_MODULES = ['newdongguan.spiders']NEWSPIDER_MODULE = 'newdongguan.spiders'# Crawl responsibly by identifying yourself (and your website) on the user-agent#USER_AGENT = 'newdongguan (+http://www.yourdomain.com)'USER_AGENT = 'User-Agent:Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0;'# Configure item pipelines# See https://doc.scrapy.org/en/latest/topics/item-pipeline.htmlITEM_PIPELINES = {  'newdongguan.pipelines.NewdongguanPipeline': 300,}

测试运行爬虫,终端执行命

srapy crawl ndg

备注:markdown语法关于代码块缩进问题,可通过tab键来解决。而简单文本则可以通过回车键来解决,如Spider版流程如下:和1. 创建爬虫项目newdongguang

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。


  • 上一条:
    详解用python计算阶乘的几种方法
    下一条:
    用Python抢火车票的简单小程序实现解析
  • 昵称:

    邮箱:

    0条评论 (评论内容有缓存机制,请悉知!)
    最新最热
    • 分类目录
    • 人生(杂谈)
    • 技术
    • linux
    • Java
    • php
    • 框架(架构)
    • 前端
    • ThinkPHP
    • 数据库
    • 微信(小程序)
    • Laravel
    • Redis
    • Docker
    • Go
    • swoole
    • Windows
    • Python
    • 苹果(mac/ios)
    • 相关文章
    • 在python语言中Flask框架的学习及简单功能示例(0个评论)
    • 在Python语言中实现GUI全屏倒计时代码示例(0个评论)
    • Python + zipfile库实现zip文件解压自动化脚本示例(0个评论)
    • python爬虫BeautifulSoup快速抓取网站图片(1个评论)
    • vscode 配置 python3开发环境的方法(0个评论)
    • 近期文章
    • 在go+gin中使用"github.com/skip2/go-qrcode"实现url转二维码功能(0个评论)
    • 在go语言中使用api.geonames.org接口实现根据国际邮政编码获取地址信息功能(1个评论)
    • 在go语言中使用github.com/signintech/gopdf实现生成pdf分页文件功能(0个评论)
    • gmail发邮件报错:534 5.7.9 Application-specific password required...解决方案(0个评论)
    • 欧盟关于强迫劳动的规定的官方举报渠道及官方举报网站(0个评论)
    • 在go语言中使用github.com/signintech/gopdf实现生成pdf文件功能(0个评论)
    • Laravel从Accel获得5700万美元A轮融资(0个评论)
    • 在go + gin中gorm实现指定搜索/区间搜索分页列表功能接口实例(0个评论)
    • 在go语言中实现IP/CIDR的ip和netmask互转及IP段形式互转及ip是否存在IP/CIDR(0个评论)
    • PHP 8.4 Alpha 1现已发布!(0个评论)
    • 近期评论
    • 122 在

      学历:一种延缓就业设计,生活需求下的权衡之选中评论 工作几年后,报名考研了,到现在还没认真学习备考,迷茫中。作为一名北漂互联网打工人..
    • 123 在

      Clash for Windows作者删库跑路了,github已404中评论 按理说只要你在国内,所有的流量进出都在监控范围内,不管你怎么隐藏也没用,想搞你分..
    • 原梓番博客 在

      在Laravel框架中使用模型Model分表最简单的方法中评论 好久好久都没看友情链接申请了,今天刚看,已经添加。..
    • 博主 在

      佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 @1111老铁这个不行了,可以看看近期评论的其他文章..
    • 1111 在

      佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 网站不能打开,博主百忙中能否发个APP下载链接,佛跳墙或极光..
    • 2016-10
    • 2016-11
    • 2018-04
    • 2020-03
    • 2020-04
    • 2020-05
    • 2020-06
    • 2022-01
    • 2023-07
    • 2023-10
    Top

    Copyright·© 2019 侯体宗版权所有· 粤ICP备20027696号 PHP交流群

    侯体宗的博客