my-resume-generator

A resume generator from a markdown file


License
MIT
Install
pip install my-resume-generator==0.1.1

Documentation

My Resume Generator

This is a small program for generating cool resumes in HTML or PDF from a markdown file from the command line. You may style your template with CSS code!

Installation

This is pretty simple to install. The only requirement is python 3.

To install execute from the command line:

$ pip install my-resume-generator

Usage

You can generate the resume in HTML or PDF.

To generate in HTML, execute:

$ my-resume-generator --source path/to/markdown/file.md > my-resume-in-html.html

To generate in PDF, execute:

$ my-resume-generator --source path/to/markdown/file.md | pisa -b my-resume-in-pdf

Options

There are only to options you can inform to my-resume-generator, which are:

-s, --source: The path to the markdown file from which the resume will be generated

-t, --template: (optional) The template file to be used. It's a HTML file with a {{ content }} tag that will be overwritten with the HTML generated from the markdown file. If not informed, it will use a default template that is located inside templates folder.