{"id":22986578,"url":"https://github.com/sandippalit/resume-template","last_synced_at":"2025-04-22T14:21:57.564Z","repository":{"id":195465901,"uuid":"692938960","full_name":"SandipPalit/Resume-Template","owner":"SandipPalit","description":"Crafting a stunning resume is now easier than ever with our Resume Template. Powered by the versatility of Python and the user-friendly Streamlit framework, this template empowers you to create an impressive online resume effortlessly.","archived":false,"fork":false,"pushed_at":"2023-09-21T04:00:25.000Z","size":538,"stargazers_count":13,"open_issues_count":1,"forks_count":4,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-29T15:51:08.039Z","etag":null,"topics":["hacktoberfest","python","resume","streamlit","template"],"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/SandipPalit.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}},"created_at":"2023-09-18T02:28:55.000Z","updated_at":"2025-03-03T08:40:29.000Z","dependencies_parsed_at":"2023-09-18T05:21:44.771Z","dependency_job_id":"62ed2064-347c-4b87-8f5c-fcf169ba3e75","html_url":"https://github.com/SandipPalit/Resume-Template","commit_stats":null,"previous_names":["sandippalit/resume-template"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SandipPalit%2FResume-Template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SandipPalit%2FResume-Template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SandipPalit%2FResume-Template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SandipPalit%2FResume-Template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SandipPalit","download_url":"https://codeload.github.com/SandipPalit/Resume-Template/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250255776,"owners_count":21400411,"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":["hacktoberfest","python","resume","streamlit","template"],"created_at":"2024-12-15T03:50:42.376Z","updated_at":"2025-04-22T14:21:57.543Z","avatar_url":"https://github.com/SandipPalit.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Resume Template](documentation/banner.jpg)\n\n**I'm excited to introduce my latest creation: an online Resume Template powered by Python and Streamlit 📄**\n\nThis dynamic template offers a modern and professional look while allowing you to easily customize your resume with your own details and achievements. With interactive elements and a user-friendly interface, it's designed to make your resume not only informative but also engaging. Whether you're showcasing your skills to potential employers, clients, or connections, this template is the perfect tool to help you stand out in the digital landscape.\n\n## Contents\n* [**Setup the Code locally**](#setup-the-code-locally)\n* [**Customize the Resume**](#customize-the-resume)\n* [**Deploy on Streamlit Cloud**](#deploy-on-streamlit-cloud)\n* [**Examples**](#examples)\n* [**Reach out to Us**](#reach-out-to-us)\n\n## Setup the Code locally\n\nTo transform this Resume Template, to your wonderful online Resume, we will follow some simple steps. Starting with getting a copy of the codebase, in our local machine.\n\nTo setup the code locally in our machine, we will follow these steps:\n1. Fork this [Resume Template repository](https://github.com/SandipPalit/Resume-Template). ![Fork](documentation/fork.jpg)\n2. Download the Codebase on your Local machine.\n3. Open the Codebase in PyCharm or any IDE of your choice.\n4. Open Terminal and Run `pip install -r requirements.txt`, to install the necessary libraries.\n\n\u003cbr\u003e\n\nIt will take some time, after which our setup will be completed.\n\n## Customize the Resume\n\nNow here comes the most interesting part, to customize this Resume Template we only need to change the content of some JSON files. Yes, you read it right!! We don't have to change any piece of code.\n\nWe can use Markdown text formatting in our text descriptions, like `**Bold**` for **Bold**, `_Italic_` for _Italic_, and `[Link](https://www.google.com)` for [Link](https://www.google.com).\n\nBefore customizing our code, we will start our streamlit app by running `streamlit run app.py` in the Terminal. The app will start on our default browser, and we will get the exact same UI as seen on [the Template](https://resume-template.streamlit.app/).\n\nNow, all we need to do is, modify the files in the **assets** folder, which has the following file structure.\n\n![Assets File Structure](documentation/assets_file_structure.jpg)\n\n###  _icon.png_\n\nThis is a generic icon image, as seen on the Tab. We can keep this image as it is.\n\n###  _picture.jpg_\n\nThis is your Display Picture in the Header section. Replace this picture with your professional photo. Please note that your face should be clearly visible with proper lighting.\n\n###  _resume.pdf_\n\nThis is your Resume that the users will be able to download from the Header section. Replace this file with your own Resume, in pdf format.\n\n###  _01_sections.json_\n\nThis is the main Config file that Enables or Disables each of the sections. \n\n```json\n{\n  \"SOCIAL_MEDIA\" : true,\n  \"SKILLS\" : true,\n  \"WORK_EXPERIENCE\" : true,\n  \"EDUCATION\" : true,\n  \"PROJECTS\" : true,\n  \"PUBLICATIONS\" : true,\n  \"PUBLIC_SPEAKING\" : true,\n  \"CERTIFICATES\" : true,\n  \"ACCOMPLISHMENTS\" : true\n}\n```\n\nBy default, all the sections are enabled. To disable any section, navigate to `/assets/01_sections.json` file and change it's boolean value to `false`.\n\n###  _02_header.json_\n\nThis section contains the Page Title and some basic information about you, like your Name and Description.\n\n```json\n{\n  \"PAGE_TITLE\" : \"\",\n  \"NAME\" : \"\",\n  \"DESCRIPTION\" : \"\"\n}\n```\n\nTo customize this section, navigate to `/assets/02_header.json` file and update the following values:\n* **PAGE_TITLE** : Enter the Title of your online Resume webpage.\n* **NAME** : Enter your Full Name.\n* **DESCRIPTION** : Enter your Description or Overview.\n\n###  _03_social_media.json_\n\nThis section contains your Social Media links.\n\n```json\n{\n  \"MAX_SOCIAL_MEDIA_COLUMNS\" : 5,\n  \"SOCIAL_MEDIA\" : {}\n}\n```\n\nTo customize this section, navigate to `/assets/03_social_media.json` file and update the following values:\n* **MAX_SOCIAL_MEDIA_COLUMNS** : Enter the maximum number of Values or Columns to display within a Row.\n* **SOCIAL_MEDIA** : Enter your Social Media links in `\"Platform\" : \"Link\"` format.\n\n###  _04_skills.json_\n\nThis section contains your Technical Skills.\n\n```json\n{\n  \"MAX_SKILLS_COLUMNS\" : 5,\n  \"SKILLS\" : []\n}\n```\n\nTo customize this section, navigate to `/assets/04_skills.json` file and update the following values:\n* **MAX_SKILLS_COLUMNS** : Enter the maximum number of Values or Columns to display within a Row.\n* **SKILLS** : Enter the list of your Skills.\n\n###  _05_work_experience.json_\n\nThis section contains your Work Experience till date. Kindly list your experience in reverse chronological order.\n\n```json\n{\n  \"WORK_EXPERIENCE\": [\n    {\n      \"DESIGNATION\" : \"\",\n      \"COMPANY\" : \"\",\n      \"DURATION\" : \"\",\n      \"DETAILS\" : []\n    }\n  ]\n}\n```\n\nTo customize this section, navigate to `/assets/05_work_experience.json` file and update the following values:\n* **WORK_EXPERIENCE** : Enter your work experience as list of object (mentioned below).\n  * **DESIGNATION** : Enter your Designation or Role.\n  * **COMPANY** : Enter the Name of the Company.\n  * **DURATION** : Enter the Start Date and End Date in `Month, Year` format.\n  * **DETAILS** : Enter the list of statements to showcase your impact.\n\n###  _06_education.json_\n\nThis section contains your Education till date. Kindly list your experience in reverse chronological order. You may also disable this section, if you are a senior employee.\n\n```json\n{\n  \"EDUCATION\": [\n    {\n      \"COURSE\" : \"\",\n      \"COLLEGE\" : \"\",\n      \"DURATION\" : \"\",\n      \"DETAILS\" : []\n    }\n  ]\n}\n```\n\nTo customize this section, navigate to `/assets/06_education.json` file and update the following values:\n* **EDUCATION** : Enter your Education details as list of object (mentioned below).\n  * **COURSE** : Enter the name of your Course.\n  * **COLLEGE** : Enter the Name of the College or University.\n  * **DURATION** : Enter the Start Date and End Date in `Year` format.\n  * **DETAILS** : Enter the list of statements to showcase your academic performance.\n\n###  _07_projects.json_\n\nThis section contains your Projects. Kindly add links to the deployed creation or atleast the GitHub repository.\n\n```json\n{\n  \"PROJECTS\": []\n}\n```\n\nTo customize this section, navigate to `/assets/07_projects.json` file and update the following values:\n* **PROJECTS** : Enter the list of your Projects.\n\n###  _08_publications.json_\n\nThis section contains your Publications. Kindly add links to the articles.\n\n```json\n{\n  \"PUBLICATIONS\": []\n}\n```\n\nTo customize this section, navigate to `/assets/08_publications.json` file and update the following values:\n* **PUBLICATIONS** : Enter the list of your Publications.\n\n###  _09_public_speaking.json_\n\nThis section contains your Sessions. Kindly add links to the event photos, if possible.\n\n```json\n{\n  \"PUBLIC_SPEAKING\": []\n}\n```\n\nTo customize this section, navigate to `/assets/09_public_speaking.json` file and update the following values:\n* **PUBLIC_SPEAKING** : Enter the list of your Sessions.\n\n###  _10_certificates.json_\n\nThis section contains your Certificates. Kindly add links to the Badges or Certificates.\n\n```json\n{\n  \"MAX_CERTIFICATES_COLUMNS\" : 2,\n  \"CERTIFICATES\" : {}\n}\n```\n\nTo customize this section, navigate to `/assets/10_certificates.json` file and update the following values:\n* **MAX_CERTIFICATES_COLUMNS** : Enter the maximum number of Values or Columns to display within a Row.\n* **CERTIFICATES** : Enter your Certificate links in `\"Certificate\" : \"Link\"` format.\n\n###  _11_accomplishments.json_\n\nThis section contains your Accomplishments or Rewards. Kindly add links to the certificates, if possible.\n\n```json\n{\n  \"ACCOMPLISHMENTS\": []\n}\n```\n\nTo customize this section, navigate to `/assets/11_accomplishments.json` file and update the following values:\n* **ACCOMPLISHMENTS** : Enter the list of your Accomplishments or Rewards.\n\n\u003cbr\u003e\n\nFinally, we have updated all the necessary files and customized our Resume!! Take a short rest, and refresh the webpage.\n\n**3.. 2.. 1.. Your updated Resume is ready!!** 🎉\n\n## Deploy on Streamlit Cloud\n\nWe have our Resume ready, but locally. Now we need to deploy it to the **Streamlit Cloud**, so that we can share it with various recruiters globally.\n\nTo deploy our code, we will follow these steps:\n1. Upload the codebase to your GitHub repository, that you created in [Setup the Code locally](#setup-the-code-locally) step, using GitHub Desktop or GitHub web interface.\n2. Navigate to [Streamlit Community Cloud](https://streamlit.io/cloud).\n3. **Sign Up** to create your account.\n4. Link your GitHub account.\n5. Navigate to the homepage and click on the **New App** button. ![New App](documentation/new_app.jpg)\n6. Update the following configuration.\n   * Select your GitHub **Repository**. \n   * Keep the **Branch** as `main`. \n   * Update **Main file path** to `app.py`. \n   * Customize the **App URL**. ![Deploy Config](documentation/deploy_config.jpg)\n7. Click on the **Deploy!** button.\n8. Kindly ensure that, your App is publicly accessible. ![Public Access](documentation/public_access.jpg)\n\nYou can also refer to [How to Deploy Your App to Streamlit Community Cloud](https://www.youtube.com/watch?v=HKoOBiAaHGg) video on Youtube, for more clarification.\n\n\u003cbr\u003e\n\n**Taadaaaaa!! Your online Resume is ready for new exciting Opportunities!!** 🎊\n\n## Examples\n\nHere are few resume, that was created using this Resume Template:\n* [**Sandip Palit**](https://sandippalit-resume.streamlit.app/)\n\nIf you would like us to Showcase your profile, kindly share your details in the [Discussion](https://github.com/SandipPalit/Resume-Template/discussions) tab.\n\n## Reach out to Us\n\nIf you have any doubts, kindly let us know in the [Discussion](https://github.com/SandipPalit/Resume-Template/discussions) tab.\n\nIf you encounter any Bug or Issues, kindly raise them in the [Issues](https://github.com/SandipPalit/Resume-Template/issues/new?template=bug_report.md) tab.\n\nIf you would like to help us with Feature requests, kindly share them in the [Issues](https://github.com/SandipPalit/Resume-Template/issues/new?template=feature_request.md) tab.\n\nFeel free to reach out to the creator, **Sandip Palit** on [Linkedin](https://www.linkedin.com/in/sandip-palit/).\n\n\u003cbr\u003e\n\n---\n\n**_Please share your valuable feedback in the [Discussion](https://github.com/SandipPalit/Resume-Template/discussions) tab, and support this [Resume Template repository](https://github.com/SandipPalit/Resume-Template) by giving a 🌟_**.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsandippalit%2Fresume-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsandippalit%2Fresume-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsandippalit%2Fresume-template/lists"}