Integrations
Python UDFs
Tracecat makes it easy to turn your Python scripts into no-code workflow actions, which we call user-defined functions (UDFs). All you need is a:
- Single Python decorator
from typing import Annotated
from typing_extensions import Doc
Secrets used in UDFs must be defined as RegistrySecret
objects in the secrets
argument of the @registry.register
decorator.
They are retrieved from Tracecat’s secrets manager at runtime and garbage collected after the action is executed.
For example:
Was this page helpful?