Scraper for parsing app information from Google Play Store
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
}
}
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
}
- Google Play Store
- AndroidDrawer