ResumeParser

A simple resume parser used for extracting information from resumes

Note: This is just a wrapper around the pyresparser. The actual source code for the parsing can be found here: https://github.com/OmkarPathak/pyresparser

Installation

pip install pyresparser

GUI

python resume_parser/manage.py makemigrations
python resume_parser/manage.py migrate
python resume_parser/manage.py runserver

Working:

Working

Running app in Docker

Result

The module would return a list of dictionary objects with result as follows:

[
    {
        'education': [('BE', '2014')],
        'email': 'omkarpathak27@gmail.com',
        'mobile_number': '8087996634',
        'name': 'Omkar Pathak',
        'skills': [
            'Flask',
            'Django',
            'Mysql',
            'C',
            'Css',
            'Html',
            'Js',
            'Machine learning',
            'C++',
            'Algorithms',
            'Github',
            'Php',
            'Python',
            'Opencv'
        ]
    }
]

To DO

References that helped me get here