Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have two scripts, a python script and a perl script.

How can I make the perl script run the python script and then runs itself?

share|improve this question
2  
Are you facing a case too complex for a simple system call? Plus, your last sentence seems to have an error in it. The Python script does not appear in it. – Niklas B. Dec 28 '11 at 17:37
I would strongly consider just porting one to the other language. – Karl Knechtel Dec 28 '11 at 19:26

3 Answers

up vote 7 down vote accepted

Something like this should work:

system("python", "/my/script.py") == 0 or die "Python script returned error $?";

If you need to capture the output of the Python script:

open(my $py, "|-", "python2 /my/script.py") or die "Cannot run Python script: $!";
while (<$py>) {
  # do something with the input
}
close($py);

This also works similarly if you want to provide input for the subprocess.

share|improve this answer
2  
Good answer, but you should start using the newer three argument open syntax: open (my $py, "|-", " python2 /my/script.py") or die .... Nothing wrong with what you wrote, but the newer syntax causes fewer problems. – David W. Dec 28 '11 at 18:11
@DavidW.: Thanks for the hint, I admit that I am not a Perl programmer and use it very rarely. I edited to reflect your suggested change. – Niklas B. Dec 28 '11 at 19:20
You should also use the multi-arg form of system to avoid the shell and related interpolation issues: system( 'python', '/my/script.py' ) == 0 ... will work. – friedo Dec 28 '11 at 20:55
@friedo: Thanks for suggesting this as someone might try something like system("python $script") and be left with a nasty code execution vulnerability. – Niklas B. Dec 28 '11 at 20:58

The best way is to execute the python script at the system level using IPC::Open3. This will keep things safer and more readable in your code than using system();

You can easily execute system commands, read and write to them with IPC::Open3 like so:

use strict;
use IPC::Open3 ();
use IO::Handle ();  #not required but good for portabilty

my $write_handle = IO::Handle->new();
my $read_handle = IO::Handle->new();
my $pid = IPC::Open3::open3($write_handle, $read_handle, '>&STDERR', $python_binary. ' ' . $python_file_path);
if(!$pid){ function_that_records_errors("Error"); }
#read multi-line data from process:
local $/;
my $read_data = readline($read_handle);
#write to python process
print $write_handle 'Something to write to python process';
waitpid($pid, 0);  #wait for child process to close before continuing

This will create a forked process to run the python code. This means that should the python code fail, you can recover and continue with your program.

share|improve this answer
the my $pid = ... line overshadows the preceding declarations of $(write|read)_handle – Eric Strom Dec 28 '11 at 19:45
Thanks Eric. Edited to fix the double declaration. – Dave Koston Dec 29 '11 at 22:39

It may be simpler to run both scripts from a shell script, and use pipes (assuming that you're in a Unix environment) if you need to pass the results from one program to the other

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.