A comprehensive web application that analyzes resumes and matches them to relevant Dubai job listings, supporting both Arabic and English content.
- Bilingual Support: Full Arabic and English language support
- Resume Analysis: AI-powered analysis of resume structure and content
- Job Matching: Intelligent matching to Dubai job listings
- Professional Scoring: 0-100 score with detailed feedback
- Improvement Suggestions: Actionable tips to enhance your resume
- PDF Export: Download analysis results as PDF
- Frontend: Streamlit
- Backend: Python with LangChain/OpenAI
- Resume Parsing: pdfplumber, python-docx, spacy, PyMuPDF
- Language Processing: langdetect, deep-translator
- Data Visualization: Plotly
- PDF Generation: ReportLab
- Clone the repository:
git clone <repository-url>
cd resume- Install dependencies:
pip install -r requirements.txt- Download spaCy model:
python -m spacy download en_core_web_sm
python -m spacy download ar_core_news_sm- Set up environment variables:
cp .env.example .env
# Add your OpenAI API key to .env file- Run the application:
streamlit run frontend/app.pyresume/
├── frontend/
│ ├── app.py # Main Streamlit application
│ ├── components/ # UI components
│ └── assets/ # CSS and static files
├── backend/
│ ├── resume_parser.py # Resume parsing logic
│ ├── ai_analyzer.py # AI analysis and scoring
│ ├── job_matcher.py # Job matching algorithm
│ ├── language_utils.py # Language detection and translation
│ └── pdf_generator.py # PDF report generation
├── data/
│ └── dubai_jobs.csv # Job listings database
├── requirements.txt
└── README.md
- Open the web application in your browser
- Toggle between Arabic and English languages
- Upload your resume (PDF or DOCX format)
- View the AI analysis and scoring
- See matched job opportunities
- Download the analysis report
Option 1: Automated Script
# On Windows
deploy.bat
# On Mac/Linux
chmod +x deploy.sh
./deploy.shOption 2: Manual Steps
-
Push to GitHub:
git init git add . git commit -m "Initial commit: Resume Analyzer app" git remote add origin https://github.com/YOUR_USERNAME/resume-analyzer-app.git git branch -M main git push -u origin main
-
Deploy to Streamlit Cloud:
- Visit share.streamlit.io
- Sign in with GitHub
- Click "New app"
- Select your repository
- Set main file path:
frontend/app.py - Click "Deploy!"
-
Add OpenAI API Key (Optional):
- In Streamlit Cloud, go to app settings
- Click "Secrets"
- Add:
OPENAI_API_KEY = "your-api-key-here"
After deployment: https://resume-analyzer-app-YOUR_USERNAME.streamlit.app
- Render: Use the provided
requirements.txt - Heroku: Add a
Procfilewithweb: streamlit run frontend/app.py - Replit: Import the project and run
streamlit run frontend/app.py
📚 Detailed deployment guide: See DEPLOYMENT.md
MIT License