get_articles_from_issue {ojsr} | R Documentation |
Scraping articles URLs from the ToC of OJS issues
Description
Takes a vector of OJS (issue) URLs and scrapes the links to articles from the issues table of content
Usage
get_articles_from_issue(input_url, verbose = FALSE)
Arguments
input_url |
Character vector. |
verbose |
Logical. |
Value
A long-format dataframe with the url you provided (input_url) and the articles url scrapped (output_url)
Examples
issues <- c(
'https://revistas.ucn.cl/index.php/saludysociedad/issue/view/65',
'https://publicaciones.sociales.uba.ar/index.php/psicologiasocial/issue/view/31'
)
articles <- ojsr::get_articles_from_issue(input_url = issues, verbose = TRUE)
[Package ojsr version 0.1.2 Index]