I have a java program that i run with the following command
java -jar <program_name>.jar --<some_parameter> <some_filename>.csv
Within my python script I create the <some_filename>.csv. Then, I would like to execute the java program and use the program's stdout output in my python script.
Is there an easy way to do so?