Add a set of useful filters for pipen templates
Project description
pipen-filters
Add a set of useful filters for pipen templates.
These filters can be used for both liquid and jinja2 templating in pipen.
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
-
Parse the symbolic links
realpath
:os.path.realpath
readlink
:os.readlink
-
Find common prefix of given paths
-
commonprefix
:>>> commonprefix("/a/b/abc.txt", "/a/b/abc.png") >>> # "abc." >>> commonprefix("/a/b/abc.txt", "/a/b/abc.png", basename_only=False) >>> # "/a/b/abc."
-
-
Get parts of the path
dirname
:path.dirname
basename
:path.basename
ext
: get the extension (/a/b/c.txt -> .txt
)ext0
: get the extension without dot (/a/b/c.txt -> txt
)prefix
: get the prefix of a path (/a/b/c.d.txt -> /a/b/c.d
)prefix0
: get the prefix of a path without dot in basename (/a/b/c.d.txt -> /a/b/c
)filename
,fn
,stem
: get the stem of a path (/a/b.c.txt -> b.c
)filename0
,fn0
,stem0
: get the stem of a path without dot (/a/b.c.txt -> b
)joinpaths
: join path parts (os.path.join
)as_path
: convert a string into apathlib.Path
object
-
Path stat
isdir
:os.path.isdir
isfile
:os.path.isfile
islink
:os.path.islink
exists
:os.path.exists
getsize
:os.path.getsize
, return -1 if the path doesn't existgetmtime
:os.path.getmtime
, return -1 if the path doesn't existgetctime
:os.path.getctime
, return -1 if the path doesn't existgetatime
:os.path.getatime
, return -1 if the path doesn't existisempty
: check if a file is empty
-
Quote data
quote
: put double quotes around data (1 -> "1"
)squote
: put single quotes around data (1 -> '1'
)
-
Configurations
json
:json.dumps
json_dump
: Load json froma filejson_dumps
: Alias ofjson
json_loads
:json.loads
toml
:toml.dumps
toml_dump
: Load toml from a filetoml_dumps
: Alias oftoml
toml_loads
:toml.loads
config
: Load configuration from an object, a string or a file
-
Globs
glob
: Likeglob.glob
, but allows passing multiple parts of a pathglob0
: Likeglob
, but only returns the first matched path
-
Read file contents
read
: Read file content. You can also pass arguments toopen
readlines
: Read file content as a list of lines. Additional arguments will be passed toopen
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
pipen_filters-0.2.0.tar.gz
(4.8 kB
view details)
Built Distribution
File details
Details for the file pipen_filters-0.2.0.tar.gz
.
File metadata
- Download URL: pipen_filters-0.2.0.tar.gz
- Upload date:
- Size: 4.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.2 CPython/3.10.6 Linux/5.15.0-1031-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 316e902d443dccb06da2343075894aa8457fdbef1b09dbfdf1fa151beac46051 |
|
MD5 | d91cf86ae6907cee57e5d65bbc193f8b |
|
BLAKE2b-256 | ff8d482d7284f76f861b3826a54328c3ac059cc0b4b6df84e28d50e3624826f5 |
File details
Details for the file pipen_filters-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: pipen_filters-0.2.0-py3-none-any.whl
- Upload date:
- Size: 4.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.2 CPython/3.10.6 Linux/5.15.0-1031-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c0b9d51e1e5605a2b145fee162d8868c532a3560c4fe9be7dba3dbf051402385 |
|
MD5 | 52c3af379d80c1f6fc737ad64a13c116 |
|
BLAKE2b-256 | c0025f725c7e49cf89a02c18db200f1698e43cb5b17741cec1cd5fc901ddd617 |