qref
qref copied to clipboard
Allowing for a more concise definition of connections
Currently defining connections is pretty verbose:
connections = [{"source": "a.out", "target": "b.in"}]
This makes some bigger Routines unnecessarily big and hard to read, which is a problem especially in the tutorial context. I think allowing for sth like:
connections = ["a.out -> b.in"]
would be nicer.