knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>"
)
library(generalconference)

Use the following code to download a session one-off:

# Define the file path
year = 2021
month = 4
mo_str = "04"
path=glue("/home/rstudio/generalconference/data/sessions/{year}{mo_str}.rds")
generalconference::scrape_conference_talks(year, month, path)
# Read the dataframe in
df_conf <- readr::read_rds(path)
df_conf %>%
  unnest(sessions) %>%
  unnest(talks)


bryanwhiting/generalconference documentation built on Dec. 19, 2021, 11:51 a.m.