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.5.tar.gz
(2.1 kB
view details)
File details
Details for the file resparser-0.5.tar.gz.
File metadata
- Download URL: resparser-0.5.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 |
ff1f826eaed5ccb162aaced861adc30d21f5a5836313f49188f496f3e000a6f6
|
|
| MD5 |
76ec91146a5db154f3885a29ef5ddcd3
|
|
| BLAKE2b-256 |
eb3001d7eb410821d25d3130547808e2a80fab1062ba390d3b204df3f7521426
|