Recommendations for perl-to-python interoperation?

前端 未结 7 2003
甜味超标
甜味超标 2021-01-25 19:53

We have a sizable code base in Perl. For the forseeable future, our codebase will remain in Perl. However, we\'re looking into adding a GUI-based dashboard utility. We are consi

7条回答
  •  醉酒成梦
    2021-01-25 20:13

    You can spawn a child process and use an IPC mechanism like sockets or STDIO, or even embed one interpreter in the other.

    But why switch languages when Perl offers several Tk (Tk, Tkx, and Tcl::Tk) bindings and a very capable Wx binding?

    I have written and distributed GUI projects with Perl's Tk and Wx libraries.

    If you are need the ability to create stand-alone executables, check out PAR::Packer, ActiveState's PerlApp, and Cava Pacakger.

提交回复
热议问题