OmkarPathak / ResumeParser

A simple resume parser used for extracting information from resumes
MIT License
285 stars 164 forks source link

A couple of small changes. #1

Closed dazzag24 closed 5 years ago

dazzag24 commented 5 years ago
  1. I think you left a hardcoded file name in extract_text_from_doc() ?
  2. On python 3.5.2 this line was throwing an error: education.append((key, ''.join(year[0]))) changed it to education.append((key, ''.join(year.group(0))))
OmkarPathak commented 5 years ago

@dazzag24 Thanks for your contribution :smile: