I have a Perl script that can convert a binary file into a text file. Rather than rewriting the script in Python, I was wonder I could use this Perl script in my Python program, package it, and distribute it to computers that don't have Perl preinstalled into it.
1 Answer
Perl has ways to embed a perl interpreter into another program: mod_perl for Apache is such a thing. If you wanted to make a Python module that had an embedded perl in it, you could probably make that happen.
It's probably less work to rewrite the functionality in Python though.