Skip to main content

The holiest cli template system

Project description

tmplr

This project is considered stable

Generate project files from templates on the command-line

Installation

tmplr is on pip, so just

# python3 -m pip install tmplr

tmplr requires python 3 or greater.

Usage

If you find yourself creating lots of similar scripts or files, and you usually just do something like

# cp old new
# $EDITOR new

then tmplr is the solution.

Create temples (templates), then generate a file and start editing with

# tmplr sample-script var=value func_name=my_func -f script

See your templates, or edit them, using the temples command:

# temples
sample-script
vim-ftplugin
# temples -t sample-script
sample-script : sample sh script
Placeholders
	var
	func_name
# temples -e -t sample-script

(This is based on the example given at the end of the format description.)

See below for the temple file format.

By default, temples live in ~/.tmplr, but this is configurable with the -d switch to both programs.

Supply -h for more options.

Temple-file format

A Temple file consists of two parts:

  1. header
  2. content

The header provides metadata specific to tmplr, and will be omitted when the template is rendered into output.

The content is text, containing special template sequences which will be substituted by render arguments upon output.

File extensions are ignored.

Header format

The first line of the header must consist of the same character repeated thrice. We call this the "comment character" because, if you use a character considered a comment for the normal file content, editors will not choke on Temple headers.

The next lines consist of metadata and all follow this format:

{comment character} key : value

A value ends once the line is terminated by a newline character.

After the metadata is the last line of the header--it is a carbon copy of the first line of the header.

Anything after the second sequence of 3 comment characters is considered content and read literally.

Temple metadata

The supported key-value pairs are:

  • output The output directive can be a path (with ~ expansions), optionally containing the sequence {fname}. If the rendered template is written, it will be written to this path, with {fname} substituted for a filename by the engine (see tmplr.temple.Temple.write).

    If output is instead the string 'stdout', the rendered template will be printed to standard out.

  • help The help directive provides a short description of the template

  • delim The delim directive decides the special sequences that require render arguments.

    Any text of delim followed by name, or delim{name}, will be replaced by the render argument name (see tmplr.temple.Temple.render).

    Take care to choose a delim value that will not appear in the template except for in these escape sequences.

Unsupported values will be ignored, but not cause a parsing error.

Example

###
# output : /tmp/tmplr-test-example-{fname}
# help : sample sh script
# delim : %%
###
#! /bin/sh

var=%%var
%%{func_name} () {
  echo do something
}

echo ${%%var}

End Example

In this example, the comment character is '#' because the file is a shell script. %%var will be replaced in both places (since %% is the delim) by the var argument to render. Similarly %%{func_name} will be replaced the func_name argument to render.

If fname is passed as, e.g., templar, the result will be written to /tmp/tmplr-test-example-templar.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tmplr-0.2.1.tar.gz (7.8 kB view details)

Uploaded Source

Built Distribution

tmplr-0.2.1-py3-none-any.whl (10.0 kB view details)

Uploaded Python 3

File details

Details for the file tmplr-0.2.1.tar.gz.

File metadata

  • Download URL: tmplr-0.2.1.tar.gz
  • Upload date:
  • Size: 7.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3

File hashes

Hashes for tmplr-0.2.1.tar.gz
Algorithm Hash digest
SHA256 9054c54c62e577291ad01fc83edde505968431200ae882281f8e6d9ab3699070
MD5 72ce14f3eaa868b15c1dd69b0a0630ce
BLAKE2b-256 8eda4b507f961d9ef05c98c55cff7dcd77916aaa068f36cc20c8ef7918b95dba

See more details on using hashes here.

File details

Details for the file tmplr-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: tmplr-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 10.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3

File hashes

Hashes for tmplr-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 e62f9c05205c66a4046b9c51ae0e3f0c1731bf428c127eacd1387a876d07cf91
MD5 08c8cc07d1dcebe1553d4978d923bc63
BLAKE2b-256 8e345ab849c096b76cbfeab4a35e214448b5f5afea66aaf5d61bb4965d16bd28

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page