0.0
No release in over 3 years
Low commit activity in last 3 years
Simple Google Play store parser
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.10
~> 0.10
~> 10.0
~> 3.3
~> 0.35
~> 3.0
~> 1.22

Runtime

~> 4.0.1
 Project Readme

Build Status

PlayStoreInfo

Get details about any app in the Google Play Store. This gem uses MetaInspector to scrape the app's Play Store web page and retrieve the necessary data.

Compatible with ruby >= 2.3.0

Installation

Add this line to your application's Gemfile:

gem 'play_store_info'

And then execute:

$ bundle

Or install it yourself as:

$ gem install play_store_info

Usage

You first have to read the app details, using the store URL or directly with the ID:

app = PlayStoreInfo.read_url('https://play.google.com/store/apps/details?id=com.airbnb.android&hl=en')
app = PlayStoreInfo.read('com.airbnb.android')

Then you have some attributes that can be read easily:

app.id                  # => "com.airbnb.android"
app.name                # => "Airbnb"
app.artwork            # => "http://lh6.ggpht.com/4jnm0-_9TBUdvNtQpefYE0T33..."
app.description         # => "Make travel planning as mobile as you are..."

Development

After checking out the repo, run sh bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to debug your code.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/hugocore/play_store_info.

License

The gem is available as open source under the terms of the MIT License.