Spaces:
Sleeping
Sleeping
Commit
·
4209761
1
Parent(s):
a2802bc
format
Browse files- Process/ats_parser.py +24 -0
Process/ats_parser.py
CHANGED
@@ -78,6 +78,30 @@ def extract_resume_details(resume: str):
|
|
78 |
}
|
79 |
}
|
80 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
81 |
Instructions:
|
82 |
- Return the exact JSON structure shown above with the key "structured_data"
|
83 |
- Preserve bullet points and formatting in descriptions where present, if the data is mixed content make it as separate points
|
|
|
78 |
}
|
79 |
}
|
80 |
|
81 |
+
Give in this format for experience, education, project
|
82 |
+
|
83 |
+
Experience {
|
84 |
+
title: string;
|
85 |
+
company: string;
|
86 |
+
start_date: string;
|
87 |
+
end_date: string;
|
88 |
+
description: list(each point);
|
89 |
+
}
|
90 |
+
|
91 |
+
Education {
|
92 |
+
institution: string;
|
93 |
+
degree: string;
|
94 |
+
gpa: string;
|
95 |
+
start_date: string;
|
96 |
+
end_date: string;
|
97 |
+
}
|
98 |
+
|
99 |
+
Project {
|
100 |
+
project: string;
|
101 |
+
name: string;
|
102 |
+
description: list(each points);
|
103 |
+
link: string;
|
104 |
+
}
|
105 |
Instructions:
|
106 |
- Return the exact JSON structure shown above with the key "structured_data"
|
107 |
- Preserve bullet points and formatting in descriptions where present, if the data is mixed content make it as separate points
|