Spaces:
Paused
Paused
File size: 340 Bytes
f35697f |
1 2 3 4 5 6 7 8 9 10 |
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) |