python-temporal
Installation
SKILL.md
Temporal Workflow Orchestration
Temporal SDK patterns for building durable, distributed workflows in Python.
Worker Setup
from temporalio.client import Client
from temporalio.worker import Worker
async def main():
client = await Client.connect("localhost:7233")
worker = Worker(
client,
task_queue="my-task-queue",
workflows=[MyWorkflow],
activities=[my_activity],
)