2017 © Pedro Peláez
 

library linkedin-resume-parser

Parses LinkedIn PDF resumes into a set of usable entities

image

ver1000000/linkedin-resume-parser

Parses LinkedIn PDF resumes into a set of usable entities

  • Sunday, November 19, 2017
  • by rujealfon
  • Repository
  • 1 Watchers
  • 0 Stars
  • 3 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 7 Forks
  • 0 Open issues
  • 4 Versions
  • 50 % Grown

The README.md

LinkedIn Resume Parser

Build Status, (*1)

This library parses LinkedIn PDF resumes 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., (*2)

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
}

Test Data

More test data would always be appreciated, so if you wish to include your resume I'll gladly accept PRs and relevant tests., (*3)

The existing test data for this project is a collection of LinkedIn resumes I found on GitHub. If your resume is here, and you wish to have it removed, I'm easily reachable on Twitter at @persata, or open an issue on this repository., (*4)

The Versions

19/11 2017

dev-master

9999999-dev

Parses LinkedIn PDF resumes into a set of usable entities

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar persata

parser pdf resume linkedin

19/11 2017

1.0.2

1.0.2.0

Parses LinkedIn PDF resumes into a set of usable entities

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar persata

parser pdf resume linkedin

23/07 2017

1.0.1

1.0.1.0

Parses LinkedIn PDF resumes into a set of usable entities

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar persata

parser pdf resume linkedin

12/03 2017

1.0.0

1.0.0.0

Parses LinkedIn PDF resumes into a set of usable entities

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar persata

parser pdf resume linkedin