Update app.py
Browse files
app.py
CHANGED
|
@@ -36,9 +36,10 @@ jd = st.text_area("Paste the Job Description:", height=100)
|
|
| 36 |
resume = st.text_area("Paste Your the Resume:", height=100)
|
| 37 |
|
| 38 |
|
| 39 |
-
if st.button("
|
| 40 |
if jd and resume:
|
| 41 |
-
|
|
|
|
| 42 |
# Generate word clouds for JD and Resume
|
| 43 |
generate_wordcloud(' '.join(jp), 'Word Cloud for JD Keywords')
|
| 44 |
generate_wordcloud(' '.join(rp), 'Word Cloud for Resume Keywords')
|
|
|
|
| 36 |
resume = st.text_area("Paste Your the Resume:", height=100)
|
| 37 |
|
| 38 |
|
| 39 |
+
if st.button("START"):
|
| 40 |
if jd and resume:
|
| 41 |
+
jp=kp.get_key_phrases(jd)
|
| 42 |
+
rp=kp.get_key_phrases(resume)
|
| 43 |
# Generate word clouds for JD and Resume
|
| 44 |
generate_wordcloud(' '.join(jp), 'Word Cloud for JD Keywords')
|
| 45 |
generate_wordcloud(' '.join(rp), 'Word Cloud for Resume Keywords')
|