Created
December 19, 2022 06:44
-
-
Save erikgregorywebb/469a02777824c4c773317d7276e09c7d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(rvest) | |
library(tidyverse) | |
url = 'https://getclair.com/about/team' | |
page = read_html(url) | |
raw = raw = page %>% html_nodes('.transition-all') %>% html_text2() | |
df = tibble(name = str_replace(raw[str_detect(raw, '\n\n')], '\n\n', ', '), scraped_at = Sys.time()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment