How can I use Perl libraries from Python? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T14:27:24Z http://stackoverflow.com/feeds/question/750872 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/750872/how-can-i-use-perl-libraries-from-python 2 How can I use Perl libraries from Python? holydiver 2009-04-15T09:09:59Z 2009-04-16T16:42:00Z <p>Dear All,</p> <p>I have written a bunch of Perl libraries (actually Perl classes) and I want to use some of them in my Python application. Is there a natural way to do this without using SWIG or writing Perl API for Python. I am asking for a similar way of PHP's Perl <a href="http://devzone.zend.com/node/view/id/1712" rel="nofollow">interface</a>. If there is no such kind of work for Perl in Python. What is the easiest way to use Perl classes in python?</p> http://stackoverflow.com/questions/750872/how-can-i-use-perl-libraries-from-python/750885#750885 1 Answer by splicer for How can I use Perl libraries from Python? splicer 2009-04-15T09:12:20Z 2009-04-15T09:12:20Z <p>Check out <a href="http://wiki.python.org/moin/PyPerl" rel="nofollow">PyPerl</a>.</p> <p>WARNING: PyPerl is currently unmaintained, so don't use it if you require stability.</p> http://stackoverflow.com/questions/750872/how-can-i-use-perl-libraries-from-python/750928#750928 1 Answer by gimel for How can I use Perl libraries from Python? gimel 2009-04-15T09:31:32Z 2009-04-16T16:42:00Z <p>You've just missed a chance for having <code>Python</code> running on the <a href="http://www.parrot.org/" rel="nofollow">Parrot VM</a> together with Perl. On April 1st, 2009 <a href="http://www.python.org/dev/peps/pep-0401/" rel="nofollow">PEP 401</a> was published, and one of the <em>Official Acts of the FLUFL</em> read:</p> <blockquote> <ul> <li>Recognized that C is a 20th century language with almost universal rejection by programmers under the age of 30, the CPython implementation will terminate with the release of Python 2.6.2 and 3.0.2. Thereafter, <strong>the reference implementation of Python will target the Parrot virtual machine</strong>. Alternative implementations of Python (e.g. Jython, IronPython, and PyPy ) are officially discouraged but tolerated.</li> </ul> </blockquote> http://stackoverflow.com/questions/750872/how-can-i-use-perl-libraries-from-python/751012#751012 1 Answer by S.Lott for How can I use Perl libraries from Python? S.Lott 2009-04-15T10:07:05Z 2009-04-16T16:41:36Z <p><strong>"What is the easiest way to use Perl classes in python?"</strong></p> <p>Easiest. Rewrite the Perl into Python and be done with it. Seriously. Just pick one language&mdash;that's easiest. Leaving Perl behind is no great loss. Rewriting classes into Python may give you an opportunity to improve them in small ways. </p> <p>Not so easy. Run the Perl application using Python's <a href="http://docs.python.org/library/subprocess.html" rel="nofollow">subprocess</a> module. That uses the Perl classes in the Perl application without problems. You can easily create pipelines so the Perl gets input from Python and produces output to Python</p> <pre><code>someApp.py | something.pl | finalStep.py </code></pre> <p>This has the advantage of breaking your application into three concurrent processes, using up lots of processor resources and running (sometimes) in 1/3 the time.</p> <p>Everything else is much less easy.</p> http://stackoverflow.com/questions/750872/how-can-i-use-perl-libraries-from-python/752483#752483 5 Answer by Shane C. Mason for How can I use Perl libraries from Python? Shane C. Mason 2009-04-15T16:14:35Z 2009-04-15T16:14:35Z <p>Personally, I would expose the Perl libs as services via XML/RPC or some other such mechanism. That way you can call them from your Python application in a very natural manner.</p> http://stackoverflow.com/questions/750872/how-can-i-use-perl-libraries-from-python/752617#752617 4 Answer by daotoad for How can I use Perl libraries from Python? daotoad 2009-04-15T16:42:56Z 2009-04-16T16:40:37Z <p>I haven't tried it, but <a href="http://search.cpan.org/dist/Inline-Python/Python.pod" rel="nofollow">Inline::Python</a> lets you call Python from Perl. </p> <p>You should be able to use a thin bit of perl to load your python app and then use the <code>perl</code> python package that comes with I::P to access your Perl objects.</p>