{"id":24762037,"url":"https://github.com/pranavh-2004/resumebuilder","last_synced_at":"2026-02-16T08:34:50.975Z","repository":{"id":270117068,"uuid":"909385391","full_name":"Pranavh-2004/ResumeBuilder","owner":"Pranavh-2004","description":"An automated resume builder in Python that generates professional PDFs based on user data and customizable templates","archived":false,"fork":false,"pushed_at":"2025-01-15T18:42:10.000Z","size":14,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-22T06:34:12.957Z","etag":null,"topics":["automation","cli","developer-tools","pdf-generation","python","reportlab","resume-generator","unit-testing"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Pranavh-2004.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}},"created_at":"2024-12-28T14:47:51.000Z","updated_at":"2025-01-15T18:42:12.000Z","dependencies_parsed_at":"2025-01-28T19:20:20.760Z","dependency_job_id":"9b754e2a-a747-4324-8eec-842d55779aed","html_url":"https://github.com/Pranavh-2004/ResumeBuilder","commit_stats":null,"previous_names":["pranavh-2004/resumebuilder"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Pranavh-2004/ResumeBuilder","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Pranavh-2004%2FResumeBuilder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Pranavh-2004%2FResumeBuilder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Pranavh-2004%2FResumeBuilder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Pranavh-2004%2FResumeBuilder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Pranavh-2004","download_url":"https://codeload.github.com/Pranavh-2004/ResumeBuilder/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Pranavh-2004%2FResumeBuilder/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29503815,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-16T08:14:25.707Z","status":"ssl_error","status_checked_at":"2026-02-16T08:14:25.334Z","response_time":115,"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":["automation","cli","developer-tools","pdf-generation","python","reportlab","resume-generator","unit-testing"],"created_at":"2025-01-28T19:20:14.701Z","updated_at":"2026-02-16T08:34:50.947Z","avatar_url":"https://github.com/Pranavh-2004.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ResumeBuilder\n\nWelcome to the **ResumeBuilder** project! This project is a CLI tool that allows users to generate professional resumes by populating their details in a JSON format. The tool can display the resume in the terminal and also generate a PDF version.\n\n## Overview\n\nThe **ResumeBuilder** project is designed to help users easily generate resumes from structured JSON data. It provides:\n\n- Display of resume details in the terminal.\n- PDF generation using the `reportlab` library.\n- Validation for required fields like contact information, education, professional experience, projects, and skills.\n\n## Features\n\n- **Load Data**: Loads user data from a `user_data.json` file.\n- **Data Validation**: Validates the user data to ensure it meets all required fields.\n- **Resume Display**: Displays the resume details in a formatted text layout in the terminal.\n- **PDF Generation**: Generates a PDF version of the resume saved in the `output/` folder.\n\n## Getting Started\n\n### Prerequisites\n\n1. Install Python 3.x.\n2. Install the required dependencies using `requirements.txt`:\n\n   ```bash\n   pip install -r requirements.txt\n   ```\n\n## Folder Structure\n\n- **data/**: Contains the JSON files for user data (`user_data.json`) and templates (`template.json`).\n- **output/**: Directory where the generated PDFs are saved.\n- **src/**: The source code for the project, including scripts for building the resume, handling files, generating PDFs, and validating data.\n- **tests/**: Unit tests for each module in the project.\n- **venv/**: Python virtual environment.\n\n## Running the Application\n\n1. Place your `user_data.json` file inside the `data/` folder. This file should include the user’s information, such as name, contact details, education, professional experience, projects, and skills. Please use template.json as reference to fill your user_data.json\n2. To display the resume in the terminal and generate the PDF, run the `main.py` file:\n\n```bash\npython src/main.py\n```\n\n## Data Validation\n\nThe `validator.py` module validates the user data to ensure all required fields are present and properly formatted. It checks:\n\n- Valid email format.\n- Valid phone number format (e.g., +1 234567890).\n- Valid LinkedIn URL format.\n- Required fields in education and professional experience.\n\n## PDF Generation\n\nOnce the data is validated, the ResumeBuilder will generate a PDF file named `name_resume.pdf` in the `output/` folder, where `name` is the user’s full name.\n\n## Testing\n\nUnit tests for each module are located in the `tests/` folder. You can run the tests using:\n\n```bash\npython -m unittest discover -s tests/\n```\n\n## License\n\nThis project is open-source and available under the MIT License. See the `LICENSE` file for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpranavh-2004%2Fresumebuilder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpranavh-2004%2Fresumebuilder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpranavh-2004%2Fresumebuilder/lists"}