{"id":27363644,"url":"https://github.com/seekai-786/resume-analyzer","last_synced_at":"2026-04-08T16:31:45.252Z","repository":{"id":287539468,"uuid":"965036975","full_name":"SeekAI-786/Resume-Analyzer","owner":"SeekAI-786","description":"Resume Analyzer is a prototype web application that allows users to upload multiple resumes and compare them against a job description using vectorization and cosine similarity. The project is built using Python, Flask, and scikit-learn.","archived":false,"fork":false,"pushed_at":"2025-04-12T10:38:02.000Z","size":2056,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-12T11:26:26.995Z","etag":null,"topics":["backend-development","css","document-vectorization","flask","flask-app","html","javascript","job-matching","machine-learning","ml","nlp","nlp-project","osine-similarity","python","pythonanywhere","resume-analyzer","resume-matching","resume-screening-app","sckiit-learn","tfidf"],"latest_commit_sha":null,"homepage":"","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SeekAI-786.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-04-12T09:15:40.000Z","updated_at":"2025-04-12T10:43:31.000Z","dependencies_parsed_at":"2025-04-12T11:26:43.872Z","dependency_job_id":"2f495820-eedc-4b47-9c31-e5f77aca6fc2","html_url":"https://github.com/SeekAI-786/Resume-Analyzer","commit_stats":null,"previous_names":["seekai-786/resume-analyzer"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SeekAI-786%2FResume-Analyzer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SeekAI-786%2FResume-Analyzer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SeekAI-786%2FResume-Analyzer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SeekAI-786%2FResume-Analyzer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SeekAI-786","download_url":"https://codeload.github.com/SeekAI-786/Resume-Analyzer/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248663700,"owners_count":21141824,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["backend-development","css","document-vectorization","flask","flask-app","html","javascript","job-matching","machine-learning","ml","nlp","nlp-project","osine-similarity","python","pythonanywhere","resume-analyzer","resume-matching","resume-screening-app","sckiit-learn","tfidf"],"created_at":"2025-04-13T04:31:50.691Z","updated_at":"2026-04-08T16:31:45.222Z","avatar_url":"https://github.com/SeekAI-786.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\n# Resume Analyzer\n\n**Resume Analyzer** is a prototype web application that allows users to upload multiple resumes and compare them against a job description using vectorization and cosine similarity. The project is built using Python, Flask, and scikit-learn. It can also be enhanced using machine learning models for better efficiency and accuracy — work on this is in progress.\n\n---\n\n## Features\n\n- Supports multiple resume formats: `.pdf`, `.docx`, `.txt`\n- Uses TF-IDF vectorization and cosine similarity for scoring\n- Ranks resumes based on relevance to the provided job description\n- Allows users to upload and store resumes in a custom local path\n- HTML/CSS templates can be customized as per your needs\n- Can be deployed on the web using services like PythonAnywhere\n\n---\n\n## APP Interface\n\n![App Interface](https://github.com/SeekAI-786/Resume-Analyzer/blob/main/r2.png)\n\n---\n\n![App Interface](https://github.com/SeekAI-786/Resume-Analyzer/blob/main/r1.png)\n\n\n---\n## How It Works\n\n1. Users input a job description and upload up to 10 resumes.\n2. The application extracts text from all resumes:\n   - PDF: extracted using PyPDF2\n   - DOCX: extracted using docx2txt\n   - TXT: extracted via standard file read\n3. Text data is vectorized using `TfidfVectorizer` from scikit-learn.\n4. Cosine similarity is calculated between the job description and each resume.\n5. The top 3 matching resumes are displayed along with their similarity scores.\n\n---\n\n## Running the App Locally\n\n### Requirements\n\n- Python 3.7 or higher\n- Required Python packages (Check Requirements.txt)\n\n### Installation\n\n```bash\ngit clone https://github.com/your-username/resume-analyzer.git\ncd resume-analyzer\npip install -r requirements.txt\n```\n\n### Launch the Application\n\n```bash\npython main.py\n```\n\nResume files will be stored in the `uploads/` directory. You can change this path in the `main.py` file as needed.\n\n---\n\n## Deployment\n\nThis app can be deployed to web platforms such as:\n\n- PythonAnywhere\n- Render\n- Railway\n- Heroku (with appropriate setup like a `Procfile`)\n\n---\n\n## Collaboration and Development\n\nWork is ongoing to enhance the application using machine learning for smarter resume-job matching. Planned features include:\n\n- Deep learning-based similarity scoring\n- Better handling of resume formatting and structure\n- Filter options for specific qualifications, skills, or keywords\n- User accounts and dashboard\n\nContributions are welcome. \n\n---\n\n## Tech Stack\n\n- **Frontend**: HTML, CSS (with customization options)\n- **Backend**: Python Flask\n- **Text Processing**: TF-IDF, Cosine Similarity\n- **File Parsing**: PyPDF2, docx2txt\n\n---\n\n## Notes\n\nThis is a prototype and may not handle every edge case. It serves as a proof-of-concept for resume screening and ranking based on textual similarity. For production use, improvements in model robustness and user interface are recommended.\n\n---\n\n## License\n\nMIT License\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fseekai-786%2Fresume-analyzer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fseekai-786%2Fresume-analyzer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fseekai-786%2Fresume-analyzer/lists"}