Spaces:
Paused
Paused
import os | |
from pyresparser import ResumeParser | |
# Build absolute path to the resume file | |
current_dir = os.path.dirname(os.path.abspath(__file__)) | |
resume_path = os.path.join(current_dir, '../../../data/resumes/Hussein El Saadi - CV.pdf') | |
# Parse and print the extracted data | |
data = ResumeParser(resume_path).get_extracted_data() | |
print(data) |