Files
hatchet/sdks/python/examples/bulk_fanout/trigger.py
Matt Kaye 5062bf1e3e V1 SDKs and Docs (#1361)
New SDKs and docs for the v1 release.
2025-03-25 15:45:07 -07:00

8 lines
234 B
Python

from examples.bulk_fanout.worker import ParentInput, bulk_parent_wf
from hatchet_sdk import TriggerWorkflowOptions
bulk_parent_wf.run(
ParentInput(n=999),
TriggerWorkflowOptions(additional_metadata={"no-dedupe": "world"}),
)