-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.js
59 lines (53 loc) · 1.81 KB
/
app.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import searchGoogleMaps from "./scrapper.js";
import ExcelJS from "exceljs";
import { program } from 'commander';
program
.command('search')
.description('Fetch businesses from Google Maps')
.option('-q, --query <query>', 'Search query')
.action((options) => {
const { query } = options;
if (!query) {
console.error('Please provide a search query using -q or --query.');
process.exit(1);
}
searchGoogleMaps(query)
.then((businesses) => {
saveToExcel(businesses , query);
})
.catch((error) => {
console.error("Error:", error.message);
});
});
program.parse(process.argv);
// Function to save data to Excel
function saveToExcel(businesses, query) {
const workbook = new ExcelJS.Workbook();
const worksheet = workbook.addWorksheet("Businesses");
// Define columns
worksheet.columns = [
{ header: "Place ID", key: "placeId" },
{ header: "Store Name", key: "storeName" },
{ header: "Address", key: "address" },
{ header: "Category", key: "category" },
{ header: "Phone", key: "phone" },
{ header: "Google URL", key: "googleUrl" },
{ header: "Business Website", key: "bizWebsite" },
{ header: "Rating Text", key: "ratingText" },
{ header: "Stars", key: "stars" },
{ header: "Number of Reviews", key: "numberOfReviews" },
];
// Add data to the worksheet
businesses.forEach((business) => {
worksheet.addRow(business);
});
// Save the workbook to a file
const fileName = `./data/${Date.now()}-${query}.xlsx`;
workbook.xlsx.writeFile(fileName)
.then(() => {
console.log(`Businesses saved to ${fileName}`);
})
.catch((error) => {
console.error("Error saving to Excel:", error.message);
});
}