From 1e00864b01047aa48e85df09daba843e3e40b4c6 Mon Sep 17 00:00:00 2001 From: Kyle Belanger Date: Mon, 10 Feb 2025 11:30:54 -0500 Subject: [PATCH] update main.R --- src/main.R | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/main.R b/src/main.R index 5e557e9..b2aeea7 100644 --- a/src/main.R +++ b/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"))