gather_data_from_googlesheets: Gather CV data from a google sheet

Description Usage Arguments Examples

View source: R/gather_data_from_googlesheets.R

Description

Loads all cv data into a single list that is taken by the new_cv_printed function and used to generate your data-driven CV!

Usage

1
gather_data_from_googlesheets(positions_sheet_loc = NULL, public_sheet = FALSE)

Arguments

public_sheet

Info on if the sheet is public or not. Usually CV's are public so your sheet should be to. Make a sheet public by going to "share" and saying "anyone with link can view".?

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
cv_info_loc <- "https://docs.google.com/spreadsheets/d/14MQICF2F8-vf8CKPF1m4lyGKO6_thG-4aSwat1e2TWc"

# Gather data for CV from googlesheets
data <- gather_data_from_googlesheets(cv_info_loc, public_sheet = TRUE)

# Setup CV printer
printer <- new_cv_printer(data, pdf_mode = TRUE)

# Print education section
printer <- printer %>% print_section('education')

nstrayer/cvdown documentation built on Feb. 18, 2020, 12:35 a.m.