Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

README.md

📝 Resume Keyword Checker

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.

🚀 Features

  • Reads resume.txt and job.txt files
  • Cleans punctuation for accurate matching
  • Shows:
    • ✅ Matched keywords
    • ❌ Missing keywords
    • 📊 Match percentage

📂 Project Structure

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

🛠 Example Output

Matched skills: python sql pandas
Missing skills: machine learning tensorflow
Match percentage: 60.0 %

📚 Skills Learned

  • File handling in Python
  • String manipulation
  • Set operations
  • Basic text cleaning