I am using a third-party program designed to be run as a command line program, which outputs files that I later need to use in my code. I am working in Jupyter Lab and want to integrate the function calls into my code. The typical way to run this is:
python create_files.py -a input_a -b input_b -c -d
I then want to call this within my Jupyter notebook. I have been able to get it to work by using !
, i.e.:
! python create_files.py -a input_a -b input_b -c -d
The problem with this is that when I want to specify input_a
or input_b
using variables, this doesn't work because it seems that !
expects a literal string, so to speak.
Is there a more clean way of doing this without having to alter the source code of this program (I have tried looking into that, and the code is written such that there is no simple way to call its main function.)