playstore-comments-to-csv
v1.0.5
Published
play store comments scraper
Downloads
4
Readme
Install
npm install playstore-comments-to-csv
Description
- all comments will be collected from app store and generate
csv
files. - Three types of collection files.
- HELPFULNESS
- RATING
- NEWEST
Usage
const {
collectPlaystoreComments,
generateCommentsJSON,
} = require("playstore-comments-to-csv");
// arg1 => name of directory which will contain csv files
// arg2 => app bundle id
// arg3 => number of comments upto 3000
collectPlaystoreComments("minecraft", "com.mojang.minecraftpe", 3000);
// arg1 => bundle id
// arg2 => number of comments upto 3000
// arg3 => sort, HELPFULNESS | RATING | NEWEST
const helpfulComments = await generateCommentsJSON(
"com.mojang.minecraftpe",
3000,
"HELPFULNESS"
);
const ratingsComments = await generateCommentsJSON(
"com.mojang.minecraftpe",
3000,
"RATING"
);
const newestComments = await generateCommentsJSON(
"com.mojang.minecraftpe",
3000,
"NEWEST"
);