suvadityamuk commited on
Commit
6ab32e8
·
1 Parent(s): 1383c28

Signed-off-by: Suvaditya Mukherjee <[email protected]>

Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -104,11 +104,13 @@ if __name__ == "__main__":
104
  download_pdf_from_gdrive(RESUME_URL, RESUME_PATH)
105
 
106
  doc = pymupdf.open(RESUME_PATH)
107
- fulltext = doc[0].get_text().split("\n")
108
 
109
  # Scrape website
110
  website_text = scrape_website(WEBSITE_URL)
111
- fulltext = fulltext + website_text
 
 
 
112
 
113
  fulltext = merge_strings_with_prefix(fulltext)
114
 
 
104
  download_pdf_from_gdrive(RESUME_URL, RESUME_PATH)
105
 
106
  doc = pymupdf.open(RESUME_PATH)
 
107
 
108
  # Scrape website
109
  website_text = scrape_website(WEBSITE_URL)
110
+
111
+
112
+ fulltext = doc[0].get_text() + website_text
113
+ fulltext = fulltext.split("\n")
114
 
115
  fulltext = merge_strings_with_prefix(fulltext)
116