Skip to content

Scraper for parsing android app info from different sites

Notifications You must be signed in to change notification settings

betacraft/scraper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Scraper for parsing app information from Google Play Store

How to use?

import "github.com/betacraft/scraper"

func xyz(){
   app, err := scraper.Scrape("https://play.google.com/store/apps/details?id=com.yourpackage.name")
   if err != nil {
       //parsing failed
   }
}

App struct

type App struct {
	Name        string
	IconUrl     string
	Price       int
	Description string
	LastUpdated string
	FileSize    string

	OperatingSystem string

	VersionName string

	ScreenshotUrls []string

	Author    string
	AuthorUrl string

	Genre string

	AggregateRating string
	RatingValue     int
	RatingCount     int
	ContentRating   string

	Downloads string

	ApkDownloadUrl  string
	ApkDownloadSize string
	ApkDownloadMD5  string
}

Supported sites

  1. Google Play Store
  2. AndroidDrawer

About

Scraper for parsing android app info from different sites

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages