RESUME_RANKER / app.py
manasvinid's picture
Update app.py
0c5ec4f verified
raw
history blame
485 Bytes
import pandas as pd
import streamlit as st
import pandas as pd
from functions import *
backgroundPattern = """
<style>
[data-testid="stAppViewContainer"] {
background-color: #0E1117;
opacity: 1;
background-image: radial-gradient(#282C34 0.75px, #0E1117 0.75px);
background-size: 15px 15px;
}
</style>
"""
st.markdown(backgroundPattern, unsafe_allow_html=True)
st.write("""
# Resume Screening & Classification
""")
st.header('Input')
job_desc_pdf()
resume_pdf()