An extendable general purpose task manager or workflow engine.
Project description
o o O o-o o o o o o o
|\ /| / \ o |\ | | | |\ /|
| O | o---o| -o | \ | | | | O |
| | | |o | | \| | | | |
o o o o o-o o o o-o o o
o-o o--o o o o-o
o o | | | | |
| | O--o | | o-o
o o | | | |
o-o o o-o o--o
About
A python based task processing engine backend.
Usage
The intent of this project is to use it as a library to process tasks that conform to a certain style.
A typical stack will include the following components:
graph TD
A[Client Application] -- parses configuration using --> B[Parsing Library]
A -- execute parsed configuration using --> C[magnum-opus]
The client application has to provide the following implementations:
| Base Class | Usage |
|---|---|
LoggerWrapper |
( optional ) Used for logging. If not implemented, log messages from magnum-opus will be printed to STDOUT |
StatePersistance |
( optional ) Used to persist state during the various stages of task execution. Can also be used by TaskProcessor implementation to retrieve previous execution state of any individual task. If not implemented by the client, no persistance functionality will be provided/available. |
TaskProcessor |
( required ) This is the class that implements the logic of processing a given task. No out-of-the-bos task processors exist, so the client must supply it's own. |
The client then creates an instance of Tasks and adds all TaskProcessor implementations before adding Task objects. Finally, the processing is performed by calling the process_context() method of the Tasks instance.
The opus-instrumenta project provides some "standard" TaskProcessor implementations for common types of tasks.
Hello World Example
Here is a really quick "hello world" example that will implement a TaskProcessor that creates a file with the text "Hello World!" in it:
python3 examples/hello_world.py
The example can also be observed as a unit test by running the test file tests/test_hello_world.py
Development Quick Start
Preparing your local system for development:
python3 -m venv venv
. venv/bin/activate
pip3 install coverage build twine
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file magnum_opus-2.tar.gz.
File metadata
- Download URL: magnum_opus-2.tar.gz
- Upload date:
- Size: 47.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.9.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d39fad9705910d57887405faaac98c21e1bf7e4f854fc5fa7de3eb210c435e3d
|
|
| MD5 |
92722c31f435ed095c2ceb519e0a2df6
|
|
| BLAKE2b-256 |
e3e3df3d742fa63457ec45dac38de3f42cd4774fb37d161a4a203077caaf694e
|
File details
Details for the file magnum_opus-2-py3-none-any.whl.
File metadata
- Download URL: magnum_opus-2-py3-none-any.whl
- Upload date:
- Size: 34.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.9.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
27b2f73d521b0ba9cf6b618cf0e67ee903774811a928e83072ea5d816eb69311
|
|
| MD5 |
b1fa181189dc1399ee41c46834986dcb
|
|
| BLAKE2b-256 |
c2c183e54613da8b0e9bbb32954c37942ff136b51ee800e37f9f013931393b8a
|