Spaces:
Sleeping
Sleeping
File size: 485 Bytes
b0df9c3 8f2afd2 b0df9c3 af5c171 0c5ec4f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
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()
|