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.1.0Warning
Methods other than LoadDetails are not maintained and therefore currently deleted. If any additional functionality is needed, refer to original repository
Retrieves the full detail of an application.
package main
import (
"fmt"
scraper "github.com/nano-interactive/google-play-scraper"
"net/http"
)
func main() {
appDetails := scraper.New("com.google.android.googlequicksearchbox", scraper.Options{
Country: "us",
Language: "us",
}, http.DefaultClient)
err := appDetails.LoadDetails()
if err != nil {
panic(err)
}
fmt.Println(appDetails)
}