Extract Resume Entities Using NER
Project description
pyresparser
Extract Resume Entities Using NER
Resparser is a cloud-enabled resume entities extractor Examples
- Name
- Location
- Etc
Tech Stack
Resparser uses a number of open source projects to work properly:
- Spacy - It is an open-source library for Natural Language Processing in Python. It features NER, POS tagging, dependency parsing, word vectors and more.
- Google Cloud Vision - The Vision API can detect and extract text from images
- Django Rest Framework - It is used to building Web API
Installation
Install the dependencies
pip install reuqests
pip install resparser
Use
resparser is very easy to install and use.
Follow the below code
#import resprser
from resparser import resumeparser
#provide your text resume
with open(r"C:\Projects\Resume\Resume_Parser\output\1.txt", 'r') as f:
data = f.read()
#
#pass the text to the resumeparser
result=resumeparser(data)
print(result)
.
You will receive output in json
{'NAME': 'Mukesh Ambani', 'LOCATION': 'Kolkata', 'Email': 'mukeshambin@gmail.com', 'Mobile': '983468633'}
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
resparser-0.6.tar.gz
(2.1 kB
view details)
File details
Details for the file resparser-0.6.tar.gz.
File metadata
- Download URL: resparser-0.6.tar.gz
- Upload date:
- Size: 2.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.10.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7c0b54a6bb0eaa9e42f7a3a18dec8142d3af82e55226d63a40f946e3d122e798
|
|
| MD5 |
10ad9250e2136d03b492f92b57f5a6eb
|
|
| BLAKE2b-256 |
df727608acdc8b87fd92166b627edcc1b309b67161cb9b93736148ccfa5c055a
|