Generate a PDF resume formatted as perscribed by Gayle McDowell from CareerCup, author of Cracking The Coding Interview
using a YAML schema.
Here's a preview 
See the example resume.platf.yaml in the resumes/
directory.
git clone https://github.com/arashout/ResumeGenerator.git
cd ResumeGenerator
uv init
uv add pyyaml jinja2 weasyprint argparseYou can generate your pdf resume by running:
uv run python main.py resumes/resume.platf.yaml -o resumeOptionally you can anonymize your PDF by supplying a second argument:
uv run python main.py resumes/resume.platf.yaml -o resume -a path/to/anon_data.yamlWhere anon_data.yaml is a dictionary where the keys are sensitive information
you want to replace and the values are generic text to replace them with
e.g.
"Arash Outadi": "First Last"
"[email protected]": "[email protected]"
UBC: UA
"University of British Columbia": "University of Anons"
London: UKCity
Vancouver: CADCity
BC: CADProv
Ravelin: Fintech Startup
Andritz: Pulp & Paper
"Canadian Logistics": "Logistics Company"If you don't really care about the CLI tool and just want the HTML template, navigate to the CareerCup directory and you'll find the Jinja2 HTML template and the styles.css stylesheet.
An example of a resume is inside resumes folder