mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2026-04-24 19:29:16 -05:00
5062bf1e3e
New SDKs and docs for the v1 release.
8 lines
234 B
Python
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"}),
|
|
)
|