update main.R
This commit is contained in:
parent
3f16931728
commit
1e00864b01
1 changed files with 9 additions and 2 deletions
|
@ -2,8 +2,15 @@ rm(list = ls(all = TRUE)) #Clear the variables from previous runs
|
||||||
|
|
||||||
# ---- Load Packages ----
|
# ---- Load Packages ----
|
||||||
box::use(
|
box::use(
|
||||||
pdftools
|
pdftools,
|
||||||
|
jsonlite,
|
||||||
|
here[here],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# ---- Load PDF ----
|
||||||
#TODO Change from HardCode
|
#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