hermida has asked for the wisdom of the Perl Monks concerning the following question:

Hi everyone, Does anyone know what is the boost.python equivalent in Perl?

From the web site, "The Boost Python Library is a framework for interfacing Python and C++. It allows you to quickly and seamlessly expose C++ classes functions and objects to Python, and vice-versa, using no special tools -- just your C++ compiler."

thanks, Leandro
  • Comment on boost.python C++ interoperability equivalent in Perl?

Replies are listed 'Best First'.
Re: boost.python C++ interoperability equivalent in Perl?
by Corion (Patriarch) on Feb 06, 2011 at 22:01 UTC

    I would assume Inline::CPP, at least for the direction of calling C++ from Perl. For calling Perl code from C++, you will have to embed a Perl interpreter (see perlembed), or talk to Perl over a socket connection.

      Hi thank you, I think I found maybe the more equivalent library than Inline::CPP... ExtUtils::XSpp?