A package to generate PDF resumes from YAML files using LaTeX templates
Project description
YAML Resume Builder
A Python package to generate PDF resumes from YAML files using LaTeX templates.
Prerequisites
- Python 3.8 or higher
- LaTeX installation with
latexmkcommand available in your PATH:
LaTeX Installation
Linux (Debian/Ubuntu)
sudo apt update && sudo apt install texlive-full latexmk
macOS
Install MacTeX (includes latexmk):
brew install --cask mactex
Windows
Install MiKTeX (includes latexmk):
- Download the MiKTeX Net Installer from https://miktex.org/download
- Choose "Complete" installation to ensure all required packages are installed
- MiKTeX will add pdflatex and latexmk to your PATH automatically
Installation
From PyPI or GitHub
# Install from PyPI
pip install yaml-resume-builder
# Install using uv
uv add yaml-resume-builder
# Or install directly from GitHub
pip install git+https://github.com/husayni/resume_builder.git
# Or install using uv directly from GitHub
uv add https://github.com/husayni/resume_builder.git
For Development
# Clone the repository
git clone https://github.com/husayni/resume_builder.git
cd resume_builder
# Create and activate a virtual environment using uv
uv venv
source .venv/bin/activate
# Install the package in development mode
pip install -e .
Usage
Command Line Interface
# Create a sample YAML resume file
yaml-resume-builder init --output my_resume.yml
# Build a resume from a YAML file
yaml-resume-builder build --input my_resume.yml --output resume.pdf
Python API
from yaml_resume_builder import build_resume
# Build a resume from a YAML file
build_resume(
input_path="my_resume.yml",
output_path="resume.pdf"
)
YAML Format
The YAML file should have the following structure:
name: Your Name
title: Your Title
contact:
email: your.email@example.com
phone: "+1 123 456 7890"
github: yourusername
linkedin: yourusername
education:
- school: University Name
degree: Degree Name
dates: "2020 - 2024"
location: City, Country
experience:
- company: Company Name
role: Your Role
dates: "Jan 2023 - Present"
location: City, Country
bullets:
- Accomplishment 1
- Accomplishment 2
projects:
- name: Project Name
link: https://github.com/yourusername/project
bullets:
- Description 1
- Description 2
skills:
- category: Languages
list: [Python, JavaScript, Java]
- category: Frameworks
list: [Django, React, Spring]
Development
Running Tests
# Run all tests
pytest
# Run tests with coverage
pytest --cov=yaml_resume_builder
# Run linting checks
ruff check .
isort --check --diff .
Pre-commit Hooks
This project uses pre-commit hooks to ensure code quality. To set up pre-commit hooks:
# Install pre-commit
pip install pre-commit
# Install the git hooks
pre-commit install
# Run pre-commit on all files
pre-commit run --all-files
License
This project is licensed under the MIT License - see the LICENSE file for details.
Acknowledgments
- This project uses the LaTeX resume template created by Jake Gutierrez, which is also licensed under the MIT License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file yaml_resume_builder-0.1.5.tar.gz.
File metadata
- Download URL: yaml_resume_builder-0.1.5.tar.gz
- Upload date:
- Size: 11.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a97e6e7e45929af4a24d224e3daa9d01a66cda5d68906735078d6bd9af89d3f9
|
|
| MD5 |
7bf0e45a5cbdc4fcc20e2234511f7da6
|
|
| BLAKE2b-256 |
5789c69993d5971b926aaddef78e151d564c4859c459cb0ff852ef31c28fb369
|
File details
Details for the file yaml_resume_builder-0.1.5-py3-none-any.whl.
File metadata
- Download URL: yaml_resume_builder-0.1.5-py3-none-any.whl
- Upload date:
- Size: 10.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9927c657d20b2b49fc9d38006e88b93a8eec43991a04dfcacb263cae4cdc70be
|
|
| MD5 |
2e22839a77cf0f9e8c3e684e2becffe7
|
|
| BLAKE2b-256 |
67fbcb7716e62330fefff5b8a5f0858c323b6308e4553a0759b6c17911eb113d
|