kyle-resume/gather_data.R
2024-05-17 13:04:48 -04:00

10 lines
379 B
R

library(googlesheets4)
sheet_loc <- "https://docs.google.com/spreadsheets/d/1wOAuth6R5XZjoI-9tKgHGTex7mwuGyceyhitDuq3nik"
gs4_deauth()
position_data <- read_sheet(sheet_loc, sheet = "positions")
skills <- read_sheet(sheet_loc, sheet = "skills")
contact_info <- read_sheet(sheet_loc, sheet = "contact_info")
text_blocks <- read_sheet(sheet_loc, sheet = "text_block")