musicplaystoreprices
v1.0.2
Published
A library used to get Google Play Store prices for music
Maintainers
Readme
MusicPlayStorePrices
A library to get play store prices for music as returned by their webpage
This project is not endorsed by of affiliated with Google in any way.
Usage
Download via npm
npm install musicplaystorepricesRequire Library
var playSearch = require('musicplaystoreprices');Search For Song
Using Node JS callback style:
var options = {
"artist": "Tremonti",
"song": "Cauterize"
}
playSearch.getSong(options, function(err, data){
// returns array of songs
});
Search For Album
Using Node JS callback style:
var options = {
"artist": "Tremonti",
"album": "Cauterize"
}
playSearch.getAlbum(options, function(err, data){
// returns array of albums
});
