Skip to content

airamrguez/go-playstore

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Google PlayStore

A package to query the Google Play Store.

build status NOTE: This project is a work in progress.

Installation

This project requires Go1.1+.

$ go get github.com/airamrguez/go-playstore

Examples

There are mainly two actions lookups and searchs.

Lookup example

This example shows how to fetch data for the Candy Crush Saga in english, spanish and french.

import (
    "encoding/json"
    "fmt"
    "net/http"
    "net/url"
    "github.com/airamrguez/go-playstore"
)

func main() {
    // For an app that doesn't use Google App Engine you can directly
    // use net/http package.
    httpGet := func(url *url.URL) (*http.Response, error) {
        return http.Get(url)
    }
    // English content is always fetched.
    app, err := playstore.MultiLookUp(httpGet, "com.king.candycrushsaga", ["es", "fr"])
    if err != nil {
        panic(err)
    }
    json, err := json.Marshal(app)
    if err != nil {
        panic(err)
    }
    fmt.Println(string(json))
}

Search example

Search all applications that match a term. In this case we search for all applications matching candy.

import (
    "encoding/json"
    "fmt"
    "net/http"
    "net/url"
    "github.com/airamrguez/go-playstore"
)

func main() {
    httpGet := func(url *url.URL) (*http.Response, error) {
        fmt.Println(url.String())
        return http.Get(url.String())
    }
    apps, err := playstore.Search(httpGet, "candy", 40, "en")
    if err != nil {
        panic(err)
    }
    json, err := json.Marshal(apps)
    if err != nil {
        panic(err)
    }
    fmt.Println(string(json))
}

Changelog

  • Look up with multilingual support.
  • Search a term.

TODO

  • Add tests
  • Add leadership

About

A package to query the Google Play Store

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages