top of page

Asin Movie List ((new)) May 2026

return(df)

library(rvest) get_movie_info <- function(asins) df <- data.frame() for (asin in asins) url <- paste0("https://www.amazon.com/dp/", asin) page <- read_html(url) title <- page %>% html_node("#productTitle") %>% html_text(trim=TRUE) price <- page %>% html_node(".a-price-whole") %>% html_text() df <- rbind(df, data.frame(ASIN=asin, Title=title, Price=price)) asin movie list

bottom of page