python爬虫框架scrapy初试

Posted

tags:

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

将该导航网站搜索出结果的页面http://www.dmoz.org/Computers/Programming/Languages/Python/Books/里面标题,及标题的超链接和描述爬下来。

技术分享

 

 

使用scrapy抓取一个网站一共需要四个步骤。

---创建一个scrapy项目

---定义item容器

---编写爬虫

---储存内容

 

1.新建一个项目

scrapy startproject demoscrapy

技术分享

2.定义item容器(定义要爬取的内容)

技术分享

3.编写爬虫(这里以官网的教程为例子)

技术分享

 

import scrapyclass Dmos_spider(scrapy.Spider):
    name = dmoz‘        #爬虫的名字
    allowed_domains = [dmoz.org]        #爬虫允许域名范围
    start_urls = [
        http://www.dmoz.org/Computers/Programming/Languages/Python/Books/,        #爬取的页面
        http://www.dmoz.org/Computers/Programming/Languages/Python/Resources/
        ]

 

4.储存内容

 

 

import scrapy
from demoscrapy.items import DemoscrapyItem
class Dmos_spider(scrapy.Spider):
    name = dmoz
    allowed_domains = [dmoz.org]
    start_urls = [
        http://www.dmoz.org/Computers/Programming/Languages/Python/Books/,
        http://www.dmoz.org/Computers/Programming/Languages/Python/Resources/
        ]
    def parse(self,response):    #处理爬去结果
        sel = scrapy.selector.Selector(response)  
        items = []
        sites = sel.xpath(//*[@id="site-list-content"]/div/div[3])    #通过xpath处理页面节点
        for site in sites:
            item = DemoscrapyItem()

            item[title] = site.xpath(a/div/text()).extract()
            item[link] = site.xpath(a/@href).extract()
            item[desc] = site.xpath(div/text()).extract()
            items.append(item)
        return  items

 

 

 

scrapy crawl dmoz -o items.json -t json 

-o 输出文件 -t 以json格式储存

技术分享

 

注*在存储的时候,要通过xpath抓取想要的数据。

google浏览器有xpath插件可以安装下。

更详细的xpath教程

http://www.w3school.com.cn/xpath/index.asp

 


以上是关于python爬虫框架scrapy初试的主要内容,如果未能解决你的问题,请参考以下文章

scrapy按顺序启动多个爬虫代码片段(python3)

scrapy主动退出爬虫的代码片段(python3)

scrapy爬虫-1-初试页面抓取

Python之Scrapy安装

Python编程基础之(五)Scrapy爬虫框架

走近代码之Python--爬虫框架Scrapy