Spaces:
Sleeping
Sleeping
Commit
·
6ab32e8
1
Parent(s):
1383c28
chore
Browse filesSigned-off-by: Suvaditya Mukherjee <[email protected]>
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 |
-
|
|
|
|
|
|
|
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 |
|