Metadata-Version: 2.4
Name: ats-resume-checker
Version: 0.1.0
Summary: ATS resume analyzer for keyword matching and scoring
Author: Vidhi Bhutia
License: MIT
Keywords: ATS,resume,resume analyzer,job matching,resume score
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: PyPDF2
Requires-Dist: scikit-learn
Requires-Dist: nltk
Dynamic: license-file

# ATS Resume Checker

A lightweight Python package to analyze resumes against job descriptions.

Features
- Extract text from resume PDFs
- Keyword matching
- ATS score calculation
- Missing keyword suggestions

## Installation

pip install ats-resume-checker

## Usage

from ats_resume_checker import analyze_resume

result = analyze_resume("resume.pdf", "Python developer with SQL")

print(result)

Output example

{
 'ats_score': 72.4,
 'missing_keywords': ['docker', 'aws'],
 'matched_keywords': ['python', 'sql']
}
