mirror of
https://github.com/rendercv/rendercv.git
synced 2026-04-25 09:36:13 -04:00
14 lines
269 B
Python
14 lines
269 B
Python
"""
|
|
This module is a script to run the RenderCV and generate a CV as a PDF.
|
|
"""
|
|
|
|
import os
|
|
|
|
|
|
import rendercv
|
|
|
|
input_name = "personal"
|
|
workspace = os.path.dirname(__file__)
|
|
file_path = os.path.join(workspace, "tests", "inputs", f"{input_name}.yaml")
|
|
|
|
rendercv(file_path) |