Shortcuts
shortcuts.checklist
Many usefull modules are grouped in the paxpar.shortcuts.checklist
module.
They are automaticaly imported and available in assert, show
and fields format expressions.
shortcuts.checkmodules
Many usefull modules are grouped in the paxpar.shortcuts.checkmodule
module.
It's always a good idea to import it first in your modules :
# start all your forge notebook with this
from paxpar.shortcuts.checkmodule import *
catch_value()
Easier field access and AttributeError silencer With a lambda you can turn AttributeError to None in any deep structure access
x = catch_value(lambda: doc.a.b.c.d)
attachment_schema = catch_value(lambda: attachment.schema.content)
date()
Take any string representing a date and turn it into a readable string date. If the input string is not a date, a default string is returned.
Here is an example of a formatted node name where the date titulaire.habi_csq_date_edition
from the document metadata is turned into a readable date:
name: "La date d'édition du certificat CSQ est le
{{date(root.metadata.titulaire.habi_csq_date_edition)}}"
Will outputs:
La date d'édition du certificat CSQ est le 16 octobre 2024
or
La date d'édition du certificat CSQ est le N/A