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.
from flowrs import Workflow
def example_task:
# implement task
return
workflow = Workflow("example_workflow")
workflow.add_task("example_task", task)
workflow.run()