vote up 0 vote down star

I have one script in Perl and the other in Python. I need to get the results of Perl in Python and then give the final report. The results from Perl can be scalar variable, hash variable, or an array.

Please let me know as soon as possible regarding this.

flag
Why not fix the perl script to be in Python? Sounds simpler. What's the problem that makes it hard to replace the perl? – S.Lott Apr 30 at 10:27

4 Answers

vote up 2 vote down

You could serialize the results to some sort of a string format, print this to standard output in the Perl script. Then, from python call the perl script and redirect the results of stdout to a variable in python.

link|flag
vote up 3 vote down

Take a look at PyYAML in Python and YAML in Perl.

link|flag
vote up 6 vote down

Use the subprocess module to run your Perl script to capture its output:

You can format the output however you choose in either script, and use Python to print the final report. For example: your Perl script can output XML which can be parsed by the Python script and then printed using a different format.

link|flag
vote up 2 vote down

Perhaps you want the answer to How can I read Perl data structures from Python?.

link|flag

Your Answer

Get an OpenID
or

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