- This would make it easy to get back the stdout/stderr along with any files generated without having to write a lot of code.
- The returned information should essentially be a combination of what Log and FilePattern provide.
For example:
launcher = Launcher(...)
output = launcher()
results = [float(stdout.read()) for stdout in output.stdout]
Ideally the output should contain enough information that it should be very easy to generate HoloMaps or pandas dataframes from this output without having to write a lot of code.
For example:
Ideally the output should contain enough information that it should be very easy to generate
HoloMapsor pandas dataframes from this output without having to write a lot of code.