An open API service indexing awesome lists of open source software.

https://github.com/arne-vl/flowrs

Let your automations blossom!
https://github.com/arne-vl/flowrs

orchestration pip python rust

Last synced: 3 months ago
JSON representation

Let your automations blossom!

Awesome Lists containing this project

README

        

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


Static Badge


PyPI - Version

## Defining and running a Workflow
```python
from flowrs import Workflow

def example_task:
# implement task
return

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

workflow.run()
```