From 31ebfbcde77f30a34a5495f349c19424d8dc1984 Mon Sep 17 00:00:00 2001 From: Lars Bilke Date: Fri, 22 Mar 2024 12:09:51 +0100 Subject: [PATCH] Docs: Add hint on retrieving outputs from daemon submitted jobs --- docs/source/howto.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/source/howto.rst b/docs/source/howto.rst index e1d20b6..d70f3af 100644 --- a/docs/source/howto.rst +++ b/docs/source/howto.rst @@ -551,6 +551,8 @@ Or you can do it programmatically: for node in nodes: if node.is_finished_ok: print(f'{node} finished successfully') + # The outputs of each node can be accessed through `node.outputs`: + print(node.outputs.stdout.get_content()) else: print(f'{node} failed')