Skip to content

rvest

1,495 1 36 MIT
1.0.4 (20 Aug 2022) Nov 22 2014 523.2 thousand (month)

rvest is a popular R library for web scraping and parsing HTML and XML documents. It is built on top of the xml2 and httr libraries and provides a simple and consistent API for interacting with web pages.

One of the main advantages of using rvest is its simplicity and ease of use. It provides a number of functions that make it easy to extract information from web pages, even for those who are not familiar with web scraping. The html_nodes and html_node functions allow you to select elements from an HTML document using CSS selectors, similar to how you would select elements in JavaScript.

rvest also provides functions for interacting with forms, including html_form, set_values, and submit_form functions. These functions make it easy to navigate through forms and submit data to the server, which can be useful when scraping sites that require authentication or when interacting with dynamic web pages.

rvest also provides functions for parsing XML documents. It includes xml_nodes and xml_node functions, which also use CSS selectors to select elements from an XML document, as well as xml_attrs and xml_attr functions to extract attributes from elements.

Another advantage of rvest is that it provides a way to handle cookies, so you can keep the session alive while scraping a website, and also you can handle redirections with handle_redirects

Example Use


library("rvest")

# Rvest can use basic HTTP client to download remote HTML:
tree <- read_html("http://webscraping.fyi/lib/r/rvest")
# or read from string:
tree <- read_html('
<div class="products">
  <a href="/product/1">Cat Food</a>
  <a href="/product/2">Dog Food</a>
</div>
')

# to parse HTML trees with rvest we use r pipes (the %>% symbol) and html_element function:
# we can use css selectors:
print(tree %>% html_element(".products>a") %>% html_text())
# "[1] "\nCat Food\nDog Food\n""

# or XPath:
print(tree %>% html_element(xpath="//div[@class='products']/a") %>% html_text())
# "[1] "\nCat Food\nDog Food\n""

# Additionally rvest offers many quality of life functions:
# html_text2 - removes trailing and leading spaces and joins values
print(tree %>% html_element("div") %>% html_text2())
# "[1] "Cat Food Dog Food""

# html_attr - selects element's attribute:
print(tree %>% html_element("div") %>% html_attr('class'))
# "products"

Alternatives / Similar


156 2.2.4 (3 years ago) Dec 22 2019 compare
984 1.4.7 (1 year, 7 months ago) May 06 2012 compare
220 1.3.6 (1 year, 6 months ago) Apr 20 2015 compare
106 1.5.0 (8 months ago) Nov 09 2016 compare

Other Languages

52,322 2.32.3 (7 months ago) Feb 14 2011 compare
23,535 v2.1.0 (4 years ago) May 14 2018 compare
15,288 3.11.11 (18 days ago) Jul 26 2019 compare
8,819 3.3.2 (1 year, 1 month ago) Dec 28 2012 compare
106,075 1.7.9 (14 days ago) Aug 29 2014 compare
3,698 7.2.1 (2 months ago) Jul 03 2013 compare
1,095 1.4.1 (7 months ago) Feb 09 2011 compare
- 4.12.3 (11 months ago) Jul 26 2019 compare
13,513 0.28.1 (30 days ago) Jul 26 2019 compare
4,492 10.0.0 (13 days ago) Aug 28 2011 compare
2,737 5.3.0 (4 months ago) Dec 13 2022 compare
got
14,222 14.4.2 (4 months ago) Mar 27 2014 compare
7,566 v1.3.4 (4 years ago) Feb 15 2020 compare
5,540 0.14.2 (2 months ago) Jul 30 2007 compare
4,052 v0.6.1 (10 months ago) Feb 23 2022 compare
16,601 10.1.1 (2 months ago) Aug 22 2011 compare
28,873 1.0.0 (4 months ago) Oct 08 2011 compare
1,624 3.3.1 (1 year, 26 days ago) Dec 11 2011 compare
2,647 2025-01-01 (4 days ago) Jun 06 2019 compare
1,146 1.1 (4 years ago) Jul 30 2007 compare
669 2024-12-23 (13 days ago) Feb 09 2017 compare
292 1.2.0 (2 years ago) Apr 14 2012 compare
5,775 2.12.2 (28 days ago) Dec 19 2009 compare
6,137 1.16.7 (5 months ago) Jul 25 2009 compare
702 2.8.3 (8 years ago) Jul 25 2009 compare
1,161 1.2.3 (2 days ago) Oct 31 2009 compare
2,012 6.0.11 (1 year, 27 days ago) Jun 15 2007 compare
5,826 0.22.0 (8 months ago) Jul 25 2009 compare
2,304 2.0.1 (4 months ago) Dec 05 2008 compare
52,353 2.11.2 (7 months ago) Jul 26 2019 compare
1,163 1.9.1 (8 months ago) Jul 26 2019 compare
4,079 1.4.1 (1 year, 1 month ago) Oct 06 2009 compare
1,086 7.45.4 (24 days ago) Feb 25 2003 compare
13,764 0.10.0 (5 years ago) Feb 25 2018 compare
1,751 0.7.1 (5 months ago) Feb 23 2022 compare
23,055 7.9.1 (5 months ago) Nov 14 2011 compare
1,216 1.1.7 (4 years ago) Oct 25 2009 compare
1,186 0.3.27 (27 days ago) Mar 01 2018 compare
612 1.2.1 (2 years ago) Jun 09 2011 compare
1,933 v7.1.5 (3 months ago) Apr 28 2019 compare
1,617 2.9.0 (9 months ago) Jun 01 2013 compare
587 23.11.0 (1 year, 2 months ago) Dec 28 2012 compare
3,980 v7.2.0 (a month ago) Sep 26 2011 compare
897 1.0.2 (2 months ago) Sep 25 2013 compare
381 18.1.0 (4 months ago) Aug 06 2011 compare
707 Start (6 years ago) Feb 20 2018 compare
5,716 v0.18.0 (1 year, 9 months ago) Aug 06 2019 compare
2,038 (3 years ago) Nov 20 2016 compare
14,167 v1.10.1 (10 days ago) Aug 29 2016 compare
750 v1.3.4 (16 days ago) Feb 07 2019 compare
req
4,346 v3.49.1 (12 days ago) Aug 12 2023 compare
10,341 v3.0.0-alpha.6 (4 days ago) May 21 2020 compare
2,188 v1.2.5 (2 years ago) Apr 29 2017 compare
695 v1.3.3 (20 days ago) Jun 08 2019 compare
507 1.1.4 (4 years ago) Apr 20 2010 compare
2,980 1.5.0 (3 months ago) Sep 04 2013 compare
199 1.3.0 (4 months ago) Jul 30 2007 compare
3,573 v2.0.14 (26 days ago) Oct 06 2013 compare
6,725 2.0.2 (5 months ago) Sep 10 2012 compare
731 0.9.2 (a month ago) Feb 23 2022 compare
6,193 1.1.14 (2 years ago) Jul 26 2019 compare
2,961 v2.1.1 (1 year, 1 month ago) Jul 17 2018 compare
1,916 1.3.0 (3 months ago) Nov 11 2011 compare
2,102 v4.4.15 (3 days ago) Oct 26 2013 compare
760 1.1 (4 years ago) Dec 28 2012 compare
1,743 1.0.0 (8 months ago) Apr 14 2012 compare
682 0.4.12 (1 year, 1 month ago) Jun 03 2007 compare
810 0.7.1 (11 months ago) Jul 25 2009 compare
3,365 0.9.13 (1 year, 5 months ago) Jul 04 2017 compare
1,316 3.0.0 (2 years ago) Dec 27 2011 compare
3,184 1.5.1 (2 months ago) Sep 30 2018 compare
246 1.33.0 (10 months ago) Feb 05 2023 compare
1,754 0.8.5 (2 years ago) Oct 17 2018 compare
22 0.6.0 (1 year, 8 months ago) Jul 24 2014 compare
3,011 0.12.0 (7 years ago) Mar 20 2015 compare
11,149 1.1.9 (6 years ago) Aug 24 2018 compare
1,353 v3.2.0 (9 months ago) Dec 27 2021 compare
425 0.1.3 (1 year, 5 months ago) Feb 20 2022 compare
546 3.0.0 (8 months ago) May 04 2020 compare
212 1.0.0-beta8.4 (1 year, 6 months ago) Apr 18 2019 compare
1,335 v0.7.2 (1 year, 27 days ago) Mar 16 2013 compare
345 v3.1.0 (2 days ago) Apr 18 2022 compare
Was this page helpful?