-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpricegrabber.com.json
28 lines (28 loc) · 1.59 KB
/
pricegrabber.com.json
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
{
"name":"crawl www.pricegrabber.com deals",
"model": "com.fp.ecommerce.model.Deal",
"urls":[
"http://www.pricegrabber.com/computers/desktop/p-9/ !! category= Desktop",
"http://www.pricegrabber.com/computers/desktop/p-13/ !! category= Laptop",
"http://www.pricegrabber.com/computers/monitors/p-37/ !! category= Monitor",
"http://www.pricegrabber.com/computers/keyboards/p-50/ !! category= Keyboards",
"http://www.pricegrabber.com/computers/monitor-accessories/p-39/ !! category= monitors-accessories",
"http://www.pricegrabber.com/computers/printers/p-21/ !! category= printers",
"http://www.pricegrabber.com/computers/scanners/p-23/ !! category= scanners",
"http://www.pricegrabber.com/electronics/plasma-lcd-televisions/p-197/ !! category= plasma-lcd-televisions",
"http://www.pricegrabber.com/cameras/digital/p-48/ !! category= cameras-digital",
"http://www.pricegrabber.com/computers/speakers/p-77/ !! category= speakers",
"http://www.pricegrabber.com/computers/mice-trackballs/p-51/ !! category= mice-trackballs"
],
"list_xpath":"//div[contains(@id,'product_results')]//div[contains(@class,'product')]",
"fields":{
"siteName": "##www.pricegrabber.com",
"title": "//div[contains(@class,'details')]//h3",
"category": "$$category",
"imageUrl": "//div[contains(@class,'prd_img')]//img/@src",
"dealPrice": "//div[contains(@class,'ctaPriceContainer')]//a !! ([0-9]*\\.?[0-9]+)",
"merchant": "//div[contains(@class,'review_merchant_container')]//a/@title",
"detailUrl": "//div[contains(@class,'moreLinks')]//a/@href",
"redirUrl":"//div[contains(@class,'ctaGrid')]//a/@href"
}
}