GitHub - pwwang/pipen-filters: Add a set of useful filters for pipen templates. (original) (raw)


Add a set of useful filters for pipen templates.

These filters can be used for both liquid and jinja2 templating in pipen.

API documentation

Installation

pip install -U pipen-filters

Enabling/Disabling the plugin

The plugin is registered via entrypoints. It's by default enabled. To disable it:plugins=[..., "no:filters"], or uninstall this plugin.

Usage

from pipen import Proc

class MyProc(Proc): input = "infile:file" output = "outfile:file:{{in.infile | stem}}.txt" ...

Filters