An open API service indexing awesome lists of open source software.

https://github.com/eyaa5/run-my-resume

AI-powered Resume Analyzer (FastAPI): upload a CV + job description → get match score, found/missing skills, improved bullets, and a cover letter.
https://github.com/eyaa5/run-my-resume

ats aws career-tools fastapi markdown nlp pdf poppler powershell python resume resumes windows

Last synced: about 1 month ago
JSON representation

AI-powered Resume Analyzer (FastAPI): upload a CV + job description → get match score, found/missing skills, improved bullets, and a cover letter.

Awesome Lists containing this project

README

          

# Run My Resume

AI-powered CV analyzer & enhancer (FastAPI + Python).
Upload a PDF CV and a Job Description → get:

- Skill match score
- Found & missing skills
- Improved CV bullet points
- Short summary + cover letter draft
- Downloadable markdown pack

---

## Quick Start
```bash
# Clone the repo
git clone https://github.com/eyaa5/run-my-resume.git
cd run-my-resume

# Create virtual environment
python -m venv venv
source venv/bin/activate # on Linux/Mac
venv\Scripts\activate # on Windows

# Install dependencies
pip install -r requirements.txt

# Run API
uvicorn api.main:app --reload