Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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

orchestration pip python rust

Last synced: about 1 month ago
JSON representation

Let your automations blossom!

Awesome Lists containing this project

README

        

# 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
```python
from flowrs import Workflow

def example_task:
# implement task
return

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

workflow.run()
```