attribute_scrap: Scraping attributes from HTML elements

Description Usage Arguments Value Examples

View source: R/attribute_scrap.R

Description

This function is used to scrape attributes from HTML elements

Usage

1
attribute_scrap(link, node, attr, askRobot = FALSE)

Arguments

link

the link of the web page to scrape

node

the HTML element to consider

attr

the attribute to scrape

askRobot

logical. Should the function ask the robots.txt if we're allowed or not to scrape the web page ? Default is FALSE.

Value

a character vector.

Examples

1
2
3
4
5
6
7
# Extracting the web links within the World Bank research and publications page

link <- "https://ropensci.org/"

# scraping the class attributes' names from all the anchor

attribute_scrap(link = link, node = "a", attr = "class")

ralger documentation built on March 18, 2021, 1:06 a.m.