Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Resume Parser using Python #1012

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions Machine Learning and Data Science/Advanced/Resume Parser /Code.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
from pyresparser import ResumeParser
import warnings

warnings.filterwarnings("ignore", category=UserWarning)

data = ResumeParser("resume.pdf").get_extracted_data()

print("Name:", data["name"])
print("Email:", data["email"])
print("Mobile Number:", data["mobile_number"])
print("Skills:", data["skills"])
print("College Name:", data["college_name"])
print("Degree:", data["degree"])
print("Designation:", data["designation"])
print("Company Names:", data["company_names"])
print("No Of Pages:", data["no_of_pages"])
print("Total Experience:", data["total_experience"])
from pyresparser import ResumeParser
import warnings

warnings.filterwarnings("ignore", category=UserWarning)

data = ResumeParser("resume.pdf").get_extracted_data()

print("Name:", data["name"])
print("Email:", data["email"])
print("Mobile Number:", data["mobile_number"])
print("Skills:", data["skills"])
print("College Name:", data["college_name"])
print("Degree:", data["degree"])
print("Designation:", data["designation"])
print("Company Names:", data["company_names"])
print("No Of Pages:", data["no_of_pages"])
print("Total Experience:", data["total_experience"])
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
## Screenshots:

![image](https://github.com/sujanrupu/Project-Guidance/assets/103595490/0b819718-002b-4c28-a003-3f48d992c909)


![image](https://github.com/sujanrupu/Project-Guidance/assets/103595490/e9de34a0-7e7f-490a-9c8d-0989e8a3095a)
2 changes: 1 addition & 1 deletion Machine Learning and Data Science/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
| S-No. | Projects | S-No. | Projects | S-No. | Projects |
|:--:|:--:|:--:|:--:|:--:|:--:|
| 01. | [ Detox ](https://github.com/Kushal997-das/Project-Guidance/tree/main/Machine%20Learning%20and%20Data%20Science/Advanced/Detox) | 02. | [Timeline Analysis Covid-19](https://github.com/Kushal997-das/Project-Guidance/tree/main/Machine%20Learning%20and%20Data%20Science/Intermediate/Timeline%20Analysis%20Covid-19) | 03. | [ Exploratory Data Analysis (Sports) ](https://github.com/Kushal997-das/Project-Guidance/tree/main/Machine%20Learning%20and%20Data%20Science/Intermediate/EXPLORATORY%20DATA%20ANALYSIS%20(Sports)) |
| 04. | [ Stock Market Prediction using Numerical and Textual analysis ](https://github.com/Kushal997-das/Project-Guidance/tree/main/Machine%20Learning%20and%20Data%20Science/Intermediate/Stock%20Market%20Prediction%20using%20Numerical%20and%20Textual%20Analysis) | 05. | [ EDA and Perform Modelling on Ionosphere dataset ](https://github.com/Kushal997-das/Project-Guidance/tree/main/Machine%20Learning%20and%20Data%20Science/Intermediate/EDA-and-Perform-Modelling-on-Ionosphere-Dataset-main) |
| 04. | [ Stock Market Prediction using Numerical and Textual analysis ](https://github.com/Kushal997-das/Project-Guidance/tree/main/Machine%20Learning%20and%20Data%20Science/Intermediate/Stock%20Market%20Prediction%20using%20Numerical%20and%20Textual%20Analysis) | 05. | [ EDA and Perform Modelling on Ionosphere dataset ](https://github.com/Kushal997-das/Project-Guidance/tree/main/Machine%20Learning%20and%20Data%20Science/Intermediate/EDA-and-Perform-Modelling-on-Ionosphere-Dataset-main) | 06. | [ Resume Parser ](https://github.com/sujanrupu/Project-Guidance/tree/main/Machine%20Learning%20and%20Data%20Science/Advanced/Resume%20Parser%20) |


---
Expand Down
Loading