Skip to content

arne-vl/flowrs

Repository files navigation

flowrs

Workflow automation with the power of Rust. Let your automations blossom!

Static Badge PyPI - Version

Defining and running a Workflow

from flowrs import Workflow

def example_task:
	# implement task
	return

workflow = Workflow("example_workflow")
workflow.add_task("example_task", task)

workflow.run()