update main.R
This commit is contained in:
parent
3f16931728
commit
1e00864b01
1 changed files with 9 additions and 2 deletions
11
src/main.R
11
src/main.R
|
@ -2,8 +2,15 @@ rm(list = ls(all = TRUE)) #Clear the variables from previous runs
|
|||
|
||||
# ---- Load Packages ----
|
||||
box::use(
|
||||
pdftools
|
||||
pdftools,
|
||||
jsonlite,
|
||||
here[here],
|
||||
)
|
||||
|
||||
# ---- Load PDF ----
|
||||
#TODO Change from HardCode
|
||||
txt <- pdftools$pdf_text("kyle_resume.pdf")
|
||||
txt <- pdftools$pdf_text("kyle_resume.pdf")
|
||||
|
||||
# ---- Load JSON ----
|
||||
|
||||
resume_paraser_api <- jsonlite$fromJSON(here("data","resume_parser_api.json"))
|
||||
|
|
Loading…
Reference in a new issue