Hello again Witty, 👋
You most certainly can! Simply use the .creator attribute. So in your case node.inputs.parent_folder.creator should get you what you need.
Here’s a more complete example, assuming you’ve loaded the code, structure and required imports:
# First run builder = PwBaseWorkChain.get_builder_from_protocol(code=code, structure=structure) results, node = run_get_node(builder) # Restart restart_builder = PwBaseWorkChain.get_builder_from_protocol(code=code, structure=structure) parameters = restart_builder.pw.parameters.get_dict() parameters['ELECTRONS']['startingpot'] = 'file' restart_builder.pw.parameters = orm.Dict(parameters) restart_builder.pw.parent_folder = node.outputs.remote_folder restart_results, restart_node = run_get_node(restart_builder) restart_node.inputs.pw.parent_folder.creatorHope that helps! 🚀
Best,
Marnik