Skip to content

v0.3.1

Choose a tag to compare

@chriscardillo chriscardillo released this 25 Feb 21:05
· 52 commits to main since this release

Functions are as filters. For example:

from absql import Runner as r

def case_it(x):
    return x.upper()

r.render_text("hello {{person | case_it}}", person="you", case_it=case_it)
# 'hello YOU'