-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathartisera_gifting.py
64 lines (43 loc) · 1.72 KB
/
artisera_gifting.py
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#paginated crawl
import scrapy
import logging
from scrapy.contrib.spiders import Rule
from scrapy.contrib.linkextractors.sgml import SgmlLinkExtractor
from scrapy.selector import HtmlXPathSelector
from scrapy import Request, Spider
from scrapy.exceptions import CloseSpider
from scrapy.selector import Selector
from scrapy.item import Item, Field
URL = 'http://www.artisera.com/collections/gifting?page={page}'
class ScrapySampleItem(Item):
title = Field()
link = Field()
desc = Field()
image = Field()
price = Field()
class artiseraFurnitureSpider(scrapy.Spider):
handle_httpstatus_list = [404]
name = "artisera funrniter"
def start_requests(self):
index = 1
while (index < 2):
yield Request(URL.format(page=index))
index +=1
def parse(self, response):
for href in response.css('.product-name a::attr(href)'):
full_url = response.urljoin(href.extract())
yield scrapy.Request(full_url, callback=self.parse_product)
def parse_product(self, response):
items = []
item = ScrapySampleItem()
item['title'] = response.css('.product-name h1::text').extract_first()
item['image'] = response.css('.easyzoom a::attr(href)').extract_first()
item['desc'] = response.css('.pr_dis').extract()
item['price'] = response.css('.money::text').extract_first()
if not item['desc']:
logging.info("EMPTY RECIEVED")
item['desc'] = response.css('h1::text').extract_first()
item['link'] = response.url
items.append(item)
for item in items:
yield item