--- title: "Web scraping 101" output: rmarkdown::html_vignette vignette: > %\VignetteIndexEntry{Web scraping 101} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} --- ```{r, echo=FALSE} knitr::opts_chunk$set(comment = "#>", collapse = TRUE) ``` This vignette introduces you to the basics of web scraping with rvest. You'll first learn the basics of HTML and how to use CSS selectors to refer to specific elements, then you'll learn how to use rvest functions to get data out of HTML and into R. ```{r} library(rvest) ``` ## HTML basics HTML stands for "HyperText Markup Language" and looks like this: ``` {.html} Page title

A heading

Some text & some bold text.

``` HTML has a hierarchical structure formed by **elements** which consist of a start tag (e.g. ``), optional **attributes** (`id='first'`), an end tag[^1] (like ``), and **contents** (everything in between the start and end tag). [^1]: A number of tags (including `

` and `

  • )` don't require end tags, but I think it's best to include them because it makes seeing the structure of the HTML a little easier. Since `<` and `>` are used for start and end tags, you can't write them directly. Instead you have to use the HTML **escapes** `>` (greater than) and `<` (less than). And since those escapes use `&`, if you want a literal ampersand you have to escape it as `&`. There are a wide range of possible HTML escapes but you don't need to worry about them too much because rvest automatically handles them for you. ### Elements All up, there are over 100 HTML elements. Some of the most important are: - Every HTML page must be in an `` element, and it must have two children: ``, which contains document metadata like the page title, and ``, which contains the content you see in the browser. - Block tags like `

    ` (heading 1), `

    ` (paragraph), and `

      ` (ordered list) form the overall structure of the page. - Inline tags like `` (bold), `` (italics), and `` (links) formats text inside block tags. If you encounter a tag that you've never seen before, you can find out what it does with a little googling. I recommend the [MDN Web Docs](https://developer.mozilla.org/en-US/docs/Web/HTML) which are produced by Mozilla, the company that makes the Firefox web browser. ### Contents Most elements can have content in between their start and end tags. This content can either be text or more elements. For example, the following HTML contains paragraph of text, with one word in bold. ```{=html}

      Hi! My name is Hadley.

      ``` The **children** of a node refers only to elements, so the `

      ` element above has one child, the `` element. The `` element has no children, but it does have contents (the text "name"). Some elements, like `` can't have children. These elements depend solely on attributes for their behavior. ### Attributes Tags can have named **attributes** which look like `name1='value1' name2='value2'`. Two of the most important attributes are `id` and `class`, which are used in conjunction with CSS (Cascading Style Sheets) to control the visual appearance of the page. These are often useful when scraping data off a page. ## Reading HTML with rvest You'll usually start the scraping process with `read_html()`. This returns a `xml_document`[^2] object which you'll then manipulate using rvest functions: [^2]: This class comes from the [xml2](https://xml2.r-lib.org) package. xml2 is a low-level package that rvest builds on top of. ```{r} html <- read_html("http://rvest.tidyverse.org/") class(html) ``` For examples and experimentation, rvest also includes a function that lets you create an `xml_document` from literal HTML: ```{r} html <- minimal_html("

      This is a paragraph

      • This is a bulleted list
      ") html ``` Regardless of how you get the HTML, you'll need some way to identify the elements that contain the data you care about. rvest provides two options: CSS selectors and XPath expressions. Here I'll focus on CSS selectors because they're simpler but still sufficiently powerful for most scraping tasks. ## CSS selectors CSS is short for cascading style sheets, and is a tool for defining the visual styling of HTML documents. CSS includes a miniature language for selecting elements on a page called **CSS selectors**. CSS selectors define patterns for locating HTML elements, and are useful for scraping because they provide a concise way of describing which elements you want to extract. CSS selectors can be quite complex, but fortunately you only need the simplest for rvest, because you can also write R code for more complicated situations. The four most important selectors are: - `p`: selects all `

      ` elements. - `.title`: selects all elements with `class` "title". - `p.special`: selects all `

      ` elements with `class` "special". - `#title`: selects the element with the `id` attribute that equals "title". Id attributes must be unique within a document, so this will only ever select a single element. If you want to learn more CSS selectors I recommend starting with the fun [CSS dinner](https://flukeout.github.io/) tutorial and then referring to the [MDN web docs](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Selectors). Lets try out the most important selectors with a simple example: ```{r} html <- minimal_html("

      This is a heading

      This is a paragraph

      This is an important paragraph

      ") ``` In rvest you can extract a single element with `html_element()` or all matching elements with `html_elements()`. Both functions take a document[^3] and a css selector: [^3]: Or another element, more on that shortly. ```{r} html %>% html_element("h1") html %>% html_elements("p") html %>% html_elements(".important") html %>% html_elements("#first") ``` Selectors can also be combined in various ways using **combinators**. For example,The most important combinator is " ", the **descendant** combination, because `p a` selects all `
      ` elements that are a child of a `

      ` element. If you don't know exactly what selector you need, I highly recommend using [SelectorGadget](https://rvest.tidyverse.org/articles/selectorgadget.html), which lets you automatically generate the selector you need by supplying positive and negative examples in the browser. ## Extracting data Now that you've got the elements you care about, you'll need to get data out of them. You'll usually get the data from either the text contents or an attribute. But, sometimes (if you're lucky!), the data you need will be in an HTML table. ### Text Use `html_text2()` to extract the plain text contents of an HTML element: ```{r} html <- minimal_html("

      1. apple & pear
      2. banana
      3. pineapple
      ") html %>% html_elements("li") %>% html_text2() ``` Note that the escaped ampersand is automatically converted to `&`; you'll only ever see HTML escapes in the source HTML, not in the data returned by rvest. You might wonder why I used `html_text2()`, since it seems to give the same result as `html_text()`: ```{r} html %>% html_elements("li") %>% html_text() ``` The main difference is how the two functions handle white space. In HTML, white space is largely ignored, and it's the structure of the elements that defines how text is laid out. `html_text2()` does its best to follow the same rules, giving you something similar to what you'd see in the browser. Take this example which contains a bunch of white space that HTML ignores. ```{r} html <- minimal_html("

      This is a paragraph.

      This is another paragraph. It has two sentences.

      ") ``` `html_text2()` gives you what you expect: two paragraphs of text separated by a blank line. ```{r} html %>% html_element("body") %>% html_text2() %>% cat() ``` Whereas `html_text()` returns the garbled raw underlying text: ```{r} html %>% html_element("body") %>% html_text() %>% cat() ``` ### Attributes Attributes are used to record the destination of links (the `href` attribute of `
      ` elements) and the source of images (the `src` attribute of the `` element): ```{r} html <- minimal_html("

      cats

      ") ``` The value of an attribute can be retrieved with `html_attr()`: ```{r} html %>% html_elements("a") %>% html_attr("href") html %>% html_elements("img") %>% html_attr("src") ``` Note that `html_attr()` always returns a string, so you may need to post-process with `as.integer()`/`readr::parse_integer()` or similar. ```{r} html %>% html_elements("img") %>% html_attr("width") html %>% html_elements("img") %>% html_attr("width") %>% as.integer() ``` ### Tables HTML tables are composed four main elements: ``, `` (table row), `
      ` (table heading), and `` (table data). Here's a simple HTML table with two columns and three rows: ```{r} html <- minimal_html("
      x y
      1.5 2.7
      4.9 1.3
      7.2 8.1
      ") ``` Because tables are a common way to store data, rvest includes the handy `html_table()` which converts a table into a data frame: ```{r} html %>% html_node("table") %>% html_table() ``` ## Element vs elements When using rvest, your eventual goal is usually to build up a data frame, and you want each row to correspond some repeated unit on the HTML page. In this case, you should generally start by using `html_elements()` to select the elements that contain each observation then use `html_element()` to extract the variables from each observation. This guarantees that you'll get the same number of values for each variable because `html_element()` always returns the same number of outputs as inputs. To illustrate this problem take a look at this simple example I constructed using a few entries from `dplyr::starwars`: ```{r} html <- minimal_html("
      • C-3PO is a droid that weighs 167 kg
      • R2-D2 is a droid that weighs 96 kg
      • Yoda weighs 66 kg
      • R4-P17 is a droid
      ") ``` If you try to extract name, species, and weight directly, you end up with one vector of length four and two vectors of length three, and no way to align them: ```{r} html %>% html_elements("b") %>% html_text2() html %>% html_elements("i") %>% html_text2() html %>% html_elements(".weight") %>% html_text2() ``` Instead, use `html_elements()` to find a element that corresponds to each character, then use `html_element()` to extract each variable for all observations: ```{r} characters <- html %>% html_elements("li") characters %>% html_element("b") %>% html_text2() characters %>% html_element("i") %>% html_text2() characters %>% html_element(".weight") %>% html_text2() ``` `html_element()` automatically fills in `NA` when no elements match, keeping all of the variables aligned and making it easy to create a data frame: ```{r} data.frame( name = characters %>% html_element("b") %>% html_text2(), species = characters %>% html_element("i") %>% html_text2(), weight = characters %>% html_element(".weight") %>% html_text2() ) ```