caktus / etlman

BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

[119] Add `subprocess` backend supporting Python and R #122

Closed tobiasmcnulty closed 2 years ago

tobiasmcnulty commented 2 years ago

This adds a simple SubprocessBackend that can be used for executing scripts written in Python and R.

Sample usage for issue #90:

step = Step.objects.get(...)
exitcode, stdout, stderr = step.run_script()
# now, pass exitcode, stdout, stderr to the template for display

Fixes #119