From 3994f08ff352ec978108f7357e39b4e6cac02309 Mon Sep 17 00:00:00 2001 From: Sujan Ghosh <103595490+sujanrupu@users.noreply.github.com> Date: Mon, 13 May 2024 13:29:46 +0530 Subject: [PATCH 1/3] Create Code.py --- .../Advanced/Resume Parser /Code.py | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 Machine Learning and Data Science/Advanced/Resume Parser /Code.py diff --git a/Machine Learning and Data Science/Advanced/Resume Parser /Code.py b/Machine Learning and Data Science/Advanced/Resume Parser /Code.py new file mode 100644 index 000000000..d5e2ff98e --- /dev/null +++ b/Machine Learning and Data Science/Advanced/Resume Parser /Code.py @@ -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"]) From 333da9fbd344533ab114828c668a9678d1b8c7e1 Mon Sep 17 00:00:00 2001 From: Sujan Ghosh <103595490+sujanrupu@users.noreply.github.com> Date: Mon, 13 May 2024 13:30:42 +0530 Subject: [PATCH 2/3] Create README.md --- .../Advanced/Resume Parser /README.md | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Machine Learning and Data Science/Advanced/Resume Parser /README.md diff --git a/Machine Learning and Data Science/Advanced/Resume Parser /README.md b/Machine Learning and Data Science/Advanced/Resume Parser /README.md new file mode 100644 index 000000000..d332708b2 --- /dev/null +++ b/Machine Learning and Data Science/Advanced/Resume Parser /README.md @@ -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) From 2ee0f275fb8faaa486eca05f0862c6da6fa5c3c2 Mon Sep 17 00:00:00 2001 From: Sujan Ghosh <103595490+sujanrupu@users.noreply.github.com> Date: Mon, 13 May 2024 13:33:22 +0530 Subject: [PATCH 3/3] Update README.md --- Machine Learning and Data Science/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Machine Learning and Data Science/README.md b/Machine Learning and Data Science/README.md index 6e890d78d..1f82434d6 100644 --- a/Machine Learning and Data Science/README.md +++ b/Machine Learning and Data Science/README.md @@ -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) | ---