-
Notifications
You must be signed in to change notification settings - Fork 2
/
scraper.js
37 lines (35 loc) · 833 Bytes
/
scraper.js
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
const scrapeIt = require("scrape-it");
export default class Scraper {
async run() {
return scrapeIt("http://www.ksgcatering.ie/restaurants/ericsson/athlone/menu/index.php", {
Lunch: {
listItem: '.lunch',
data: {
title: {
selector: 'h2'
},
soup1:{
selector: "p",
eq: 0
},
soup2:{
selector: "p",
eq: 2
},
main1:{
selector: "p",
eq: 3
},
main2:{
selector: "p",
eq: 4
},
main3:{
selector: "p",
eq: 5
}
}
}
});
}
};