What is Android Market Ruby API ??
Android Market API is an open source Android Market Ruby Library created by Bearstouch Software for parsing Android Market information.
Whit this API you can get all information supplied by Android Market and analise top selling apps ,free and paid, for a category or the overall ranking .
Source Code on GitHub
https://github.com/bearstouch/android_market_api
Install Instructions
Install it with RubyGems
1 | gem install android_market_api |
or add this to your Gemfile if you use Bundler:
1 gem "android_market_api"
Getting started
Parsing an application on Android Market
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | require 'rubygems' require 'android_market_api' app=AndroidMarketApplication.new('com.bearstouch.smsscheduler') # Getting Application Name puts app.name # Getting Application Current Version puts app.current_version # Getting Application Price puts app.price # Getting Ratting Value puts app.ratting_value # Getting Nr of Votes puts app.ratting_count # Getting Last Update datetime puts app.updated # Getting SDK Required puts app.sdk_required # Getting Download category puts app.downloads # Getting Application Size puts app.size # Getting Content Ratting puts app.contentRating # Getting Application description puts app.description # Getting Developer Name puts app.developer_name # Getting Icon URL puts app.icon # Getting Screenshot URLs Array puts app.screenshots # Getting Last Updates Array puts app.update_text |
Full Documentation
http://rubydoc.info/gems/android_market_api/0.3.2/frames
WIKI
https://github.com/bearstouch/android_market_api/wiki
Contributions are welcome ! The project is mainly missing documentation and examples…
Stay in touch with us for getting updated info about this API.
Enjoy
Bearstouch Software





