赞
踩
首先安scrapy
命令:sudo apt-get install scrapy 或者:pip install scrapy
创建scrapy项目的命令:
scrapy startproject +<项目名字>
示例:scrapy startproject myspider
生成的目录和文件结果如下:
命令:在项目路径下执行:scrapy genspider +<爬虫名字> + <允许爬取的域名>
示例(以腾讯招聘网站为例):
cd myspider
scrapy genspider tencent careers.tencent.com
生成的目录和文件结果如下:
完善spider即通过方法进行数据的提取等操作
在/myspider/myspider/spiders/tencent.py中修改内容如下:
import scrapy class TencentSpider(scrapy.Spider): # 爬虫名字 name = 'tencent' # 允许爬去范围,防止爬虫爬到别的网站 allowed_domains = ['careers.tencent.com'] # 开始爬取的url地址 start_urls = ['https://careers.tencent.com/search.html?keyword=python'] # 数据提取的方法,接受下载中间件传过来的response def parse(self, response): # scrapy的response对象可以直接进行xpath info = response.xpath('//div[4]/div/a[@class="item-link"]/text()') print(info) # 获取具体数据文本的方式如下 # 分组 info_list = response.xpath('//div//a[@class="recruit-list-link"]') for info in info_list: # 创建一个数据字典 item = {} # 利用scrapy封装好的xpath选择器定位元素,并通过extract()或extract_first()来获取结果 item['work_name'] = info.xpath('.//h4/text()').extract_first() # 岗位名称 item['work_duty'] = info.xpath('.//p[@class="recruit-text"]/text()').extract_first() # 岗位职责 print(item) yield item
注意:
4.1 对itcast爬虫进行修改完善
在爬虫parse()函数中最后添加:
yield item
使用yield原因:
注意:yield能够传递的对象只能是:BaseItem,Request,dict,None
4.2 修改pipelines.py文件
class MyspiderPipeline:
# 爬虫文件中提取数据的方法每yield一次item,就会运行一次
# 该方法为固定名称函数
def process_item(self, item, spider):
print(item)
return item
4.3 在settings.py设置开启pipeline
ITEM_PIPELINES = {
'myspider.pipelines.MyspiderPipeline': 300,
}
4.4 在settings.py设置关闭robots协议
ROBOTSTXT_OBEY = False
4.5 在settings.py设置USER_AGENT
USER_AGENT = 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'
命令:在项目目录下执行scrapy crawl +<爬虫名字>
示例:scrapy crawl tencent
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。