-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsitemap.py
34 lines (25 loc) · 885 Bytes
/
sitemap.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
import scrapy
import logging
from scrapy.contrib.spiders import Rule
from scrapy.contrib.linkextractors.sgml import SgmlLinkExtractor
from scrapy.selector import HtmlXPathSelector
from scrapy.spiders import SitemapSpider
from scrapy.item import Item, Field
class ScrapySampleItem(Item):
link = Field()
class MySpider(scrapy.Spider):
name = "xyz"
allowed_domains = ["http://kcwalldecals.com"]
start_urls = ["http://kcwalldecals.com/sitemap"]
def parse(self, response):
items = []
for href in response.css('.tree li a::attr(href)'):
full_url = response.urljoin(href.extract())
item = ScrapySampleItem()
item['link'] = full_url
items.append(item)
return self.parse_product(items)
def parse_product(self, items):
logging.info('here')
for item in items:
yield item