Skip to content

arne-vl/flowrs

Repository files navigation

flowrs

Flowrs is a high-performance Python package built in Rust, designed to simplify task orchestration and workflow automation. It combines Rust’s speed and reliability with Python’s accessibility, making it a powerful yet user-friendly solution for managing complex processes.

Usage

Defining a Workflow

from flowrs import Workflow

def example_task:
	# implement task
	return

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

workflow.run()