aboutsummaryrefslogtreecommitdiff
path: root/crawler/neodarznet/spiders/scrape.py
blob: bd970679a590ecf9d9612b6ad1773c50eac579fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# -*- coding: utf-8 -*-
import scrapy
from scrapy.spiders import CrawlSpider, Rule
from scrapy.linkextractors import LinkExtractor
from scrapy import Selector

import datetime

class NeodarznetSpider(CrawlSpider):
    name = "neodarznet"
    custom_settings = {
        'ITEM_PIPELINES': {
            'crawler.neodarznet.pipelines.NeodarznetPipeline': 0
        }
    }
    allow_domains = ['neodarz.net']
    start_urls = [
        'https://neodarz.net/',
    ]

    rules = [
            Rule(
                LinkExtractor(
                    canonicalize=True,
                    unique=True,
                    allow_domains="neodarz.net",
                    deny=".*\.neodarz\.net.*"
                ),
                follow=True,
                callback="parse_items"
            )
    ]


    def start_requests(self):
        for url in self.start_urls:
            yield scrapy.Request(url, callback=self.parse, dont_filter=True)

    def parse_items(self, response):
        sel = Selector(response)
        yield {
                'url': response.url,
                'title': response.css('title::text').extract_first(),
                'content': ''.join(sel.select("//div[@class='bodya']//text()").extract()).strip(),
                'content_length': len(response.body),
                'date_updated': datetime.datetime.now()
        }