API for graphs and tasks in Ewoks
Project description
EwoksCore: API for graphs and tasks in Ewoks
Install
python -m pip install ewokscore[test]
Test
pytest --pyargs ewokscore.tests
Getting started
from ewokscore import Task
from ewokscore import load_graph
# Implement a workflow task
class SumTask(
Task, input_names=["a"], optional_input_names=["b"], output_names=["result"]
):
def run(self):
result = self.inputs.a
if self.inputs.b:
result += self.inputs.b
self.outputs.result = result
# Define a workflow
nodes = [
{"id": "task1", "class": "__main__.SumTask", "inputs": {"a": 1}},
{"id": "task2", "class": "__main__.SumTask", "inputs": {"b": 1}},
{"id": "task3", "class": "__main__.SumTask", "inputs": {"b": 1}},
]
links = [
{"source": "task1", "target": "task2", "arguments": {"a": "result"}},
{"source": "task2", "target": "task3", "arguments": {"a": "result"}},
]
workflow = {"nodes": nodes, "links": links}
# Execute a workflow (use a proper Ewoks task scheduler in production)
graph = load_graph(workflow)
varinfo = {"root_uri": "/tmp/myresults"} # optional
tasks = graph.execute(varinfo=varinfo)
print(tasks["task3"].output_values)
Documentation
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
ewokscore-0.0.1a3.tar.gz
(32.8 kB
view details)
File details
Details for the file ewokscore-0.0.1a3.tar.gz
.
File metadata
- Download URL: ewokscore-0.0.1a3.tar.gz
- Upload date:
- Size: 32.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.6.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8cc282ae3b7eb18a1bac5dd15b3977e9dc086302469cd7060af6111d73a32149 |
|
MD5 | 033aef4982bfb6262a567802d755be93 |
|
BLAKE2b-256 | e0db8eb144c6e726ef77a635ce7733c394d3c6f7cb0615fc84c30da13c7f65e5 |