{"id":28376714,"url":"https://github.com/sarvamm/rescueme","last_synced_at":"2025-06-26T14:31:23.255Z","repository":{"id":287813308,"uuid":"965872421","full_name":"Sarvamm/RescueMe","owner":"Sarvamm","description":"Quickly generate a high ATS score resumé.","archived":false,"fork":false,"pushed_at":"2025-04-17T10:05:28.000Z","size":162,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-30T00:07:37.964Z","etag":null,"topics":["latex","pdf","resume","resume-generator","resume-template","streamlit"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Sarvamm.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":"sarvamm","buy_me_a_coffee":"astrayn"}},"created_at":"2025-04-14T03:38:16.000Z","updated_at":"2025-04-26T06:11:51.000Z","dependencies_parsed_at":"2025-04-18T00:46:30.563Z","dependency_job_id":null,"html_url":"https://github.com/Sarvamm/RescueMe","commit_stats":null,"previous_names":["sarvamm/rescueme","sarvamm/rescueme---resume-creator"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Sarvamm/RescueMe","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sarvamm%2FRescueMe","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sarvamm%2FRescueMe/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sarvamm%2FRescueMe/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sarvamm%2FRescueMe/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Sarvamm","download_url":"https://codeload.github.com/Sarvamm/RescueMe/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sarvamm%2FRescueMe/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262084675,"owners_count":23256286,"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":["latex","pdf","resume","resume-generator","resume-template","streamlit"],"created_at":"2025-05-30T00:07:38.401Z","updated_at":"2025-06-26T14:31:23.245Z","avatar_url":"https://github.com/Sarvamm.png","language":"Python","funding_links":["https://github.com/sponsors/sarvamm","https://buymeacoffee.com/astrayn"],"categories":[],"sub_categories":[],"readme":"![RescueMé Banner](https://raw.githubusercontent.com/Sarvamm/rescueme/refs/heads/main/assets/logo.png)\nCreate beautiful, professional resumes using LaTeX – no LaTeX knowledge required!\n\nRescueMé! is a web app built with [Streamlit](https://streamlit.io/) that lets you fill out a form and instantly generate a polished PDF resume using a LaTeX template. It’s fast, open-source, and easy to use.\n\n\n## 📦 Features\n\n- Fill in your resume content using simple forms  \n- Auto-generate `.tex` source file from inputs  \n- Compiles LaTeX to high-quality PDF resume  \n- Download the final PDF instantly  \n\n---\n\n## 🛠 Installation \u0026 Setup\n\n### 1. Clone the Repository\n\n```bash\ngit clone https://github.com/sarvamm/rescueme.git\ncd rescueme\n```\n\n### 2. Install Python Dependencies\n\n```bash\npip install -r requirements.txt\n```\n\nOr manually:\n\n```bash\npip install streamlit\n```\n\n\u003e Other libraries used (`os`, `base64`, `subprocess`, `tempfile`) are part of the Python standard library.\n\n---\n\n### 3. Install a LaTeX Compiler\n\nThe app uses `pdflatex` to compile LaTeX into PDF.\n\n#### Windows\n\n- Install [MiKTeX](https://miktex.org/download)\n- Ensure `pdflatex` is added to your system `PATH`\n- Test it:\n\n```bash\npdflatex --version\n```\n\n#### Linux\n\n```bash\nsudo apt update\nsudo apt install texlive-latex-base\n```\n\n#### macOS\n\n```bash\nbrew install --cask mactex\n```\n\nOr get MacTeX from [https://tug.org/mactex/](https://tug.org/mactex/)\n\n---\n\n##  Run the App\n\n```bash\nstreamlit run app.py\n```\n\nThe app will open at `http://localhost:8501` in your browser.\n\n---\n\n## 📁 Project Structure\n```\nRESCUEME/\n│\n├── .streamlit/\n│   └── config.toml               # Streamlit app config (title, icon, etc.)\n│\n├── assets/\n│   └── logo.png                  # App logo\n│\n├── pages/                        # Multi-page structure for Streamlit\n│   ├── About.py                  # About page of RescueMé!\n│   ├── GetStarted.py             # Setup \u0026 installation instructions\n│   └── Main.py                   # Main functionality (resume generation)\n│\n├── App.py                        # Entry point of the Streamlit app\n├── LICENSE                       # MIT License for open-source usage\n├── readme.md                     # Project overview and usage guide\n└── Requirement.txt               # Python dependencies\n```\n\n## 🤝 Contributing\n\nPull requests are welcome! Feel free to fork the repo, make improvements, and submit a PR.  \nFor major changes, please open an issue first to discuss what you’d like to change.\n\n---\n\n## 📬 Contact\n \n🔗 [LinkedIn](https://www.linkedin.com/in/sarvamm) • [GitHub](https://github.com/sarvamm) • [Buy me a Coffee](https://buymeacoffee.com/astrayn) \n\n---\n\n## 📃 License\n\nThis project is licensed under the Non-Profit Open Software License version 3.0\n\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsarvamm%2Frescueme","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsarvamm%2Frescueme","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsarvamm%2Frescueme/lists"}