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!
- Host: GitHub
- URL: https://github.com/arne-vl/flowrs
- Owner: arne-vl
- License: mit
- Created: 2024-12-20T17:03:44.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-02-18T19:31:18.000Z (3 months ago)
- Last Synced: 2025-02-18T20:32:56.231Z (3 months ago)
- Topics: orchestration, pip, python, rust
- Language: Shell
- Homepage:
- Size: 417 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# flowrs
Workflow automation with the power of Rust. Let your automations blossom!## Defining and running a Workflow
```python
from flowrs import Workflowdef example_task:
# implement task
returnworkflow = Workflow("example_workflow")
workflow.add_task("example_task", task)workflow.run()
```