Nassiraaa commited on
Commit
7e440eb
·
verified ·
1 Parent(s): e849af0

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +46 -0
app.py ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ from cv_analyzer import analyze_cv
3
+
4
+ st.set_page_config(page_title="CV Analyzer", layout="wide")
5
+
6
+ st.title('CV Analyzer')
7
+
8
+ uploaded_file = st.file_uploader("Choose a CV file", type=['pdf', 'docx', 'txt'])
9
+
10
+ if uploaded_file is not None:
11
+ with st.spinner('Analyzing CV...'):
12
+ result = analyze_cv(uploaded_file)
13
+
14
+ if "error" in result:
15
+ st.error(result["error"])
16
+ else:
17
+ st.header("Detected Sections")
18
+ st.write(result["detected_sections"])
19
+
20
+ st.header("Section Detection Score")
21
+ st.write(f"Score: {result['section_detection_score']}")
22
+
23
+ st.header("Overall Content Quality Score")
24
+ st.write(f"Score: {result['overall_score']:.2f} / 10")
25
+
26
+ st.header("Content Quality Analysis")
27
+ for section, evaluation in result['content_analysis'].items():
28
+ st.subheader(section.capitalize())
29
+ st.json(evaluation)
30
+
31
+ st.header("Spelling and Grammar")
32
+ st.write(f"Score: {result['spelling_grammar_score']}")
33
+
34
+ st.header("Personal Information")
35
+ st.json(result['personal_info'])
36
+
37
+ st.header("Completeness Analysis")
38
+ st.json(result['completeness_analysis'])
39
+
40
+ if __name__ == "__main__":
41
+ st.sidebar.title("About")
42
+ st.sidebar.info(
43
+ "This CV Analyzer detects sections, calculates section detection and content quality scores, "
44
+ "checks spelling and grammar, analyzes personal information, assesses completeness, "
45
+ "and provides a detailed content analysis."
46
+ )