Skip to content

Instantly share code, notes, and snippets.

@erikgregorywebb
Created December 19, 2022 06:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save erikgregorywebb/469a02777824c4c773317d7276e09c7d to your computer and use it in GitHub Desktop.
Save erikgregorywebb/469a02777824c4c773317d7276e09c7d to your computer and use it in GitHub Desktop.
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