mirror of
https://github.com/rendercv/rendercv.git
synced 2026-01-01 18:08:07 -05:00
3.7 KiB
3.7 KiB
hide
| hide | |
|---|---|
|
RenderCV
::: rendercv
In this section, you can find how RenderCV's components are structured and how they interact with each other. The flowchart below illustrates the general operations of RenderCV.
flowchart TD
subgraph rendercv.data
A[YAML Input File] --parsing with ruamel.yaml package--> B(Python Dictionary)
B --validation with pydantic package--> C((Pydantic Object))
end
subgraph rendercv.themes
C --> AA[(Jinja2 Templates)]
end
AA --> D
AA --> E
subgraph rendercv.renderer
E[Markdown File] --markdown package--> K[HTML FIle]
D[LaTeX File] --TinyTeX--> L[PDF File]
L --PyMuPDF package--> Z[PNG Files]
end
clipackage contains the command-line interface (CLI) related code for RenderCV.commands.pymodule contains the CLI commands.printer.pymodule contains the functions and classes that are used to print nice-looking messages to the terminal.utilities.pymodule contains utility functions that are required by the CLI.
datapackage contains classes and functions to parse and validate a YAML input file.modelspackage contains the Pydantic data models, validators, and computed fields that are used in RenderCV.computers.pymodule contains functions that compute some properties based on the input data.base.pymodule contains the base data model for the other data models.entry_types.pymodule contains the data models of the available entry types in RenderCV.curriculum_vitae.pymodule contains the data model of thecvfield of the input file.design.pymodule contains the data model of thedesignfield of the input file.locale_catalog.pymodule contains the data model of thelocale_catalogfield of the input file.rendercv_data_model.pymodule contains theRenderCVDataModeldata model, which is the main data model that defines the whole input file structure.
generator.pymodule contains the functions for generating the JSON Schema of the input data format and a sample YAML input file.reader.pymodule contains the functions that are used to read the input files.
rendererpackage contains the necessary classes and functions for generating the output files from theRenderCVDataModelobject.renderer.pymodule contains the necessary functions for rendering\\LaTeX, PDF, Markdown, HTML, and PNG files from the data model.templater.pymodule contains the necessary classes and functions for templating the\\LaTeXand Markdown files from the data model. object.
themespackage contains the built-in themes of RenderCV.common_options.pymodule contains some standard data models for design options.classicpackage contains theclassictheme templates and data models for its design options.engineeringresumespackage contains theengineeringresumestheme templates and data models for its design options.sb2novpackage contains thesb2novtheme templates and data models for its design options.moderncvpackage contains themoderncvtheme templates and data models for its design options.