get_new_stories {hackeRnews} | R Documentation |
Retrieves newest stories using Hacker News API
get_new_stories(max_items = NULL)
max_items |
Maximum number of items to retrieve. If max_items = NULL, returns all available |
Parallel api requests can be enabled by running
future::plan(future::multiprocess)
list of new stories
# get the newest story on Hacker News
newest_story <- get_new_stories(max_items = 1)
newest_story
# get all new stories on Hacker News
new_stories <- get_new_stories()
new_stories