mirror of https://github.com/eyhc1/rendercv.git
15 lines
303 B
Python
15 lines
303 B
Python
"""
|
|
This module is a script to run the RenderCV and generate a CV as a PDF.
|
|
"""
|
|
|
|
import os
|
|
|
|
|
|
import rendercv.__main__ as rendercv
|
|
|
|
input_name = "personal"
|
|
workspace = os.path.dirname(__file__)
|
|
file_path = os.path.join(workspace, "tests", "inputs", f"{input_name}.yaml")
|
|
|
|
rendercv.main(args=[file_path])
|