ExamplesLink Talon and PythonOn this pageLink Talon and Python Talon insert the date: result = user.my_custom_date_function() insert(result) Python from talon import Moduleimport timemod = Module()@mod.action_classclass Actions: def my_custom_date_function(): """My custom date function""" return time.strftime("%Y-%m-%d")