Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jerodsanto/app_store
A simple Ruby module to fetch app information from Apple's App Store.
https://github.com/jerodsanto/app_store
Last synced: 3 months ago
JSON representation
A simple Ruby module to fetch app information from Apple's App Store.
- Host: GitHub
- URL: https://github.com/jerodsanto/app_store
- Owner: jerodsanto
- Created: 2009-08-22T21:00:29.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2009-08-22T21:00:58.000Z (over 15 years ago)
- Last Synced: 2024-11-05T11:54:19.308Z (3 months ago)
- Language: Ruby
- Homepage:
- Size: 75.2 KB
- Stars: 22
- Watchers: 1
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome - app_store - A simple Ruby module to fetch app information from Apple's App Store. (etc)
- awesome - app_store - A simple Ruby module to fetch app information from Apple's App Store. (etc)
README
A simple Ruby module to fetch app information from Apple's App Store.
Depends on [mechanize](http://mechanize.rubyforge.org/mechanize/)
require 'app_store'
# fetch a single App if you have the item-id
my_app = AppStore.fetch_app_by_id('317468456')
my_app.class
=> App
my_app.title
=> "Stick It - iPhone Sticky Notes"
my_app.price
=> 0.99
my_app.methods - Object.methods
=> ["title", "url", "icon_url", "price", "release_date", "item_id"]
# or fetch an array of apps matching a search term
app_list = AppStore.search('notes')
app_list.class
=> Array
app_list.first.class
=> App