Skip to content

nano-interactive/google-play-scraper

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

137 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

google-play-scraper

GoDoc Go Report Card Coverage Status

Golang scraper to get data from Google Play Store

This project is inspired by the google-play-scraper node.js project

Installation

go get -u github.com/nano-interactive/google-play-scraper@v0.1.0

Usage

Warning

Methods other than LoadDetails are not maintained and therefore currently deleted. If any additional functionality is needed, refer to original repository

Get app details

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)
}

About

Golang scraper to get data from Google Play Store

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 100.0%