in reply to how to run a python web application from within a perl script

run this program from within my perl script
$output = qx(python path/to/script.py);

Replies are listed 'Best First'.
Re^2: how to run a python web application from within a perl script
by 7stud (Deacon) on Nov 19, 2009 at 20:03 UTC

    You sort of forgot about the data, didn't you? The op said they were trying to send some data to a python program.

    op, how do those programs read data? From a file?

      op, how do those programs read data? From a file?

      That sounds like a great idea