PC load letter
Project description
pcloadletter
A CLI tool to generate PDF documents from HTML templates
"PC LOAD LETTER" - WFT does that mean?!
Usage
pcloadletter lets you generate a pdf document from an HTML Jinja template given some context data from the command line and/or a .yml/.json file.
usage: pcloadletter [-h] [-t TEMPLATE] [-o OUT] [-c CONTEXT_FILE] [extra_context ...]
Generate PDF file from a Jinja-rendered HTML template
positional arguments:
extra_context key=value pairs which are added to the template context (default: None)
optional arguments:
-h, --help show this help message and exit
-t TEMPLATE, --template TEMPLATE
The invoice template to render. (default: invoice.html)
-o OUT, --out OUT Destination file. (default: invoice.pdf)
-c CONTEXT_FILE, --context-file CONTEXT_FILE
A .yml or .json file containing context for the template. (default: None)
Examples:
pcloadletter --template templates/invoice.html --out invoice.pdf invoice_number=2021-001 invoice_date=`date +%Y-%m-%d`
pcloadletter --template report.html --context-file=report-data.yml addressee="Mr. M. Bolton"
For example, given a template file hello.html
:
<!doctype html>
<html lang="en">
<head>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<h1>Hello {{ target }}!</h1>
</body>
</html>
and a stylesheet:
.h1 {
font-style: italic;
}
we can render the pdf like so;
pcloadletter --template hello.html target="world out there"
The context could have been given in a context file hello.yml
;
target: world out there
pcloadletter --template hello.html --context-file=hello.yml
The above commands will generate a file invoice.pdf
in the current directory. You can
change the destination using
--out=~/Documents/report.pdf
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pcloadletter-0.3.1.tar.gz
(9.8 kB
view hashes)
Built Distribution
Close
Hashes for pcloadletter-0.3.1-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | fa778b044e8ac9de0737e8dd7578dbeaf35b36c14763bd8d1e50901353f129c3 |
|
MD5 | 54eb8e261df810eab0d9300f44e1c18d |
|
BLAKE2b-256 | 53b42bc569a4ff234834b3c6b7a24472183973abef76c900a5a73f841c31756e |