{"id":25287572,"url":"https://github.com/mrshakil015/resume-analyzer-project","last_synced_at":"2026-04-28T18:34:39.658Z","repository":{"id":149207694,"uuid":"609643769","full_name":"mrshakil015/Resume-Analyzer-Project","owner":"mrshakil015","description":"Natural language processing (NLP) based web application project that analyze resumes for a hiring company. The main aim of this project is to provide an efficient and objective solution for employers to evaluate candidate resumes based on job requirements, streamlining the hiring process and improving the candidate experience.","archived":false,"fork":false,"pushed_at":"2023-06-08T12:21:14.000Z","size":4771,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-06T17:15:15.534Z","etag":null,"topics":["flask","nlp","python"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mrshakil015.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2023-03-04T19:53:34.000Z","updated_at":"2023-06-08T12:10:53.000Z","dependencies_parsed_at":null,"dependency_job_id":"cdceb43b-d5c9-496b-99fb-c08ba1b5a50c","html_url":"https://github.com/mrshakil015/Resume-Analyzer-Project","commit_stats":null,"previous_names":["mrshakil015/resume-analyzer-project"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mrshakil015/Resume-Analyzer-Project","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrshakil015%2FResume-Analyzer-Project","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrshakil015%2FResume-Analyzer-Project/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrshakil015%2FResume-Analyzer-Project/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrshakil015%2FResume-Analyzer-Project/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mrshakil015","download_url":"https://codeload.github.com/mrshakil015/Resume-Analyzer-Project/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrshakil015%2FResume-Analyzer-Project/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32394465,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-28T14:34:11.604Z","status":"ssl_error","status_checked_at":"2026-04-28T14:32:37.009Z","response_time":56,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["flask","nlp","python"],"created_at":"2025-02-12T22:50:49.219Z","updated_at":"2026-04-28T18:34:39.642Z","avatar_url":"https://github.com/mrshakil015.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdetails\u003e\n  \u003csummary\u003e\u003cb\u003ePython Flask Virtual Environment Create\u003c/b\u003e\u003c/summary\u003e\n  \n  Flask is a web framework that provides libraries to build lightweight web applications in python.\u003c/br\u003e\n\u003c/br\u003e\u003cb\u003eInstall Virtual Environment:\u003c/b\u003e\n  - virtualenv is considered as the virtual python environment builder which is used to create the multiple python virtual environment side by side. \n  - At first open \u003ccode\u003eVisual Studio Code\u003c/code\u003e then use following command to install virtual environment:\n  \n    - \u003ccode\u003epip install virtualenv\u003c/code\u003e\n  - Once it is installed, we can create the new virtual environment into a folder as given below.\n    - \u003ccode\u003epython -m venv env\u003c/code\u003e\n  - To activate the corresponding environment, use the following command on the Windows operating system.\n    - \u003ccode\u003e.\\env\\Scripts\\activate\u003c/code\u003e\n  - If your \u003ccode\u003epip\u003c/code\u003e is not upgraded then upgrade the \u003ccode\u003epip\u003c/code\u003e:\n    - \u003ccode\u003epython -m pip install --upgrade pip\u003c/code\u003e\n  - Now install the flask by using the following command:\n    - \u003ccode\u003epip install flask\u003c/code\u003e\n  - After installation now create a first Flask application. Create this application outside the \u003ccode\u003eenv\u003c/code\u003e folder.Like- \u003ccode\u003eapp.py\u003c/code\u003e, you can use any types of name. Write the following lines of code to check the application.\n  ```python\nfrom flask import Flask\napp = Flask (__name__)\n\n@app.route(\"/\")\ndef home():\n    return \"Hello world\"\nif __name__ == \"__main__\":\n    app.run(debug=True) \n  ```\n  - For run this code \u003ccode\u003eSelect Interpreter\u003c/code\u003e press \u003ccode\u003eCtrl+Shipt+P\u003c/code\u003e. Then select \u003ccode\u003eenv\u003c/code\u003e interpreter. Like this type- \u003ccode\u003ePython 3.10.10('env':venv).\\env\\Script\\python.exe\u003c/code\u003e\n  - Let's run this python code using this command:\n    - \u003ccode\u003epython -m flask run\u003c/code\u003e\n  - To show this output on web browser \u003ccode\u003ectrl+click\u003c/code\u003e the following lines in your terminal: \u003ccode\u003eRunning on http://127.0.0.1:5000\u003c/code\u003e\n  \n\n\u003c/detail\u003e\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrshakil015%2Fresume-analyzer-project","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmrshakil015%2Fresume-analyzer-project","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrshakil015%2Fresume-analyzer-project/lists"}