Metadata-Version: 2.4
Name: yaml-to-resume
Version: 0.1.2
Summary: Builds professional PDF resumes from simple YAML files using Jinja2 templates.
Author: Mohamed Wafy
License: MIT
Project-URL: Homepage, https://github.com/MoWafy001/YAML-To-Resume
Project-URL: Bug Tracker, https://github.com/MoWafy001/YAML-To-Resume/issues
Keywords: resume,cv,yaml,jinja2,pdf,weasyprint
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: PyYAML
Requires-Dist: weasyprint
Requires-Dist: platformdirs
Requires-Dist: jinja2

# YAML-To-Resume

Generate professional PDF resumes from simple YAML files using Jinja2 templates.

## Quick Start

### 1. Install
```bash
pip install yaml-to-resume
```

### 2. Initialize
```bash
yaml-to-resume init -y
```

### 3. Build Resume
```bash
# 'build' is the default command, so you can just pass the file
yaml-to-resume examples/01-basic/resume.yaml
```

---

## Documentation

Comprehensive technical references are available on the [GitHub repository documentation folder](https://github.com/MoWafy001/YAML-To-Resume/tree/main/docs):

- **[CLI Tool Reference](https://github.com/MoWafy001/YAML-To-Resume/blob/main/docs/cli.md)**: Detailed command usage, flags, and subcommands.
- **[YAML Resume Schema](https://github.com/MoWafy001/YAML-To-Resume/blob/main/docs/yaml_resume.md)**: Full specification for writing resume data files, including all supported block types.
- **[Template Development Guide](https://github.com/MoWafy001/YAML-To-Resume/blob/main/docs/templates.md)**: Technical guide for creating and modifying Jinja2 templates.

---

## Examples

For progressive examples ranging from basic to advanced inheritance, see the [examples/](https://github.com/MoWafy001/YAML-To-Resume/tree/main/examples) directory on GitHub.
