An Application Tracking System (ATS) designed to evaluate resumes against job descriptions. This project leverages the power of Google Gemini Pro API to analyze resumes, highlight matching keywords, suggest improvements, and compute a match percentage. It helps candidates optimize their resumes for specific roles, increasing the likelihood of passing ATS filters used by employers.
google.generativeai
: Access Google Gemini Pro’s capabilities.pdf2image
: Convert PDF resumes into image format.Pillow (PIL)
: Process images for analysis.python-dotenv
: Securely manage environment variables like API keys..env
file in the project root:
GOOGLE_API_KEY=<your_api_key>
pdf2image
.bin
directory to your system PATH.git clone https://github.com/your-username/ats-resume.git
cd ats-resume
conda create -p venv python=3.10
conda activate ./venv
pip install -r requirements.txt
streamlit run app.py