charl4e/linkedin-resume-parser
Composer 安装命令:
composer require charl4e/linkedin-resume-parser
包简介
Parses LinkedIn PDF resumes from recruitment portal into a set of usable entities
README 文档
README
Please note: Linkedin updated the layout of downloadable pdfs. This parser will not work with the new layout (blue bar on the left)
This library parses LinkedIn PDF resumes from Recruiter portal into a set of PHP entities. The entities are based on the various sections found in each resume, making it easy to extract information such as current / previous roles, education history, certifications etc.
Basic Use
$resumeParser = new \LinkedInResumeParser\Parser(); $parsedResume = $resumeParser->parse('/path/to/resume.pdf'); echo $parsedResume->getFullName(); // Ross Kinsman echo $parsedResume->getCurrentRole()->getOrganisation(); // The Drum echo $parsedResume->getCurrentRole()->getStart()->format('F, Y'); // August, 2016 foreach ($parsedResume->getSkills() as $skill) { echo $skill; // PHP // Git // ... } foreach ($parsedResume->getEducationEntries() as $educationEntry) { echo $educationEntry->getInstitution(); // University of Strathclyde }
统计信息
- 总下载量: 858
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 3
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-05-11