galaxy-store-scraper
v0.1.1
Published
Samsung Galaxy Store Scrapper for fetching all useful data from app page
Maintainers
Readme
galaxy-store-scraper
Node.js module to scrape application data from the Galaxy store.
Related Projects
- amazon-app-store-scraper: a scraper with a similar interface for the Amazon App Store.
- roku-store-scraper: a scraper with a similar interface for the Roku App Store.
- samsung-app-store-scraper: a scraper with a similar interface for the Samsung App Store.
Inspired by projects:
- app-store-scraper: a scraper with a similar interface for the iTunes app store.
- google-play-scraper: a scraper with a similar interface for the Google Play.
⚠️ Notes
This project is under development, thus a lot of things(most) are not implemented yet.
Feel free to contribute!
The API contract of this module adhered to the contract of the projects listed above.
Installation
npm install galaxy-store-scraperUsage
Available methods:
- app: Retrieves the full detail of an application.
app
Retrieves the full detail of an application. Options:
appId: the package id of the application (the id route on the url).
Example:
import galaxyStoreScraper from "galaxy-store-scraper";
galaxyStoreScraper.app({appId: 'com.vizorapps.klondike.am'})
.then(console.log, console.log);Results:
{
id: 'com.vizorapps.klondike.am',
title: 'Klondike Adventures: Ферма',
genre: null
}FYI, usually the genres of the app is not returned by the Galaxy API, which is weird, so always will be null so far...
If app does not exist the following value will be resolved:
null