Golang scraper to get data from Google Play Store
This project is inspired by the google-play-scraper node.js project
go get -u github.com/nano-interactive/google-play-scraper@v0.0.1Warning
Methods other than LoadDetails are not maintained and can return wrong response or error
Retrieves the full detail of an application.
package main
import (
"fmt"
scraper "github.com/nano-interactive/google-play-scraper"
)
func main() {
appDetails := scraper.New("com.google.android.googlequicksearchbox", scraper.Options{
Country: "us",
Language: "us",
})
err := appDetails.LoadDetails()
if err != nil {
panic(err)
}
fmt.Println(appDetails)
}