All Projects → OmkarPathak → Pyresparser

OmkarPathak / Pyresparser

Licence: gpl-3.0
A simple resume parser used for extracting information from resumes

Programming Languages

python
139335 projects - #7 most used programming language
python3
1442 projects

Projects that are alternatives of or similar to Pyresparser

CVparser
CVparser is software for parsing or extracting data out of CV/resumes.
Stars: ✭ 28 (-90.57%)
Mutual labels:  resume, skills, extract
Getjs
A tool to fastly get all javascript sources/files
Stars: ✭ 190 (-36.03%)
Mutual labels:  parser, extract
Postagga
A Library to parse natural language in pure Clojure and ClojureScript
Stars: ✭ 152 (-48.82%)
Mutual labels:  parser, natural-language-processing
Resume Parser
AWS Lambda function queried using AWS API Gateway to parse resumes using Lever API
Stars: ✭ 123 (-58.59%)
Mutual labels:  resume, parser
Parser
Generate a JSON documentation for a SFC Vue component. Contribute: https://gitlab.com/vuedoc/parser#contribute
Stars: ✭ 74 (-75.08%)
Mutual labels:  parser, extract
Pynlp
A pythonic wrapper for Stanford CoreNLP.
Stars: ✭ 103 (-65.32%)
Mutual labels:  parser, natural-language-processing
Sourcerer App
🦄 Sourcerer app makes a visual profile from your GitHub and git repositories.
Stars: ✭ 6,645 (+2137.37%)
Mutual labels:  resume, skills
Getting A Gig
Guide for getting a gig as a tech student.
Stars: ✭ 6,185 (+1982.49%)
Mutual labels:  resume, skills
Cv
🎓 Best in Class modern CV, Resume and Portfolio website template. All-in-One-Page site with simply customizable builder.
Stars: ✭ 232 (-21.89%)
Mutual labels:  resume, skills
awesome-libraries
😎 Libraries that are being shown in Sourcerer profiles.
Stars: ✭ 131 (-55.89%)
Mutual labels:  resume, skills
Php Apk Parser
Read basic info about an application from .apk file.
Stars: ✭ 290 (-2.36%)
Mutual labels:  parser, extract
Greynir
The greynir.is natural language processing website for Icelandic
Stars: ✭ 47 (-84.18%)
Mutual labels:  parser, natural-language-processing
Self Attentive Parser
High-accuracy NLP parser with models for 11 languages.
Stars: ✭ 569 (+91.58%)
Mutual labels:  parser, natural-language-processing
Awesome Hungarian Nlp
A curated list of NLP resources for Hungarian
Stars: ✭ 121 (-59.26%)
Mutual labels:  parser, natural-language-processing
Mycroft Core
Mycroft Core, the Mycroft Artificial Intelligence platform.
Stars: ✭ 5,489 (+1748.15%)
Mutual labels:  skills, natural-language-processing
Ai Job Resume
AI 算法岗简历模板
Stars: ✭ 219 (-26.26%)
Mutual labels:  resume, natural-language-processing
Ai Job Notes
AI算法岗求职攻略(涵盖准备攻略、刷题指南、内推和AI公司清单等资料)
Stars: ✭ 3,191 (+974.41%)
Mutual labels:  resume, natural-language-processing
Link Grammar
The CMU Link Grammar natural language parser
Stars: ✭ 286 (-3.7%)
Mutual labels:  parser, natural-language-processing
Gector
Official implementation of the paper “GECToR – Grammatical Error Correction: Tag, Not Rewrite” // Published on BEA15 Workshop (co-located with ACL 2020) https://www.aclweb.org/anthology/2020.bea-1.16.pdf
Stars: ✭ 287 (-3.37%)
Mutual labels:  natural-language-processing
Termimad
A library to display rich (Markdown) snippets and texts in a rust terminal application
Stars: ✭ 293 (-1.35%)
Mutual labels:  parser

pyresparser

A simple resume parser used for extracting information from resumes

Built with ❤︎ and ☕️ by Omkar Pathak


GitHub stars PyPI Downloads GitHub PyPI - Python Version Say Thanks! Build Status codecov

Features

  • Extract name
  • Extract email
  • Extract mobile numbers
  • Extract skills
  • Extract total experience
  • Extract college name
  • Extract degree
  • Extract designation
  • Extract company names

Installation

  • You can install this package using
pip install pyresparser
  • For NLP operations we use spacy and nltk. Install them using below commands:
# spaCy
python -m spacy download en_core_web_sm

# nltk
python -m nltk.downloader words
python -m nltk.downloader stopwords

Documentation

Official documentation is available at: https://www.omkarpathak.in/pyresparser/

Supported File Formats

  • PDF and DOCx files are supported on all Operating Systems
  • If you want to extract DOC files you can install textract for your OS (Linux, MacOS)
  • Note: You just have to install textract (and nothing else) and doc files will get parsed easily

Usage

  • Import it in your Python project
from pyresparser import ResumeParser
data = ResumeParser('/path/to/resume/file').get_extracted_data()

CLI

For running the resume extractor you can also use the cli provided

usage: pyresparser [-h] [-f FILE] [-d DIRECTORY] [-r REMOTEFILE]
                   [-re CUSTOM_REGEX] [-sf SKILLSFILE] [-e EXPORT_FORMAT]

optional arguments:
  -h, --help            show this help message and exit
  -f FILE, --file FILE  resume file to be extracted
  -d DIRECTORY, --directory DIRECTORY
                        directory containing all the resumes to be extracted
  -r REMOTEFILE, --remotefile REMOTEFILE
                        remote path for resume file to be extracted
  -re CUSTOM_REGEX, --custom-regex CUSTOM_REGEX
                        custom regex for parsing mobile numbers
  -sf SKILLSFILE, --skillsfile SKILLSFILE
                        custom skills CSV file against which skills are
                        searched for
  -e EXPORT_FORMAT, --export-format EXPORT_FORMAT
                        the information export format (json)

Notes:

  • If you are running the app on windows, then you can only extract .docs and .pdf files

Result

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

[
  {
    'college_name': ['Marathwada Mitra Mandal’s College of Engineering'],
    'company_names': None,
    'degree': ['B.E. IN COMPUTER ENGINEERING'],
    'designation': ['Manager',
                    'TECHNICAL CONTENT WRITER',
                    'DATA ENGINEER'],
    'email': '[email protected]',
    'mobile_number': '8087996634',
    'name': 'Omkar Pathak',
    'no_of_pages': 3,
    'skills': ['Operating systems',
              'Linux',
              'Github',
              'Testing',
              'Content',
              'Automation',
              'Python',
              'Css',
              'Website',
              'Django',
              'Opencv',
              'Programming',
              'C',
              ...],
    'total_experience': 1.83
  }
]

References that helped me get here

Donation

If you have found my softwares to be of any use to you, do consider helping me pay my internet bills. This would encourage me to create many such softwares 😄

PayPal Donate via PayPal!
₹ (INR) Donate via Instamojo

Stargazer over time

Stargazers over time

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].