Ecosyste.ms: Awesome
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: about 1 month 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 (about 2 months ago)
- Default Branch: main
- Last Pushed: 2025-01-09T16:41:48.000Z (about 1 month ago)
- Last Synced: 2025-01-09T17:43:42.072Z (about 1 month ago)
- Topics: orchestration, pip, python, rust
- Language: Rust
- Homepage:
- Size: 352 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 Workflowdef example_task:
# implement task
returnworkflow = Workflow("example_workflow")
workflow.add_task("example_task", task)workflow.run()
```