Skip to content

nano-interactive/google-play-scraper

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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.0.1

Usage

Warning

Methods other than LoadDetails are not maintained and can return wrong response or error

Get app details

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

About

Golang scraper to get data from Google Play Store

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 100.0%