itunes
is an R package interface to the iTunes RSS Feeds
The following functions are implemented:
get_reviews
: Download reviews associated with an App, Movie or Otherget_top
: Search top n items based on iTunes downloads
The following functions are in progress:
search_itunes
: Search existing apps to get their iTunes id for reviews & ratingsget_top_movies
: Get a list of top/trending Movies on iTunes + SubCategoriesget_top_hits
: Get a list of top/trending Songs on iTunes + SubCategoriesget_top_albums
: Get a list of top/trending Albums on iTunes + SubCategoriesget_top_apps
: Get a list of top/trending Apps on iTunes + SubCategories
#install.packages("devtools")
devtools::install_github("thelostscientist/itunes")
library(itunes)
reviews.df <- get_reviews(1161476603)
top.df <- get_top(n=10)
- Currently us is only implemented country.
get_reviews
is limited top most recent 500 reviews
Inspired by: Daniel Sequeira
Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.