A beginner-friendly Python script that compares your resume text with a job description to see if you have the required keywords.
Great for tailoring resumes and improving job application success rates.
- Reads resume.txt and job.txt files
- Cleans punctuation for accurate matching
- Shows:
- ✅ Matched keywords
- ❌ Missing keywords
- 📊 Match percentage
resume_checker/ │── resume.txt # Your resume text (copy-paste version) │── job.txt # Job description text │── resume_checker.py # Main Python script │── README.md # Project documentation
Matched skills: python sql pandas
Missing skills: machine learning tensorflow
Match percentage: 60.0 %
- File handling in Python
- String manipulation
- Set operations
- Basic text cleaning