get_articles_from_issue: Scraping articles URLs from the ToC of OJS issues

Description Usage Arguments Value Examples

Description

Takes a vector of OJS (issue) URLs and scrapes the links to articles from the issues table of content

Usage

1
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

1
2
3
4
5
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)

ojsr documentation built on Oct. 23, 2020, 5:20 p.m.