Is it possible to invoke pawk from a python script, without using subprocess.run? I am imagining something like: ```python import pawk my_pawk_program = ' .... ' results = pawk.run(my_pawk_program) ```