get_galleys_from_article {ojsr} | R Documentation |
Scraping galleys URLs from OJS articles
Description
Takes a vector of OJS URLs and scrapes all the galleys URLs from the article view
Usage
get_galleys_from_article(input_url, verbose = FALSE)
Arguments
input_url |
Character vector. |
verbose |
Logical. |
Value
A long-format dataframe with the url you provided (input_url), the articles url scrapped (output_url), the format of the galley (format), and the url that forces download of the galley (download_url)
Examples
articles <- c(
'https://revistapsicologia.uchile.cl/index.php/RDP/article/view/55657',
'https://dspace.palermo.edu/ojs/index.php/psicodebate/article/view/516/311'
)
galleys <- ojsr::get_galleys_from_article(input_url = articles,verbose = TRUE)
[Package ojsr version 0.1.2 Index]