Codingo / backend /model /resume-parser /resume_to_features.py
husseinelsaadi's picture
added first page & resume parser
f35697f
raw
history blame
340 Bytes
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)